From 6ad160685b07f1070396729c9f9e8a5a514d851d Mon Sep 17 00:00:00 2001 From: KANAYAMA Akihiro Date: Thu, 16 Mar 2023 19:55:41 +0900 Subject: [PATCH 001/211] Fixed encoding multibyte characters --- pandora_console/include/class/AgentWizard.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 2580d17371..d9280974f1 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -2333,7 +2333,7 @@ class AgentWizard extends HTML } $tmp->id_plugin($infoMacros['server_plugin']); - $tmp->macros(json_encode($fieldsPlugin)); + $tmp->macros(io_json_mb_encode($fieldsPlugin)); } } } @@ -2507,7 +2507,7 @@ class AgentWizard extends HTML } $tmp->id_plugin($infoMacros['server_plugin']); - $tmp->macros(json_encode($fieldsPlugin)); + $tmp->macros(io_json_mb_encode($fieldsPlugin)); } $tmp->ip_target(io_safe_input($this->targetIp)); From 0c1ec8095ee391bec6d1c14eb5859767a652293a Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 3 Apr 2023 16:59:10 +0200 Subject: [PATCH 002/211] new alert macro --- pandora_server/lib/PandoraFMS/Core.pm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 4726df4710..3fc5f8c733 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1521,8 +1521,9 @@ sub pandora_execute_action ($$$$$$$$$;$$) { # Check for _module_graph_Xh_ macros # Check for _module_graph_Xh_ macros and _module_graphth_Xh_ my $module_graph_list = {}; - my $macro_regexp = "_modulegraph_(\\d+)h_"; + my $macro_regexp = "_modulegraph_(?!([\\w\\s-]+_\\d+h_))(\\d+)h_"; my $macro_regexp2 = "_modulegraphth_(\\d+)h_"; + my $macro_regexp3 = "_modulegraph_([\\w\\s-]+)_(\\d+)h_"; # API connection my $ua = new LWP::UserAgent; @@ -1548,6 +1549,7 @@ sub pandora_execute_action ($$$$$$$$$;$$) { my $subst_func = sub { my $hours = shift; my $threshold = shift; + my $module = shift if @_; my $period = $hours * 3600; # Hours to seconds if($threshold == 0){ $params->{"other"} = $period . '%7C1%7C0%7C225%7C%7C14'; @@ -1558,8 +1560,10 @@ sub pandora_execute_action ($$$$$$$$$;$$) { $cid = 'module_graphth_' . $hours . 'h'; } - $params->{"other_mode"} = 'url_encode_separator_%7C'; - + if (defined($module)) { + $params->{"id"} = get_agent_module_id($dbh, $module, $agent->{'id_agente'}); + } + if (! exists($module_graph_list->{$cid}) && defined $url) { # Get the module graph image in base 64 my $response = $ua->post($url, $params); @@ -1578,10 +1582,11 @@ sub pandora_execute_action ($$$$$$$$$;$$) { eval { no warnings; local $SIG{__DIE__}; - $field3 =~ s/$macro_regexp/$subst_func->($1, 0)/ige; + $field3 =~ s/$macro_regexp/$subst_func->($2, 0)/ige; $field3 =~ s/$macro_regexp2/$subst_func->($1, 1)/ige; + $field3 =~ s/$macro_regexp3/$subst_func->($2, 0, $1)/ige; }; - + # Default content type my $content_type = $field4 . '; charset="iso-8859-1"'; From 07f3a3fbeffeb16eb55a5c701a357a2181bd3abc Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 3 Apr 2023 17:03:34 +0200 Subject: [PATCH 003/211] new alert macro --- pandora_server/lib/PandoraFMS/Core.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 3fc5f8c733..8a82e755aa 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1564,6 +1564,8 @@ sub pandora_execute_action ($$$$$$$$$;$$) { $params->{"id"} = get_agent_module_id($dbh, $module, $agent->{'id_agente'}); } + $params->{"other_mode"} = 'url_encode_separator_%7C'; + if (! exists($module_graph_list->{$cid}) && defined $url) { # Get the module graph image in base 64 my $response = $ua->post($url, $params); From e0437d3fbd11149dde298020066e1fcbc85c9e4c Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 17 Apr 2023 09:23:55 +0200 Subject: [PATCH 004/211] Fix duplicate code --- .../godmode/agentes/configurar_agente.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index dc27e4b207..32597ef4c4 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1970,10 +1970,10 @@ if ($create_module) { // MODULE ENABLE/DISABLE // =====================. -if ($enable_module) { +/* + if ($enable_module) { $result = modules_change_disabled($enable_module, 0); $module_name = modules_get_agentmodule_name($enable_module); - // Write for conf disable if remote_config. $configuration_data = enterprise_hook( 'config_agents_get_module_from_conf', @@ -1987,10 +1987,8 @@ if ($enable_module) { // Force Update when disabled for save disabled in conf. $old_configuration_data = $configuration_data; - // Successfull action. $success_action = $result; - $success_action = $result; if ($result === NOERR) { db_pandora_audit( @@ -2003,9 +2001,11 @@ if ($enable_module) { 'Fail to enable #'.$enable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } -} + } -if ($disable_module) { + if ($disable_module) { + + hd($disable_module, true); $result = modules_change_disabled($disable_module, 1); $module_name = modules_get_agentmodule_name($disable_module); @@ -2029,18 +2029,20 @@ if ($disable_module) { if ($result === NOERR) { + hd($disable_module, true); db_pandora_audit( AUDIT_LOG_MODULE_MANAGEMENT, 'Disable #'.$disable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } else { + hd($disable_module, true); db_pandora_audit( AUDIT_LOG_MODULE_MANAGEMENT, 'Fail to disable #'.$disable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } -} - + } +*/ // Fix to stop the module from being added to the agent's conf // when an error occurred while updating or inserting. or enable disable module. if ($update_module || $create_module From 9da8e8363337e98cdff93b379a87bc4c4d9323d6 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 09:52:59 +0200 Subject: [PATCH 005/211] Modified the timestamp according to input data. Added query with the timestamp of the filter. --- .../include/functions_inventory.php | 20 +++++++++++++++---- .../operation/agentes/agent_inventory.php | 9 ++++++++- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 5b3efedc93..9bda1f17a1 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -741,15 +741,23 @@ function inventory_get_datatable( array_push($where, "tagent_module_inventory.data LIKE '%".$inventory_search_string."%'"); } + if ($utimestamp > 0) { + array_push($where, 'tagente_datos_inventory.utimestamp <= '.$utimestamp.' '); + } + $sql = sprintf( 'SELECT tmodule_inventory.*, tagent_module_inventory.*, - tagente.alias as name_agent + tagente.alias as name_agent, + tagente_datos_inventory.utimestamp as last_update, + tagente_datos_inventory.timestamp as last_update_timestamp FROM tmodule_inventory INNER JOIN tagent_module_inventory ON tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory LEFT JOIN tagente ON tagente.id_agente = tagent_module_inventory.id_agente + LEFT JOIN tagente_datos_inventory + ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory WHERE %s ORDER BY tmodule_inventory.id_module_inventory LIMIT %d, %d', @@ -763,6 +771,10 @@ function inventory_get_datatable( if ($order_by_agent === false) { $modules = []; foreach ($rows as $row) { + if ($row['utimestamp'] !== $row['last_update']) { + $row['timestamp'] = $row['last_update_timestamp']; + } + $data_rows = explode(PHP_EOL, $row['data']); foreach ($data_rows as $data_key => $data_value) { if (empty($data_value) === false) { @@ -894,16 +906,16 @@ function inventory_get_dates($module_inventory_name, $inventory_agent, $inventor AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory AND tagente.id_agente = tagent_module_inventory.id_agente'; - if ($inventory_agent != 0) { + if ($inventory_agent !== 'All') { $sql .= ' AND tagent_module_inventory.id_agente IN ('."'".implode(',', (array) $inventory_agent)."'".')'; } - if ($inventory_id_group != 0) { + if ($inventory_id_group !== 0) { $sql .= " AND tagente.id_grupo = $inventory_id_group"; } if (is_string($module_inventory_name) === true - && $module_inventory_name != 'all' + && $module_inventory_name !== '0' ) { $sql .= " AND tmodule_inventory.name IN ('".str_replace(',', "','", $module_inventory_name)."')"; } diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 1d692bfd41..9ae081186b 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -232,7 +232,14 @@ foreach ($rows as $row) { $table->cellspacing = 4; $table->class = 'info_table'; $table->head = []; - $table->head[0] = $row['name'].' - ('.date($config['date_format'], $row['utimestamp']).')'; + + if ($row['utimestamp'] === '0' && $utimestamp === 0) { + $table->head[0] = $row['name']; + } else if ($utimestamp === 0) { + $table->head[0] = $row['name'].' - (Last update '.date($config['date_format'], $row['utimestamp']).')'; + } else { + $table->head[0] = $row['name'].' - ('.date($config['date_format'], $utimestamp).')'; + } if ((bool) $row['block_mode'] === true) { $table->head[0] .= '   '.html_print_image( From 2387cbd3524617e11950d8d1e0a7924b84952f72 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 12:14:25 +0200 Subject: [PATCH 006/211] Check variable value to show error message --- pandora_console/godmode/tag/edit_tag.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/tag/edit_tag.php b/pandora_console/godmode/tag/edit_tag.php index 6c22094708..603a97f8cd 100644 --- a/pandora_console/godmode/tag/edit_tag.php +++ b/pandora_console/godmode/tag/edit_tag.php @@ -127,7 +127,7 @@ if ($create_tag) { // Erase comma characters on tag name $name_tag = str_replace(',', '', $name_tag); - + hd($name_tag, true); $data = []; $data['name'] = $name_tag; $data['description'] = $description_tag; @@ -155,11 +155,14 @@ if ($create_tag) { AUDIT_LOG_TAG_MANAGEMENT, $auditMessage ); - ui_print_result_message( - $action === 'update', - __('Successfully created tag'), - __('Error creating tag') - ); + + if ($name_tag !== '') { + ui_print_result_message( + $action === 'update', + __('Successfully created tag'), + __('Error creating tag') + ); + } } // Form fields are filled here From 4a250fc7c069e18f1f6b82b538693bf989f5fa67 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 12:51:12 +0200 Subject: [PATCH 007/211] Trimmed tag name --- pandora_console/godmode/tag/edit_tag.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/tag/edit_tag.php b/pandora_console/godmode/tag/edit_tag.php index 603a97f8cd..557c5cb129 100644 --- a/pandora_console/godmode/tag/edit_tag.php +++ b/pandora_console/godmode/tag/edit_tag.php @@ -121,13 +121,14 @@ if ($update_tag && $id_tag != 0) { ); } -// Create tag: creates a new tag +// Create tag: creates a new tag. if ($create_tag) { $return_create = true; - // Erase comma characters on tag name + // Erase comma characters and spaces on tag name. $name_tag = str_replace(',', '', $name_tag); - hd($name_tag, true); + $name_tag = str_replace(' ', '', $name_tag); + $data = []; $data['name'] = $name_tag; $data['description'] = $description_tag; From 77b12120767b0a188d039b2dea609c5af008081f Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 19 Apr 2023 10:53:52 +0200 Subject: [PATCH 008/211] add new icon svg --- .../godmode/reporting/graph_builder.php | 2 +- pandora_console/images/builder.png | Bin 423 -> 518 bytes pandora_console/images/builder@2x.png | Bin 0 -> 963 bytes pandora_console/images/builder@svg.svg | 9 +++++++++ 4 files changed, 10 insertions(+), 1 deletion(-) mode change 100755 => 100644 pandora_console/images/builder.png create mode 100644 pandora_console/images/builder@2x.png create mode 100644 pandora_console/images/builder@svg.svg diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php index 6c006a8059..524c796bd2 100644 --- a/pandora_console/godmode/reporting/graph_builder.php +++ b/pandora_console/godmode/reporting/graph_builder.php @@ -309,7 +309,7 @@ if ($edit_graph === true) { 'graph_editor' => [ 'active' => false, 'text' => ''.html_print_image( - 'images/builder.png', + 'images/builder@svg.svg', true, [ 'title' => __('Graph editor'), diff --git a/pandora_console/images/builder.png b/pandora_console/images/builder.png old mode 100755 new mode 100644 index 964ab6af6698f6876ad4943ce8777993664b9512..18729a155bd1ad827551857b5576121a66e78600 GIT binary patch literal 518 zcmeAS@N?(olHy`uVBq!ia0vp^A|TAc#=yY%t50_}ki(Mh=?zc(M!jHiYq-`978Mw?}lvj zI^rNw@_3?NoU-P+AnuP+e_L2wHhi+y+4{}Z z`u%R44hy&Vq}u$ndv9*vy|YrZN9VMO+R+>G30X>7=RX(5UjJ=(H=ssR_VFg2{c~fQ z)XsaYbYA;)ir10jwma56Hay@MD3Uzsbo*<`)|9iK)@i9IT{C8}s&x9(;r5N^+1tYn zY0IiJS`+M-otW!f*+mSLQ8rb!qtDBf0Bt#zRS~+d@M6TV<GoToQEWv~>fb7->1T6vxAZBcW zK;s+~6chv=K79BBtFMvlJOIQFP$5Sk-jCs7puz+g4bp_}SZvnshuMHlF%uf!0H0w1 z0Yn)Bg#^~P!4?%rKoA%TADFO6I6~<{AZ`TW0=(%CW<88%K@TDz2t?KdwDtgsLTK!K zz!gl$3PCy#;&KiXo=|ciRv~!+Ai!vX7zyQfX!cnM#Pvwh3xN0`D7S+G3>3?x8cGaE z1RA^mTNE*%MK->)=m<*;&54moQvG48WI2A3$T6ftrRI5SxAQWl&@Q%Jv3G;dTM3a3NUq0|3U{tJ002ovPDHLkV1nWPl&1gy diff --git a/pandora_console/images/builder@2x.png b/pandora_console/images/builder@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..90603a77fdcfc77efa64b7c5507dd0b15ddf8d2d GIT binary patch literal 963 zcmV;!13dhRP)TIZO}W)IUq4V3Dq zqQ{%LF#b$0I<%=U`F{x1EhQJg`W1`CTfJWIwwY@ZPdmMX5=iH8CPhB@AeXL~{ zNW84J-ZO$R!rqc#K|dGt5UFc8Boz#5`2fpbjznJ&?5I%3NSR?wNr7-ic8-^%G16g@ zu}ya{9A39A%_Y;jjAmvh2dPwQv0ksQ;izJdzQ9Rz#$_zz+t~dOCuHxzBoHisJ#sBVH4U#V2Oik|qa8`~8L4gVRs@RULAR?+mA zTv*C&OE&TP$TE&H6BqJ64y}eR;nbn4GXC;u4U=nyBkN`|!tz3|o-Kyq8cv`^%F5+( zy4`NqaR{F^Fn^83Eq)%i_+vV>ZL;mWm@kz|Cuq=WwO&s$ImW<|vCf&p_lYvs>2%(q zx&y1pUv*xZn0(Bk2z*6(iXN$hH7>}!Gu{xy@yl$&$*Iw+4)v*9e42sIzbfKR34%8g)%0FCQwB=5#QLmUz z!$=X^;!y_st)C`1ZpEh+oK|q$3XE(2U-aMySC#OH`{>g7%EzuCo)lR;XZbn6{}Db# l&*lxxOZZpgm~SF3+%Fjo@%GUH%+~+_002ovPDHLkV1g-ItD*n^ literal 0 HcmV?d00001 diff --git a/pandora_console/images/builder@svg.svg b/pandora_console/images/builder@svg.svg new file mode 100644 index 0000000000..f0231491c8 --- /dev/null +++ b/pandora_console/images/builder@svg.svg @@ -0,0 +1,9 @@ + + + + Dark/20/builder@svg + Created with Sketch. + + + + \ No newline at end of file From b7a7b4b5977e472e167016ac80c0653fe17116a8 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 20 Apr 2023 09:09:34 +0200 Subject: [PATCH 009/211] Fix js code line that forced the selected version to 1 --- pandora_console/include/class/CredentialStore.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 904ddbc6e4..36f66c6b40 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -1366,7 +1366,7 @@ class CredentialStore extends Wizard $('#li_snmp_2').show(); if ($('#li_snmp_1').length > 0) { - $('#version').val('1'); + //$('#version').val('1'); $('#version').trigger('change'); } else { const ul = $('#modal_form').children('ul')[0]; From 9acfa36d438cb1bfcf865b010b1253ec6c22781b Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 20 Apr 2023 10:22:37 +0200 Subject: [PATCH 010/211] #10698 Adjusted style of comment field, event list view --- pandora_console/include/styles/events.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css index e4dfbe428d..b0790f76b5 100644 --- a/pandora_console/include/styles/events.css +++ b/pandora_console/include/styles/events.css @@ -88,6 +88,10 @@ table#table_events > tbody > tr > td { padding: 0px !important; } +table#table_events > tbody > tr > td > i { + font-size: 7.5pt; +} + td > input[id^="checkbox-multi"] { margin: 0px !important; } From 8e9bc5d0bb32f211ca5d8192eadb4bdb55fded03 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 20 Apr 2023 11:13:47 +0200 Subject: [PATCH 011/211] Fix style class invert_filter --- pandora_console/include/functions_events.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 9f4ba19bb1..0fe3e3551c 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -2665,7 +2665,7 @@ function events_print_type_img( $urlImage = ui_get_full_url(false); $icon = ''; - $style = 'invert_filter main_menu_icon'; + $style = 'main_menu_icon'; switch ($type) { case 'alert_recovered': @@ -2702,23 +2702,28 @@ function events_print_type_img( break; case 'system': + $style .= ' invert_filter'; $icon = 'images/configuration@svg.svg'; break; case 'recon_host_detected': + $style .= ' invert_filter'; $icon = 'images/recon.png'; break; case 'new_agent': + $style .= ' invert_filter'; $icon = 'images/agents@svg.svg'; break; case 'configuration_change': + $style .= ' invert_filter'; $icon = 'images/configuration@svg.svg'; break; case 'unknown': default: + $style .= ' invert_filter'; $icon = 'images/event.svg'; break; } From e05a19dc7f36e0daa9355773203f31ae25fce226 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 20 Apr 2023 12:24:52 +0200 Subject: [PATCH 012/211] #10991 fixed acl in auth view --- pandora_console/godmode/setup/setup_auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index c0548b32e8..3822a01b2e 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -24,7 +24,7 @@ global $config; check_login(); -if ((bool) check_acl($config['id_user'], 0, 'PM') === true && is_user_admin($config['id_user']) === false) { +if ((bool) check_acl($config['id_user'], 0, 'PM') === false && is_user_admin($config['id_user']) === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access Setup Management' From 6ef34d78c4b3d748a11ff6ed20d285ae391daa9f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 20 Apr 2023 12:47:06 +0200 Subject: [PATCH 013/211] #10991 fixed background in black theme --- pandora_console/include/styles/pandora_black.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index f657e9d910..e6e2710d7c 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -736,7 +736,7 @@ div#main_pure { div#main, div#container, body.pure { - background-color: #111; + background-color: #111 !important; } form ul.form_flex { From 8a303da276b29577d63eadb10df5e92c5b136384 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 24 Apr 2023 13:13:55 +0200 Subject: [PATCH 014/211] Set the value of hide_div_eye in the html_print_input_password function to true --- .../godmode/agentes/module_manager_editor_network.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 464fff7c67..963aa73e07 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -397,7 +397,9 @@ $data[3] = html_print_input_password( true, $disabledBecauseInPolicy, false, - $largeclassdisabledBecauseInPolicy + $largeclassdisabledBecauseInPolicy, + 'off', + true ); $data[3] .= html_print_input_hidden_extended('active_snmp_v3', 0, 'active_snmp_v3_mmen', true); if ($snmp_version != 3) { @@ -419,7 +421,9 @@ $data[3] = html_print_input_password( true, $disabledBecauseInPolicy, false, - $largeclassdisabledBecauseInPolicy + $largeclassdisabledBecauseInPolicy, + 'off', + true ); if ($snmp_version != 3) { From 2303b880b67fe00e7b53a33c330471146cf5dbc0 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Mon, 24 Apr 2023 16:49:44 +0200 Subject: [PATCH 015/211] 11044-Select2 black in graphs options --- pandora_console/include/styles/pandora_black.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index f657e9d910..7abded40d3 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1438,12 +1438,21 @@ select[multiple] option:active { background: #008d86; } +.select2-search.select2-search--dropdown, +.select2-results > .select2-results__options > .select2-results__option { + background-color: #222; +} + .select2-results > .select2-results__options > .select2-results__option.select2-results__option--highlighted { background-color: #008d86; } +.select2-container .select2-selection--single .select2-selection__rendered { + color: var(--secondary-color) !important; +} + .filter_summary > div, .filter_summary > div > div.content { background-color: #222 !important; From cde914fb69defaca2b80728defe449f93b1d3bd0 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 25 Apr 2023 09:10:34 +0200 Subject: [PATCH 016/211] #11001 welcome tips english version --- pandora_console/extras/mr/63.sql | 65 ++++++++++++++++++++++++++++++ pandora_console/pandoradb_data.sql | 62 +++++++++++++++++++++++++++- 2 files changed, 126 insertions(+), 1 deletion(-) create mode 100644 pandora_console/extras/mr/63.sql diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql new file mode 100644 index 0000000000..abe105bccd --- /dev/null +++ b/pandora_console/extras/mr/63.sql @@ -0,0 +1,65 @@ +START TRANSACTION; + +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'You know reports of Availability?','They are very useful as they tell you how long (%) a check has been in different states over a period of time, say a week. It offers complete raw data of what has been done in enough detail to convince a vendor or customer.','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'informe_disponibiliad.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Did you know that you can monitor websites?','In a simple way through standard or transactional HTTP checks through centralized WUX transactions, or decentralized with the UX agent plugin.','https://pandorafms.com/manual/en/documentation/03_monitoring/06_web_monitoring',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_web.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Did you know that each user can have their own Time Zone?','Different time zones can be established for each user, so that it interprets the data taking into account the time difference. Pandora FMS can also have servers and agents in different time zones. All over the world!','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'usuario_zona_horaria.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Does your network lose packets?','You can measure the packet loss in your network using an agent and a free plugin called “Packet Loss”. This is especially useful on Wi-Fi networks or networks shared with many users. We wrote an article on our blog talking about it, check it out','https://pandorafms.com/blog/packet-loss/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'tu_red_pierde_paquetes.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Console Internal Audit','The console logs all relevant activities of each user connected to the console. This includes the application of configurations, validation of events and alerts, connection and disconnection, and hundreds of other operations. Security in Pandora FMS has always been one of the design characteristics of its architecture.','https://pandorafms.com/manual/en/documentation/04_using/11_managing_and_administration#log_de_auditoria',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'auditoria.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Two-factor authentication','It is possible to activate (and force its use to all users) a double authentication system (using Google Auth) so that any user authenticates in addition to a password, with a single-use token system, giving the system much more security.','https://pandorafms.com/manual/en/documentation/04_using/12_console_setup?s%5B%5D%3Dgoogle%26s%5B%5D%',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'politica_de_pass.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Visual consoles: heat maps','The console allows a series of data to be integrated into a personalized background, which, depending on their value, is represented with one color or another, in real time. The applications are endless, it just depends on your imagination.','https://pandorafms.com/manual/en/documentation/04_using/05_data_presentation_visual_maps#mapa_de_cal',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'mapa_de_calor.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Network links in the visual console','There is a visual console element called “Network link” that allows to visually show the union of two network interfaces, their status and the upload/download traffic, in a very visual way.','https://pandorafms.com/manual/en/documentation/04_using/05_data_presentation_visual_maps#enlace_de_red',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'enlaces_consola_visual.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Google Sheet ','Do you know that you can get the value of a cell from a Google Sheet spreadsheet? We use the API to request the data through a remote plugin. It's perfect for building business dashboards, getting real-time alerts, and creating your own custom reports.','https://pandorafms.com/library/google-sheets-plugin/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'google_sheets.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Availability graphs','Similar to availability reports, but much more visual, they offer detailed status of a monitor over time. They can be grouped with another module to offer final data taking into account the high availability of a service. They are perfect for use in reports to suppliers and/or customers.','https://pandorafms.com/manual/en/documentation/04_using/08_data_presentation_reports#grafico_de_disp',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@las,'graficas_disponibilidad.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Full resolution graphics','Pandora FMS and other tools, when they have to display a graph, obtain the data from the data source and then “simplify” the graph, since if the data series has 10,000 elements and the graph is only 300 pixels wide, they cannot fit all of them. , so those 10,000 points are “simplified” into only 300. However, when simplifying, “detail” is lost in the graph, and of course we cannot “zoom in”. Pandora FMS graphs allow you to display and use all the data in a graph, which we call "TIP" that shows all the overlapping points and also allows you not to lose resolution when zooming.','',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'dark mode','Do you know that there is a dark mode in Pandora FMS? An administrator can activate it at a global level from the visual configuration options or any user at an individual level, in the user options.','',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Remote monitoring of SNMP devices','Network devices such as switches, APs, routers, and firewalls can be remotely monitored using the SNMP protocol. It is enough to know your IP, the SNMP community and launch an SNMP wizard from the console.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_snmp',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_snmp.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Monitoring JMX (Tomcat, Websphere, Weblogic, Jboss, Apache Kafka, Jetty, GlassFish…)','There is an Enterprise plugin that is used to monitor any JMX technology. It can be used locally (as a local plugin) or remotely with the plugin server.','https://pandorafms.com/library/jmx-monitoring/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_con_jmx.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Monitor routes from one IP to another','There is a special plugin that is used to visually monitor the routes from one IP to another in a visual and dynamic way, as it changes over time.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_de_rutas',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_desde_ip.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'planned stops','It is possible to define, at the agent level and at the module level, periods in which the alerts and/or the collected data are ignored. It is perfect for planning service stops or disconnection of monitored systems. It also affects SLA reporting, preventing those time intervals from being taken into account.','https://pandorafms.com/manual/en/documentation/04_using/11_managing_and_administration#paradas_de_servicio_planificadas',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'paradas_planificadas.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Customize alert emails','Did you know that Pandora alert emails can be customized? You only have to edit the default HTML code of the email type alert actions.','https://pandorafms.com/manual/en/documentation/04_using/01_alerts#editing_an_action',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'personalizar_los_emails.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'password policy','The Pandora FMS console has a credential policy management system, to reinforce local security (in addition to allowing external authentication against LDAP, Active Directory or SAML). Through this system we can force password changes every X days, save a history of passwords used or prevent the use of certain passwords, among other actions.','https://pandorafms.com/manual/en/documentation/04_using/12_console_setup?s%5B%5D%3Dcontrase%25C3%25B',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'ARP tables','Do you know that there is an inventory module to get the ARP tables from your windows servers? It is easy to install and can give you very detailed information about your equipment.','https://pandorafms.com/library/arp-table-windows-local/',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Using custom icons in visual consoles','Thanks to the custom icons, you can create highly customized views, such as the one in the image, which represents racks with the types of servers in the order they are placed within the rack. Perfect for a technician to know exactly what machine is failing. It couldn't be more visual, hence the name.','https://pandorafms.com/manual/start?id=en/documentation/04_using/05_data_presentation_visual_maps',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'iconos_personalizados.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Use Telegram with Pandora FMS','Perfect to receive alerts with embedded graphics and thus customize the reception of notices individually or in a common channel with more people.','https://pandorafms.com/library/telegram-bot-cli/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'telegram_con_pandora.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Zoom on data graphs','Do you know that Pandora FMS allows you to zoom in on a part of the graph. With that you will expand the information of the graph. If you are looking at a graph for a month and you zoom in, you will be able to see the data for that interval. If you use a graph with full resolution data (we call them TIP graphs) you will be able to see the detail of each piece of data, even if your graph has thousands of samples.','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'zoom_en_graficas.png','images/tips/'); + +COMMIT; diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index ed6f12fe99..c55749d583 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -2570,4 +2570,64 @@ INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`, `filename`, `path`) VALUES (20, 'zoom_en_graficas.png', 'images/tips/'), (22, 'politica_de_pass.png', 'images/tips/'); - +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'You know reports of Availability?','They are very useful as they tell you how long (%) a check has been in different states over a period of time, say a week. It offers complete raw data of what has been done in enough detail to convince a vendor or customer.','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'informe_disponibiliad.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Did you know that you can monitor websites?','In a simple way through standard or transactional HTTP checks through centralized WUX transactions, or decentralized with the UX agent plugin.','https://pandorafms.com/manual/en/documentation/03_monitoring/06_web_monitoring',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_web.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Did you know that each user can have their own Time Zone?','Different time zones can be established for each user, so that it interprets the data taking into account the time difference. Pandora FMS can also have servers and agents in different time zones. All over the world!','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'usuario_zona_horaria.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Does your network lose packets?','You can measure the packet loss in your network using an agent and a free plugin called “Packet Loss”. This is especially useful on Wi-Fi networks or networks shared with many users. We wrote an article on our blog talking about it, check it out','https://pandorafms.com/blog/packet-loss/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'tu_red_pierde_paquetes.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Console Internal Audit','The console logs all relevant activities of each user connected to the console. This includes the application of configurations, validation of events and alerts, connection and disconnection, and hundreds of other operations. Security in Pandora FMS has always been one of the design characteristics of its architecture.','https://pandorafms.com/manual/en/documentation/04_using/11_managing_and_administration#log_de_auditoria',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'auditoria.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Two-factor authentication','It is possible to activate (and force its use to all users) a double authentication system (using Google Auth) so that any user authenticates in addition to a password, with a single-use token system, giving the system much more security.','https://pandorafms.com/manual/en/documentation/04_using/12_console_setup?s%5B%5D%3Dgoogle%26s%5B%5D%',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'politica_de_pass.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Visual consoles: heat maps','The console allows a series of data to be integrated into a personalized background, which, depending on their value, is represented with one color or another, in real time. The applications are endless, it just depends on your imagination.','https://pandorafms.com/manual/en/documentation/04_using/05_data_presentation_visual_maps#mapa_de_cal',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'mapa_de_calor.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Network links in the visual console','There is a visual console element called “Network link” that allows to visually show the union of two network interfaces, their status and the upload/download traffic, in a very visual way.','https://pandorafms.com/manual/en/documentation/04_using/05_data_presentation_visual_maps#enlace_de_red',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'enlaces_consola_visual.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Google Sheet ','Do you know that you can get the value of a cell from a Google Sheet spreadsheet? We use the API to request the data through a remote plugin. It's perfect for building business dashboards, getting real-time alerts, and creating your own custom reports.','https://pandorafms.com/library/google-sheets-plugin/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'google_sheets.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Availability graphs','Similar to availability reports, but much more visual, they offer detailed status of a monitor over time. They can be grouped with another module to offer final data taking into account the high availability of a service. They are perfect for use in reports to suppliers and/or customers.','https://pandorafms.com/manual/en/documentation/04_using/08_data_presentation_reports#grafico_de_disp',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@las,'graficas_disponibilidad.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Full resolution graphics','Pandora FMS and other tools, when they have to display a graph, obtain the data from the data source and then “simplify” the graph, since if the data series has 10,000 elements and the graph is only 300 pixels wide, they cannot fit all of them. , so those 10,000 points are “simplified” into only 300. However, when simplifying, “detail” is lost in the graph, and of course we cannot “zoom in”. Pandora FMS graphs allow you to display and use all the data in a graph, which we call "TIP" that shows all the overlapping points and also allows you not to lose resolution when zooming.','',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'dark mode','Do you know that there is a dark mode in Pandora FMS? An administrator can activate it at a global level from the visual configuration options or any user at an individual level, in the user options.','',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Remote monitoring of SNMP devices','Network devices such as switches, APs, routers, and firewalls can be remotely monitored using the SNMP protocol. It is enough to know your IP, the SNMP community and launch an SNMP wizard from the console.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_snmp',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_snmp.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Monitoring JMX (Tomcat, Websphere, Weblogic, Jboss, Apache Kafka, Jetty, GlassFish…)','There is an Enterprise plugin that is used to monitor any JMX technology. It can be used locally (as a local plugin) or remotely with the plugin server.','https://pandorafms.com/library/jmx-monitoring/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_con_jmx.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Monitor routes from one IP to another','There is a special plugin that is used to visually monitor the routes from one IP to another in a visual and dynamic way, as it changes over time.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_de_rutas',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'monitorizar_desde_ip.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'planned stops','It is possible to define, at the agent level and at the module level, periods in which the alerts and/or the collected data are ignored. It is perfect for planning service stops or disconnection of monitored systems. It also affects SLA reporting, preventing those time intervals from being taken into account.','https://pandorafms.com/manual/en/documentation/04_using/11_managing_and_administration#paradas_de_servicio_planificadas',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'paradas_planificadas.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Customize alert emails','Did you know that Pandora alert emails can be customized? You only have to edit the default HTML code of the email type alert actions.','https://pandorafms.com/manual/en/documentation/04_using/01_alerts#editing_an_action',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'personalizar_los_emails.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'password policy','The Pandora FMS console has a credential policy management system, to reinforce local security (in addition to allowing external authentication against LDAP, Active Directory or SAML). Through this system we can force password changes every X days, save a history of passwords used or prevent the use of certain passwords, among other actions.','https://pandorafms.com/manual/en/documentation/04_using/12_console_setup?s%5B%5D%3Dcontrase%25C3%25B',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Automatic agent provision system','The agent self-provisioning system allows an agent recently entered into the system to automatically apply changes to their configuration (such as moving them from group, assigning them certain values in custom fields) and of course applying certain monitoring policies. It is one of the most powerful functionalities, aimed at managing very large system parks.','https://pandorafms.com/manual/start?id=en/documentation/02_installation/05_configuration_agents#conf',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'ARP tables','Do you know that there is an inventory module to get the ARP tables from your windows servers? It is easy to install and can give you very detailed information about your equipment.','https://pandorafms.com/library/arp-table-windows-local/',1); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Using custom icons in visual consoles','Thanks to the custom icons, you can create highly customized views, such as the one in the image, which represents racks with the types of servers in the order they are placed within the rack. Perfect for a technician to know exactly what machine is failing. It couldn't be more visual, hence the name.','https://pandorafms.com/manual/start?id=en/documentation/04_using/05_data_presentation_visual_maps',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'iconos_personalizados.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Use Telegram with Pandora FMS','Perfect to receive alerts with embedded graphics and thus customize the reception of notices individually or in a common channel with more people.','https://pandorafms.com/library/telegram-bot-cli/',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'telegram_con_pandora.png','images/tips/'); +INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Zoom on data graphs','Do you know that Pandora FMS allows you to zoom in on a part of the graph. With that you will expand the information of the graph. If you are looking at a graph for a month and you zoom in, you will be able to see the data for that interval. If you use a graph with full resolution data (we call them TIP graphs) you will be able to see the detail of each piece of data, even if your graph has thousands of samples.','',1); +SELECT @last_id := LAST_INSERT_ID(); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'zoom_en_graficas.png','images/tips/'); From dfffed1912e139b6462bc551e218921e9008799d Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 25 Apr 2023 10:07:27 +0200 Subject: [PATCH 017/211] #11001 fix sql error MR --- pandora_console/extras/mr/63.sql | 2 +- pandora_console/pandoradb_data.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index abe105bccd..16dcccbebf 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -29,7 +29,7 @@ SELECT @last_id := LAST_INSERT_ID(); INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'google_sheets.png','images/tips/'); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Availability graphs','Similar to availability reports, but much more visual, they offer detailed status of a monitor over time. They can be grouped with another module to offer final data taking into account the high availability of a service. They are perfect for use in reports to suppliers and/or customers.','https://pandorafms.com/manual/en/documentation/04_using/08_data_presentation_reports#grafico_de_disp',1); SELECT @last_id := LAST_INSERT_ID(); -INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@las,'graficas_disponibilidad.png','images/tips/'); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'graficas_disponibilidad.png','images/tips/'); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Full resolution graphics','Pandora FMS and other tools, when they have to display a graph, obtain the data from the data source and then “simplify” the graph, since if the data series has 10,000 elements and the graph is only 300 pixels wide, they cannot fit all of them. , so those 10,000 points are “simplified” into only 300. However, when simplifying, “detail” is lost in the graph, and of course we cannot “zoom in”. Pandora FMS graphs allow you to display and use all the data in a graph, which we call "TIP" that shows all the overlapping points and also allows you not to lose resolution when zooming.','',1); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'dark mode','Do you know that there is a dark mode in Pandora FMS? An administrator can activate it at a global level from the visual configuration options or any user at an individual level, in the user options.','',1); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Remote monitoring of SNMP devices','Network devices such as switches, APs, routers, and firewalls can be remotely monitored using the SNMP protocol. It is enough to know your IP, the SNMP community and launch an SNMP wizard from the console.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_snmp',1); diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index c55749d583..2f590627f1 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -2599,7 +2599,7 @@ SELECT @last_id := LAST_INSERT_ID(); INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'google_sheets.png','images/tips/'); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Availability graphs','Similar to availability reports, but much more visual, they offer detailed status of a monitor over time. They can be grouped with another module to offer final data taking into account the high availability of a service. They are perfect for use in reports to suppliers and/or customers.','https://pandorafms.com/manual/en/documentation/04_using/08_data_presentation_reports#grafico_de_disp',1); SELECT @last_id := LAST_INSERT_ID(); -INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@las,'graficas_disponibilidad.png','images/tips/'); +INSERT INTO `twelcome_tip_file` (`twelcome_tip_file`,`filename`,`path`) VALUES (@last_id,'graficas_disponibilidad.png','images/tips/'); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Full resolution graphics','Pandora FMS and other tools, when they have to display a graph, obtain the data from the data source and then “simplify” the graph, since if the data series has 10,000 elements and the graph is only 300 pixels wide, they cannot fit all of them. , so those 10,000 points are “simplified” into only 300. However, when simplifying, “detail” is lost in the graph, and of course we cannot “zoom in”. Pandora FMS graphs allow you to display and use all the data in a graph, which we call "TIP" that shows all the overlapping points and also allows you not to lose resolution when zooming.','',1); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'dark mode','Do you know that there is a dark mode in Pandora FMS? An administrator can activate it at a global level from the visual configuration options or any user at an individual level, in the user options.','',1); INSERT INTO `twelcome_tip` (`id_lang`,`id_profile`,`title`,`text`,`url`,`enable`) VALUES ('en_GB',0,'Remote monitoring of SNMP devices','Network devices such as switches, APs, routers, and firewalls can be remotely monitored using the SNMP protocol. It is enough to know your IP, the SNMP community and launch an SNMP wizard from the console.','https://pandorafms.com/manual/en/documentation/03_monitoring/03_remote_monitoring#monitorizacion_snmp',1); From 1c41a91c1499a597d11883ec9b253eda0c4aa6d9 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 25 Apr 2023 10:19:30 +0200 Subject: [PATCH 018/211] #10869 removed the group_id from the url, in the detail agent filter --- pandora_console/operation/agentes/estado_agente.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 6fffdb00ae..9a7a97ed9d 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -278,7 +278,7 @@ $fields[AGENT_STATUS_NOT_NORMAL] = __('Not normal'); $fields[AGENT_STATUS_NOT_INIT] = __('Not init'); $searchForm = ''; -$searchForm .= '
'; +$searchForm .= ''; $table = new stdClass(); $table->width = '100%'; From e1f995744b2bfe0a53098988c325fd1eeea8f2b7 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 25 Apr 2023 10:57:21 +0200 Subject: [PATCH 019/211] #10998 fixed acl edit my user --- pandora_console/godmode/users/configure_user.php | 5 +++++ pandora_console/operation/menu.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 2f01df4a55..73b08d3ab1 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -57,6 +57,11 @@ if ($enterprise_include === true) { // This defines the working user. Beware with this, old code get confusses // and operates with current logged user (dangerous). $id = get_parameter('id', get_parameter('id_user', '')); + +if (empty($id) === true) { + $id = $config['id_user']; +} + // Check if we are the same user for edit or we have a proper profile for edit users. if ($id !== $config['id_user']) { if ((bool) check_acl($config['id_user'], 0, 'UM') === false) { diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 8b6d9f4749..4e72aaac16 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -637,7 +637,7 @@ $menu_operation['workspace']['id'] = 'oper-users'; // ANY user can view him/herself ! // Users. -$query_paramameters_user = '&edit_user=1&pure=0&id_user='.$config['id_user']; +$query_paramameters_user = '&edit_user=1&pure=0'; $sub = []; $sub['godmode/users/configure_user'.$query_paramameters_user]['text'] = __('Edit my user'); From 442daf028251f2ebd2b543751c911bc29e3e5da5 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 25 Apr 2023 14:28:51 +0200 Subject: [PATCH 020/211] #11001 change MR 63 to 64 --- pandora_console/extras/mr/{63.sql => 64.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pandora_console/extras/mr/{63.sql => 64.sql} (100%) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/64.sql similarity index 100% rename from pandora_console/extras/mr/63.sql rename to pandora_console/extras/mr/64.sql From d28cd1577b184f3b5e32fd59e93c9b85461d5b07 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 25 Apr 2023 15:43:02 +0200 Subject: [PATCH 021/211] #10326 regenerate api token when update password --- pandora_console/godmode/users/configure_user.php | 8 ++++++++ pandora_console/include/functions_api.php | 3 +++ 2 files changed, 11 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 2f01df4a55..a57012fd3a 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -747,6 +747,10 @@ if ($update_user) { ] ); $res3 = save_pass_history($id, $password_new); + + // Generate new API token. + $newToken = api_token_generate(); + $res4 = update_user($id, ['api_token' => $newToken]); } ui_print_result_message( @@ -771,6 +775,10 @@ if ($update_user) { 'utimestamp' => time(), ] ); + + // Generate new API token. + $newToken = api_token_generate(); + $res4 = update_user($id, ['api_token' => $newToken]); } ui_print_result_message( diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index bd1577116c..d07d0e528d 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -9612,6 +9612,7 @@ function api_set_new_user($id, $thrash2, $other, $thrash3) $values['section'] = $other['data'][11]; $values['session_time'] = $other['data'][12]; $values['metaconsole_access_node'] = $other['data'][13]; + $values['api_token'] = api_token_generate(); if (empty($password) === true) { returnError('Password cannot be empty.'); @@ -9708,6 +9709,8 @@ function api_set_update_user($id, $thrash2, $other, $thrash3) if (!update_user_password($id, $other['data'][4])) { returnError('The user could not be updated. Password info incorrect.'); return; + } else { + $values['api_token'] = api_token_generate(); } } From 8108a84ba7cdadc503409b305743754bc2ef5ae7 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 25 Apr 2023 16:47:52 +0200 Subject: [PATCH 022/211] Fix incompatibility with Firefox --- .../godmode/alerts/configure_alert_command.php | 6 +++--- pandora_console/include/functions_html.php | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index 1631f2f24e..722c680a27 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -369,7 +369,7 @@ for ($i = 1; $i <= $config['max_macro_fields']; $i++) { $selected, !$is_management_allowed, 'cursor: \'pointer\'', - 'class="hide_inputs"', + ['input_class' => 'hide_inputs'], true ) ); @@ -422,9 +422,9 @@ $(document).ready (function () { $(".hide_inputs").click(function() { var $input_in_row = $(this).closest('tr').find('.field_value'); if($(this).is(':checked')) { - $input_in_row.prop('style', '-webkit-text-security: disc;'); + $input_in_row.prop('type', 'password'); } else { - $input_in_row.prop('style', ''); + $input_in_row.prop('type', 'text') } }); }); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index bc8ffefe8a..88cb032570 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4276,19 +4276,19 @@ function html_print_checkbox_extended( foreach ($attributes as $key => $value) { switch ($key) { case 'input_class': - $inputClass .= ' '.$value; + $inputClass .= ' '.$val; break; case 'label_class': - $labelClass .= ' '.$value; + $labelClass .= ' '.$val; break; case 'label_style': - $labelStyle .= 'style="'.$value.'"'; + $labelStyle .= 'style="'.$val.'"'; break; default: - $tmpAttributes[] = $key.'="'.$value.'"'; + $tmpAttributes[] = $key.'="'.$val.'"'; break; } } From 4b74dc7e7882c9a0e02f1a662ebca904d95e85b3 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 26 Apr 2023 09:38:03 +0200 Subject: [PATCH 023/211] #10623 removal of the default text in the textarea description --- pandora_console/godmode/agentes/configurar_agente.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index da75fd6342..92e32c84e4 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -2521,10 +2521,10 @@ switch ($tab) { }); // Change description when edit port - $( "#text-tcp_port" ).change(function() { + /*$( "#text-tcp_port" ).change(function() { $( "#textarea_description" ).text(`Checks port ${$( "#text-tcp_port" ).val()} is opened`); - }); - + });*/ + // Set the position and width of the subtab /* function agent_wizard_tab_setup() { From 48aff7669709299e2dfd927bbe232ab3ea5d74a5 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 26 Apr 2023 12:55:37 +0200 Subject: [PATCH 024/211] #11049 fixed reset time range --- pandora_console/operation/reporting/graph_viewer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/reporting/graph_viewer.php b/pandora_console/operation/reporting/graph_viewer.php index ebdadb1fe4..5d741e38dd 100644 --- a/pandora_console/operation/reporting/graph_viewer.php +++ b/pandora_console/operation/reporting/graph_viewer.php @@ -344,7 +344,7 @@ if ($view_graph) { $searchForm .= ""; $searchForm .= html_print_label_input_block( __('Time range'), - html_print_extended_select_for_time('period', $period, '', '', '0', 10, true, 'width:100%') + html_print_extended_select_for_time('period', (string) $period, '', '', 0, 10, true, 'width:100%') ); $searchForm .= ''; $searchForm .= ''; From 4c32c6c888512a60e77a030a50a82ba7f417ce7d Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 26 Apr 2023 13:46:29 +0200 Subject: [PATCH 025/211] #11049 hiden Equalize maxiddmum when graph is not Bullet --- pandora_console/operation/reporting/graph_viewer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/reporting/graph_viewer.php b/pandora_console/operation/reporting/graph_viewer.php index 5d741e38dd..b06dcbca80 100644 --- a/pandora_console/operation/reporting/graph_viewer.php +++ b/pandora_console/operation/reporting/graph_viewer.php @@ -376,9 +376,9 @@ if ($view_graph) { false, '', false - ) + ), + ['div_id' => 'thresholdDiv'] ); - $searchForm .= ''; $searchForm .= ''; $searchForm .= ""; From 9f9aed4d77a9c33319cbfd321e51441fad52d0b4 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 27 Apr 2023 09:40:32 +0200 Subject: [PATCH 026/211] add target ip field to remote components --- pandora_console/extras/mr/64.sql | 5 + .../modules/manage_network_components.php | 3 + ...manage_network_components_form_network.php | 120 ++++++++++-------- .../include/javascript/pandora_modules.js | 4 + pandora_console/pandoradb.sql | 1 + 5 files changed, 82 insertions(+), 51 deletions(-) create mode 100644 pandora_console/extras/mr/64.sql diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql new file mode 100644 index 0000000000..37d72f9ddb --- /dev/null +++ b/pandora_console/extras/mr/64.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE `tnetwork_component` ADD COLUMN `target_ip` VARCHAR(255) NOT NULL DEFAULT ''; + +COMMIT; diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index 7ef20ca385..1dca741dda 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -77,6 +77,7 @@ $min = (int) get_parameter('min'); $tcp_send = (string) get_parameter('tcp_send'); $tcp_rcv = (string) get_parameter('tcp_rcv'); $tcp_port = (int) get_parameter('tcp_port'); +$target_ip = (string) get_parameter('target_ip'); $snmp_oid = (string) get_parameter('snmp_oid'); $snmp_community = (string) get_parameter('snmp_community'); $id_module_group = (int) get_parameter('id_module_group'); @@ -360,6 +361,7 @@ if ($is_management_allowed === true && $create_component) { 'tcp_send' => $tcp_send, 'tcp_rcv' => $tcp_rcv, 'tcp_port' => $tcp_port, + 'target_ip' => $target_ip, 'snmp_oid' => $snmp_oid, 'snmp_community' => $snmp_community, 'id_module_group' => $id_module_group, @@ -465,6 +467,7 @@ if ($is_management_allowed === true && $update_component) { 'tcp_send' => $tcp_send, 'tcp_rcv' => $tcp_rcv, 'tcp_port' => $tcp_port, + 'target_ip' => $target_ip, 'snmp_oid' => $snmp_oid, 'snmp_community' => $snmp_community, 'id_module_group' => $id_module_group, diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php index d91b80161e..f5b0e3a4fb 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -50,8 +50,19 @@ $snmp_versions['2c'] = 'v. 2c'; $snmp_versions['3'] = 'v. 3'; $data = []; -$data[0] = __('Port'); -$data[1] = html_print_input_text('tcp_port', $tcp_port, '', 5, 20, true); +$data[0] = __('Target IP'); +$data[1] = html_print_input_text_extended( + 'target_ip', + $target_ip, + 'target_ip', + '', + 30, + 10000, + '', + '', + '', + true +); $data[2] = __('SNMP version'); $data[3] = html_print_select( $snmp_versions, @@ -66,19 +77,11 @@ $data[3] = html_print_select( '' ); -push_table_row($data, 'snmp_port'); +push_table_row($data, 'row1'); $data = []; -$data[0] = __('SNMP Enterprise String'); -$data[1] = html_print_input_text( - 'snmp_oid', - $snmp_oid, - '', - 30, - 400, - true -); - +$data[0] = __('Port'); +$data[1] = html_print_input_text('tcp_port', $tcp_port, '', 5, 20, true); $data[2] = __('SNMP community'); $data[3] = html_print_input_text( 'snmp_community', @@ -89,17 +92,16 @@ $data[3] = html_print_input_text( true ); -push_table_row($data, 'snmp_2'); - +push_table_row($data, 'snmp_port'); $data = []; -$data[0] = __('Auth user'); +$data[0] = __('SNMP Enterprise String'); $data[1] = html_print_input_text( - 'snmp3_auth_user', - $snmp3_auth_user, + 'snmp_oid', + $snmp_oid, '', - 15, - 60, + 30, + 400, true ); $data[2] = __('Auth password'); @@ -117,20 +119,18 @@ $data[3] .= html_print_input_hidden_extended( 'active_snmp_v3_mncfn', true ); -push_table_row($data, 'field_snmpv3_row1'); + +push_table_row($data, 'snmp_2'); + $data = []; -$data[0] = __('Privacy method'); -$data[1] = html_print_select( - [ - 'DES' => __('DES'), - 'AES' => __('AES'), - ], - 'snmp3_privacy_method', - $snmp3_privacy_method, - '', - '', +$data[0] = __('Auth user'); +$data[1] = html_print_input_text( + 'snmp3_auth_user', + $snmp3_auth_user, '', + 15, + 60, true ); $data[2] = __('Privacy pass'); @@ -142,17 +142,18 @@ $data[3] = html_print_input_password( 60, true ); -push_table_row($data, 'field_snmpv3_row2'); + +push_table_row($data, 'field_snmpv3_row1'); $data = []; -$data[0] = __('Auth method'); +$data[0] = __('Privacy method'); $data[1] = html_print_select( [ - 'MD5' => __('MD5'), - 'SHA' => __('SHA'), + 'DES' => __('DES'), + 'AES' => __('AES'), ], - 'snmp3_auth_method', - $snmp3_auth_method, + 'snmp3_privacy_method', + $snmp3_privacy_method, '', '', '', @@ -172,6 +173,37 @@ $data[3] = html_print_select( '', true ); + +push_table_row($data, 'field_snmpv3_row2'); + +$data = []; +$data[0] = __('Auth method'); +$data[1] = html_print_select( + [ + 'MD5' => __('MD5'), + 'SHA' => __('SHA'), + ], + 'snmp3_auth_method', + $snmp3_auth_method, + '', + '', + '', + true +); +$data[2] = __('Name OID').' '.ui_print_help_icon('xxx', true); +$data[3] = html_print_input_text_extended( + 'name_oid', + $name_oid, + 'name_oid', + '', + 30, + 10000, + '', + '', + '', + true +); + push_table_row($data, 'field_snmpv3_row3'); $data = []; @@ -188,20 +220,6 @@ $data[1] = html_print_extended_select_for_post_process( true ); -$data[2] = __('Name OID').' '.ui_print_help_icon('xxx', true); -$data[3] = html_print_input_text_extended( - 'name_oid', - $name_oid, - 'name_oid', - '', - 30, - 10000, - '', - '', - '', - true -); - push_table_row($data, 'field_process'); // Advanced stuff. diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 771efb460f..734815ed68 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -377,6 +377,10 @@ function configure_modules_form() { ); $("#textarea_tcp_send").html(js_html_entity_decode(data["tcp_send"])); $("#textarea_tcp_rcv").html(js_html_entity_decode(data["tcp_rcv"])); + $("#text-ip_target").attr( + "value", + js_html_entity_decode(data["target_ip"]) + ); $("#text-snmp_community").attr( "value", js_html_entity_decode(data["snmp_community"]) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 981b8a5ded..6502ac5e17 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1008,6 +1008,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` ( `percentage_critical` TINYINT UNSIGNED DEFAULT 0, `percentage_warning` TINYINT UNSIGNED DEFAULT 0, `warning_time` INT UNSIGNED DEFAULT 0, + `target_ip` VARCHAR(255) NOT NULL DEFAULT '', PRIMARY KEY (`id_nc`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From 857405b886d5dfb8920f63d3b28bfd86782783ab Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 27 Apr 2023 11:13:19 +0200 Subject: [PATCH 027/211] add target ip field to remote components --- .../godmode/modules/manage_network_components_form.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/godmode/modules/manage_network_components_form.php b/pandora_console/godmode/modules/manage_network_components_form.php index 427d8295f7..bc38f6b182 100644 --- a/pandora_console/godmode/modules/manage_network_components_form.php +++ b/pandora_console/godmode/modules/manage_network_components_form.php @@ -60,6 +60,7 @@ if ($create_network_from_module) { $max = $data_module['max']; $min = $data_module['min']; $module_interval = $data_module['module_interval']; + $target_ip = $data_module['target_ip']; $tcp_port = $data_module['tcp_port']; $tcp_rcv = $data_module['tcp_rcv']; $tcp_send = $data_module['tcp_send']; @@ -120,6 +121,7 @@ if (isset($id)) { $max = $component['max']; $min = $component['min']; $module_interval = $component['module_interval']; + $target_ip = $component['target_ip']; $tcp_port = $component['tcp_port']; $tcp_rcv = $component['tcp_rcv']; $tcp_send = $component['tcp_send']; @@ -207,6 +209,7 @@ if (isset($id)) { $max = '0'; $min = '0'; $module_interval = '300'; + $target_ip = ''; $tcp_port = ''; $tcp_rcv = ''; $tcp_send = ''; From 2fe36627243518246d7c0a9e0eed75101adb83b4 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 27 Apr 2023 12:34:56 +0200 Subject: [PATCH 028/211] #11064 Fixed a conditional in the jquery code that generates the toggle which was not executed when the value of the is_metaconsole variable was 1 --- pandora_console/include/functions_ui.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 4dcf94edf1..473e96fe37 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -4602,7 +4602,7 @@ function ui_toggle( $output .= ' /* Date: Thu, 27 Apr 2023 14:02:10 +0200 Subject: [PATCH 029/211] search of my.cnf pandora_diagnostic script --- pandora_server/util/pandora_diagnostic.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pandora_server/util/pandora_diagnostic.sh b/pandora_server/util/pandora_diagnostic.sh index 5b7f7a640f..9719f262ee 100755 --- a/pandora_server/util/pandora_diagnostic.sh +++ b/pandora_server/util/pandora_diagnostic.sh @@ -48,7 +48,17 @@ ps aux | grep pandora >> $OUTFILE echo "-----------------------------------------------------------------" >> $OUTFILE echo "MySQL Configuration file" >> $OUTFILE echo "-----------------------------------------------------------------" >> $OUTFILE -cat /etc/mysql/my.cnf >> $OUTFILE + +# Search for my.cnf file in directories in order (search in root /etc if it was not found in previous paths) +MY_CNF=$(find /etc/mysql /usr/local/mysql /usr/local/etc /etc -name my.cnf 2>/dev/null | head -n 1) + +# Check if my.cnf file was found +if [ -z "$MY_CNF" ]; then + echo "ERROR: my.cnf file not found." + exit 1 +fi + +cat $MY_CNF >> $OUTFILE echo "-----------------------------------------------------------------" >> $OUTFILE echo "Pandora FMS Server Configuration file" >> $OUTFILE From e1f473f985e26b6cfa91e57e3472b64344202781 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 28 Apr 2023 10:51:02 +0200 Subject: [PATCH 030/211] #10638 format numbers network link --- .../models/VisualConsole/Items/NetworkLink.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Items/NetworkLink.php b/pandora_console/include/rest-api/models/VisualConsole/Items/NetworkLink.php index e9ffd7aefb..c4feb01442 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Items/NetworkLink.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Items/NetworkLink.php @@ -584,10 +584,12 @@ final class NetworkLink extends Model $inOctets = sprintf('%0.3f %s', $inOctets, $unitIn); $labelStart = $interface_name; - $labelStart .= ' (in): '.$inOctets; + $inOctets = explode(' ', $inOctets); + $labelStart .= ' (in): '.format_for_graph($inOctets[0]).' '.$inOctets[1]; $labelStart .= '
'.$interface_name; - $labelStart .= ' (out): '.$outOctets; + $outOctets = explode(' ', $outOctets); + $labelStart .= ' (out): '.format_for_graph($outOctets[0]).' '.$outOctets[1]; } if (isset($links['start']['id_metaconsole']) === true @@ -665,10 +667,12 @@ final class NetworkLink extends Model $inOctets = sprintf('%0.3f %s', $inOctets, $unitIn); $labelEnd = $interface_name; - $labelEnd .= ' (in): '.$inOctets; + $inOctets = explode(' ', $inOctets); + $labelEnd .= ' (in): '.format_for_graph($inOctets[0]).' '.$inOctets[1]; $labelEnd .= '
'.$interface_name; - $labelEnd .= ' (out): '.$outOctets; + $outOctets = explode(' ', $outOctets); + $labelEnd .= ' (out): '.format_for_graph($outOctets[0]).' '.$outOctets[1]; } if (isset($links['end']['id_metaconsole']) === true From aeeae1a2b37751faa6cfd925bdf6df80f511f702 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 4 May 2023 09:55:32 +0200 Subject: [PATCH 031/211] 11078-Remove Create files and directories buttons from MIB Uploader --- .../include/functions_filemanager.php | 119 ++++++++++-------- .../snmpconsole/snmp_mib_uploader.php | 2 +- 2 files changed, 69 insertions(+), 52 deletions(-) diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 1e5297dbff..1f3549c319 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -485,6 +485,7 @@ function filemanager_file_explorer( // Options. $allowZipFiles = (isset($options['all']) === true) || ((isset($options['allowZipFiles']) === true) && ($options['allowZipFiles'] === true)); $allowCreateText = (isset($options['all']) === true) || ((isset($options['allowCreateText']) === true) && ($options['allowCreateText'] === true)); + $allowCreateFolder = (isset($options['allowCreateFolder'])) ? false : true; if ($homedir_filemanager === false) { $homedir_filemanager = $config['homedir']; @@ -494,11 +495,14 @@ function filemanager_file_explorer( ?> From 78f4126700685ce8286a6753097f9d7b93dd7b78 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 4 May 2023 10:39:51 +0200 Subject: [PATCH 033/211] #11050 Fixed critical instructions --- .../godmode/agentes/module_manager_editor_common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 1f0f3c59c2..02267ffad2 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -1044,8 +1044,8 @@ $table_advanced->data['textarea_description_instructions'][1] = html_print_texta $table_advanced->rowclass['caption_textarea_crit_warn_instructions'] = 'field_half_width pdd_t_10px'; $table_advanced->rowclass['textarea_crit_warn_instructions'] = 'field_half_width'; -$table_advanced->data['caption_textarea_crit_warn_instructions'][1] = __('Warning instructions'); $table_advanced->data['caption_textarea_crit_warn_instructions'][0] = __('Critical instructions'); +$table_advanced->data['caption_textarea_crit_warn_instructions'][1] = __('Warning instructions'); $table_advanced->data['textarea_crit_warn_instructions'][0] = html_print_textarea( 'critical_instructions', 5, From 5f3cbbb12af81d0d5b71b2fc4087dc79f6dd7063 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 4 May 2023 11:14:11 +0200 Subject: [PATCH 034/211] fixed visual errors in legacy VC pandora_enterprise#11054 --- .../reporting/visual_console_builder.data.php | 1 - .../visual_console_builder.editor.js | 49 ++--- .../visual_console_builder.editor.php | 6 +- .../ajax/visual_console_builder.ajax.php | 4 +- .../include/functions_visual_map.php | 13 +- .../include/functions_visual_map_editor.php | 206 +++++++++++------- .../lib/Dashboard/Widgets/BasicChart.php | 1 - pandora_console/include/styles/pandora.css | 22 +- .../include/styles/visual_maps.css | 9 - .../operation/visual_console/legacy_view.php | 19 +- 10 files changed, 201 insertions(+), 129 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.data.php b/pandora_console/godmode/reporting/visual_console_builder.data.php index 6e2ac73422..739e2495fa 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.data.php +++ b/pandora_console/godmode/reporting/visual_console_builder.data.php @@ -408,7 +408,6 @@ $(document).ready (function () { }); $( "button[type=submit]" ).click(function( event ) { - console.log('aaaaaaaaaaa'); if (parseInt($('input[name=width]').val()) < 1024){ alert('Default width is '+$('input[name=width]').val()+'px, smaller than minimum -> 1024px'); $('input[name=width]').val('1024'); diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index eff0f416f1..3035fed8ae 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -202,15 +202,6 @@ function visual_map_main() { } } }); - - //Resize the view to adapt the screen size. - if ($("#main").length) { - //Console - $("#frame_view").height($("#main").height() - 75); - } else { - //Metaconsole - $("#frame_view").height($("#page").height() - 75); - } } function cancel_button_palette_callback() { @@ -2426,10 +2417,10 @@ function loadFieldsFromDB(item) { }); } -function setAspectRatioBackground(side) { +function setAspectRatioBackground(side, id) { toggle_item_palette(); - parameter = Array(); + var parameter = Array(); parameter.push({ name: "page", value: "include/ajax/visual_console_builder.ajax" @@ -2440,18 +2431,20 @@ function setAspectRatioBackground(side) { value: $("#background_img").attr("src") }); + parameter.push({ name: "id_visual_console", value: id }); + jQuery.ajax({ url: "ajax.php", data: parameter, type: "POST", dataType: "json", success: function(data) { - old_width = parseInt( + var old_width = parseInt( $("#background") .css("width") .replace("px", "") ); - old_height = parseInt( + var old_height = parseInt( $("#background") .css("height") .replace("px", "") @@ -2464,8 +2457,12 @@ function setAspectRatioBackground(side) { old_height = 768; } - img_width = data[0]; - img_height = data[1]; + var img_width = data[0]; + var img_height = data[1]; + + var ratio = 0; + var height = 0; + var width = 0; if (side == "width") { ratio = old_width / img_width; @@ -5821,14 +5818,14 @@ function deleteDB(idElement) { } function activeToolboxButton(id, active) { - if ($("input." + id + "[name=button_toolbox2]").length == 0) { + if ($("button." + id + "[name=" + id + "]").length == 0) { return; } if (active) { - $("input." + id + "[name=button_toolbox2]").removeAttr("disabled"); + $("button." + id + "[name=" + id + "]").removeAttr("disabled"); } else { - $("input." + id + "[name=button_toolbox2]").attr("disabled", true); + $("button." + id + "[name=" + id + "]").attr("disabled", true); } } @@ -6446,9 +6443,9 @@ function eventsBackground() { function move_elements_resize(original_width, original_height, width, height) { jQuery.each($(".item"), function(key, value) { - item = value; + var item = value; idItem = $(item).attr("id"); - classItem = $(item) + var classItem = $(item) .attr("class") .replace("item", "") .replace("ui-draggable", "") @@ -6456,22 +6453,22 @@ function move_elements_resize(original_width, original_height, width, height) { .replace(/^\s+/g, "") .replace(/\s+$/g, ""); - old_height = parseInt( + var old_height = parseInt( $(item) .css("top") .replace("px", "") ); - old_width = parseInt( + var old_width = parseInt( $(item) .css("left") .replace("px", "") ); - ratio_width = width / original_width; - ratio_height = height / original_height; + var ratio_width = width / original_width; + var ratio_height = height / original_height; - new_height = old_height * ratio_height; - new_width = old_width * ratio_width; + var new_height = old_height * ratio_height; + var new_width = old_width * ratio_width; var values = {}; diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.php b/pandora_console/godmode/reporting/visual_console_builder.editor.php index 725dab7806..3d5b8864cd 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.php +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.php @@ -92,14 +92,14 @@ html_print_input_hidden('metaconsole', (is_metaconsole() === true) ? 1 : 0); visual_map_editor_print_hack_translate_strings(); visual_map_editor_print_item_palette($visualConsole['id'], $background); -if (is_metaconsole() === false) { +if (is_metaconsole() === true) { echo '
'; } else { - echo '
'; + echo '
'; } echo '
'; +margin: 0px auto;border: 1px lightgray solid; width: '.$widthBackground.'px; height: '.$heightBackground.'px;background-color: '.$visualConsole['background_color'].';z-index:0;">'; echo "'; echo '
'; @@ -1435,12 +1493,12 @@ function visual_map_print_button_editor( ) { html_print_button( $label, - 'button_toolbox2', + $idDiv, $disabled, - "click_button_toolbox('".$idDiv."');", + 'click_button_toolbox("'.$idDiv.'");', [ - 'icon' => $class, - 'mode' => 'onlyIcon', + 'class' => $class.' float-'.$float, + 'mode' => 'onlyIcon', ], false, $imageButton diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php index 8041cf77d9..f5c321403a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php @@ -561,7 +561,6 @@ class BasicChart extends Widget global $config; $size = parent::getSize(); - hd($size, true); include_once $config['homedir'].'/include/functions_graph.php'; include_once $config['homedir'].'/include/functions_agents.php'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 2bff29229b..72f4c3fd99 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -4403,9 +4403,13 @@ span.log_zone_line_error { border: 1px solid red; } -#toolbox > input { - border-width: 0px 1px 0px 0px; - border-color: lightgray; +/* VISUAL MAP */ +#toolbox { + padding-top: 10px; +} + +#toolbox button { + margin: 0px 10px; } #toolbox > input.service_min { @@ -10422,12 +10426,24 @@ button.submitButton.onlyIcon.delete_item { -webkit-mask: url(../../images/delete.svg) no-repeat right / contain; } +button.buttonButton.onlyIcon.edit_item, +button.submitButton.onlyIcon.edit_item { + mask: url(../../images/edit.svg) no-repeat right / contain; + -webkit-mask: url(../../images/edit.svg) no-repeat right / contain; +} + button.buttonButton.onlyIcon.copy_item, button.submitButton.onlyIcon.copy_item { mask: url(../../images/copy.svg) no-repeat right / contain; -webkit-mask: url(../../images/copy.svg) no-repeat right / contain; } +button.buttonButton.onlyIcon.show_grid, +button.submitButton.onlyIcon.show_grid { + mask: url(../../images/WMI@svg.svg) no-repeat right / contain; + -webkit-mask: url(../../images/WMI@svg.svg) no-repeat right / contain; +} + button.buttonButton.link-create-item, button.submitButton.link-create-item { border-radius: 0; diff --git a/pandora_console/include/styles/visual_maps.css b/pandora_console/include/styles/visual_maps.css index f106dda76d..7bb126fcb7 100644 --- a/pandora_console/include/styles/visual_maps.css +++ b/pandora_console/include/styles/visual_maps.css @@ -99,15 +99,6 @@ div#vc-controls img.vc-qr { flex: inherit; } -input.vs_button_ghost { - background-color: transparent; - border: 1px solid #82b92e; - color: #82b92e; - text-align: center; - padding: 4px 12px; - font-weight: bold; -} - #toolbox #auto_save { padding-top: 5px; } diff --git a/pandora_console/operation/visual_console/legacy_view.php b/pandora_console/operation/visual_console/legacy_view.php index c7831cc2a5..dab3ab39e7 100644 --- a/pandora_console/operation/visual_console/legacy_view.php +++ b/pandora_console/operation/visual_console/legacy_view.php @@ -202,20 +202,31 @@ if (!is_metaconsole()) { 'class' => 'invert_filter', ] ).'
'; - ui_print_page_header( + + ui_print_standard_header( $layout_name, 'images/visual_console.png', false, 'visual_console_view', false, - $options + $options, + [ + [ + 'link' => '', + 'label' => __('Topology maps'), + ], + [ + 'link' => '', + 'label' => __('Visual console'), + ], + ] ); } - // Set the hidden value for the javascript + // Set the hidden value for the javascript. html_print_input_hidden('metaconsole', 0); } else { - // Set the hidden value for the javascript + // Set the hidden value for the javascript. html_print_input_hidden('metaconsole', 1); } From b8bd5c437d38fe1e6c394452e492dc524888f66f Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 4 May 2023 11:32:04 +0200 Subject: [PATCH 035/211] 11078-Remove Create files and directories buttons from MIB Uploader --- pandora_console/include/functions_filemanager.php | 7 ++++++- .../operation/snmpconsole/snmp_mib_uploader.php | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 1f3549c319..41d8b5a318 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -487,6 +487,10 @@ function filemanager_file_explorer( $allowCreateText = (isset($options['all']) === true) || ((isset($options['allowCreateText']) === true) && ($options['allowCreateText'] === true)); $allowCreateFolder = (isset($options['allowCreateFolder'])) ? false : true; + if ($options['denyCreateText'] === true) { + $allowCreateText = false; + } + if ($homedir_filemanager === false) { $homedir_filemanager = $config['homedir']; } @@ -820,8 +824,9 @@ function filemanager_file_explorer( if ($readOnly === false) { if (is_writable($real_directory) === true) { // The buttons to make actions. + $tabs_dialog = '
    '; if ($allowCreateFolder === true) { - $tabs_dialog = '
      + $tabs_dialog .= '
    • '.html_print_image( 'images/create_directory.png', diff --git a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php index ca7aaaa2d1..6376306fdc 100644 --- a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php +++ b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php @@ -109,5 +109,9 @@ filemanager_file_explorer( false, '', false, - ['allowCreateFolder' => true] + [ + 'all' => true, + 'denyCreateText' => true, + 'allowCreateFolder' => true, + ] ); From 5b0092c019598835be9f434c43525c6f25bbe9d7 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 4 May 2023 12:55:52 +0200 Subject: [PATCH 036/211] fix legacy VC pandora_enterprise#11054 --- .../godmode/setup/setup_visuals.php | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index dc7d91872d..caee126804 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -70,6 +70,10 @@ html_print_input_hidden('update_config', 1); $performance_variables_control = (array) json_decode(io_safe_output($config['performance_variables_control'])); +echo "'; + // ---------------------------------------------------------------------- // BEHAVIOUR CONFIGURATION // ---------------------------------------------------------------------- @@ -2243,9 +2247,22 @@ $(document).ready (function () { // Show the cache expiration conf or not. $("input[name=legacy_vc]").change(function (e) { if ($(this).prop("checked") === true) { - $("select#vc_default_cache_expiration_select").closest("tr").hide(); + $("select#vc_default_cache_expiration_select").closest("td").hide(); + $("#dialog-legacy-vc").dialog({ + modal: true, + width: 500, + buttons:[ + { + class: 'ui-widget ui-state-default ui-corner-all ui-button-text-only sub upd submit-next', + text: "", + click: function(){ + $(this).dialog("close"); + } + } + ] + }); } else { - $("select#vc_default_cache_expiration_select").closest("tr").show(); + $("select#vc_default_cache_expiration_select").closest("td").show(); } }).change(); From 75eae248a5da34f7b58b8e7ee7f1431621abc2a2 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 4 May 2023 13:27:34 +0200 Subject: [PATCH 037/211] fixed visual errors in legacy VC pandora_enterprise#11054 --- .../operation/visual_console/legacy_view.php | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/pandora_console/operation/visual_console/legacy_view.php b/pandora_console/operation/visual_console/legacy_view.php index dab3ab39e7..1ded04792e 100644 --- a/pandora_console/operation/visual_console/legacy_view.php +++ b/pandora_console/operation/visual_console/legacy_view.php @@ -192,37 +192,37 @@ $options['view']['text'] = ''.html_print_image( + 'images/full_screen.png', + true, + [ + 'title' => __('Full screen mode'), + 'class' => 'invert_filter', + ] + ).''; + + ui_print_standard_header( + $layout_name, + 'images/visual_console.png', + false, + 'visual_console_view', + false, + $options, + [ + [ + 'link' => '', + 'label' => __('Topology maps'), + ], + [ + 'link' => '', + 'label' => __('Visual console'), + ], + ] + ); +} + if (!is_metaconsole()) { - if (!$config['pure']) { - $options['pure']['text'] = ''.html_print_image( - 'images/full_screen.png', - true, - [ - 'title' => __('Full screen mode'), - 'class' => 'invert_filter', - ] - ).''; - - ui_print_standard_header( - $layout_name, - 'images/visual_console.png', - false, - 'visual_console_view', - false, - $options, - [ - [ - 'link' => '', - 'label' => __('Topology maps'), - ], - [ - 'link' => '', - 'label' => __('Visual console'), - ], - ] - ); - } - // Set the hidden value for the javascript. html_print_input_hidden('metaconsole', 0); } else { From 8ee97ba7e0316fbf961c98d74c04547c51badcba Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 4 May 2023 14:15:58 +0200 Subject: [PATCH 038/211] #10355 fixed ldap timeout --- pandora_console/include/auth/mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 8c1e27f0f9..291f064e73 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -1596,7 +1596,7 @@ function local_ldap_search( } $dn = ' -b '.escapeshellarg($dn); - $ldapsearch_command = 'ldapsearch -LLL -o ldif-wrap=no -o nettimeout='.$ldap_search_time.' -x'.$ldap_host.$ldap_version.' -E pr=10000/noprompt '.$ldap_admin_user.$ldap_admin_pass.$dn.$filter.$tls.' | grep -v "^#\|^$" | sed "s/:\+ /=>/g"'; + $ldapsearch_command = 'timeout '.$ldap_search_time.' ldapsearch -LLL -o ldif-wrap=no -o nettimeout='.$ldap_search_time.' -x'.$ldap_host.$ldap_version.' -E pr=10000/noprompt '.$ldap_admin_user.$ldap_admin_pass.$dn.$filter.$tls.' | grep -v "^#\|^$" | sed "s/:\+ /=>/g"'; $shell_ldap_search = explode("\n", shell_exec($ldapsearch_command)); foreach ($shell_ldap_search as $line) { $values = explode('=>', $line); From 9ab908737798ae91b2595bc7fa11f33a3489f7a2 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 4 May 2023 16:48:20 +0200 Subject: [PATCH 039/211] #11098 The Create agent module button is enabled --- .../godmode/agentes/module_manager_editor_network.php | 1 + pandora_console/include/javascript/pandora_snmp_browser.js | 2 +- pandora_console/operation/snmpconsole/snmp_browser.php | 6 ++++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 464fff7c67..b1a120d4da 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -28,6 +28,7 @@ global $config; require_once $config['homedir'].'/include/class/CredentialStore.class.php'; +require_once $config['homedir'].'/operation/snmpconsole/snmp_browser.php'; require_once $config['homedir'].'/include/functions_snmp_browser.php'; $snmp_browser_path = (is_metaconsole() === true) ? '../../' : ''; $snmp_browser_path .= 'include/javascript/pandora_snmp_browser.js'; diff --git a/pandora_console/include/javascript/pandora_snmp_browser.js b/pandora_console/include/javascript/pandora_snmp_browser.js index 5f478e2947..c8dc331ff4 100644 --- a/pandora_console/include/javascript/pandora_snmp_browser.js +++ b/pandora_console/include/javascript/pandora_snmp_browser.js @@ -258,7 +258,7 @@ function snmpGet(oid) { var ajax_url = $("#hidden-ajax_url").val(); var server_to_exec = $("#server_to_exec").val(); var target_port = $("#target_port").val(); - var print_create_agent_module = $("#print_create_agent_module").val(); + var print_create_agent_module = true; // Check for a custom action var custom_action = $("#hidden-custom_action").val(); diff --git a/pandora_console/operation/snmpconsole/snmp_browser.php b/pandora_console/operation/snmpconsole/snmp_browser.php index 27768a5646..cb5306f291 100644 --- a/pandora_console/operation/snmpconsole/snmp_browser.php +++ b/pandora_console/operation/snmpconsole/snmp_browser.php @@ -93,7 +93,9 @@ ui_print_standard_header( ); // SNMP tree container. -snmp_browser_print_container(false, '100%', '60%', '', true, true); +if (!isset($_GET['tab'])) { + snmp_browser_print_container(false, '100%', '60%', '', true, true); +} // Div for modal. echo ''; @@ -668,7 +670,7 @@ function show_add_module() { $("#snmp_create_module").append(input); }); - +console.log(input); //Submit form to agent module url. $("#snmp_create_module").attr( "action", From 77be60e4a30699cf82627023b7ea9cb25a09ede6 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 4 May 2023 18:24:11 +0200 Subject: [PATCH 040/211] fixed modules adopted pandora_enterprise#11103 --- pandora_console/godmode/agentes/module_manager.php | 6 +++--- pandora_console/include/ajax/module.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 3cb5ce9787..f86167294c 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -830,8 +830,8 @@ if ($modules !== false) { $linked = policies_is_module_linked($module['id_agente_modulo']); $adopt = policies_is_module_adopt($module['id_agente_modulo']); - if ($linked !== false) { - if ($adopt === true) { + if ((bool) $linked !== false) { + if ((bool) $adopt === true) { $img = 'images/policies_brick.png'; $title = '('.__('Adopted').') '.$policyInfo['name_policy']; } else { @@ -839,7 +839,7 @@ if ($modules !== false) { $title = $policyInfo['name_policy']; } } else { - if ($adopt === true) { + if ((bool) $adopt === true) { $img = 'images/policies_not_brick.png'; $title = '('.__('Unlinked').') ('.__('Adopted').') '.$policyInfo['name_policy']; } else { diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 78751eb001..f4a2e66fdd 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1058,8 +1058,8 @@ if (check_login()) { $policyInfo = policies_info_module_policy($module['id_policy_module']); $adopt = policies_is_module_adopt($module['id_agente_modulo']); - if ($linked === true) { - if ($adopt === true) { + if ((bool) $linked === true) { + if ((bool) $adopt === true) { $img = 'images/policies_brick.png'; $title = '('.__('Adopted').') '.$name_policy; } else { @@ -1067,7 +1067,7 @@ if (check_login()) { $title = $name_policy; } } else { - if ($adopt === true) { + if ((bool) $adopt === true) { $img = 'images/policies_not_brick.png'; $title = '('.__('Unlinked').') ('.__('Adopted').') '.$name_policy; } else { From 82db353dd14309dca3af98c1bb332161e506fb3f Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Fri, 5 May 2023 14:10:41 +0200 Subject: [PATCH 041/211] #11098 The operation of the create module button from the SNPM Walk modal is adjusted --- .../agentes/module_manager_editor_network.php | 2 +- .../include/functions_snmp_browser.php | 8 + .../javascript/pandora_snmp_browser.js | 4 +- .../operation/snmpconsole/snmp_browser.php | 211 +++++++++++------- 4 files changed, 145 insertions(+), 80 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index b1a120d4da..d6a76f3cba 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -311,7 +311,7 @@ $data[2] .= html_print_button( __('SNMP Walk'), 'snmp_walk', false, - 'snmpBrowserWindow()', + 'snmpBrowserWindow('.$id_agente.')', [ 'mode' => 'link' ], true ); diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index 091793f940..1634bf7a9b 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -1126,6 +1126,14 @@ function snmp_browser_print_container( $output .= '
      '; $output .= '
      '; $output .= ''; + $output .= html_print_input_hidden( + 'id_agent_module', + 0, + true, + false, + false, + 'id_agent_module' + ); $output .= html_print_table($table, true); $output .= html_print_div( [ diff --git a/pandora_console/include/javascript/pandora_snmp_browser.js b/pandora_console/include/javascript/pandora_snmp_browser.js index c8dc331ff4..58a1972c40 100644 --- a/pandora_console/include/javascript/pandora_snmp_browser.js +++ b/pandora_console/include/javascript/pandora_snmp_browser.js @@ -533,7 +533,7 @@ function checkSNMPVersion() { } // Show the SNMP browser window -function snmpBrowserWindow() { +function snmpBrowserWindow(id_agente = 0) { // Keep elements in the form and the SNMP browser synced $("#text-target_ip").val($("#text-ip_target").val()); $("#target_port").val($("#text-tcp_port").val()); @@ -549,6 +549,8 @@ function snmpBrowserWindow() { $("#password-snmp3_browser_privacy_pass").val( $("#password-snmp3_privacy_pass").val() ); + // Realation agente module. + $("#id_agent_module").val(id_agente); checkSNMPVersion(); diff --git a/pandora_console/operation/snmpconsole/snmp_browser.php b/pandora_console/operation/snmpconsole/snmp_browser.php index cb5306f291..e8b8ed71ac 100644 --- a/pandora_console/operation/snmpconsole/snmp_browser.php +++ b/pandora_console/operation/snmpconsole/snmp_browser.php @@ -609,87 +609,142 @@ function show_add_module() { var id_agent = 0; var id_module = 0; + var id_agent_module = $("#id_agent_module").val(); + + if (id_agent_module) { + // Get SNMP target. + confirmDialog({ + title: '', + message: ' ', + ok: '', + cancel: '', + onAccept: function() { + + // Get SNMP target. + var snmp_target = { + target_ip : $('#text-target_ip').val(), + community : $('#text-community').val(), + snmp_version : $('#snmp_browser_version').val(), + snmp3_auth_user : $('#text-snmp3_browser_auth_user').val(), + snmp3_security_level : $('#snmp3_browser_security_level').val(), + snmp3_auth_method : $('#snmp3_browser_auth_method').val(), + snmp3_auth_pass : $('#password-snmp3_browser_auth_pass').val(), + snmp3_privacy_method : $('#snmp3_browser_privacy_method').val(), + snmp3_privacy_pass : $('#password-snmp3_browser_privacy_pass').val(), + tcp_port : $('#target_port').val(), + }; + + // Append values to form. + var input = ""; + + $.each( snmp_target, function( key, val ) { + input = $("") + .attr("type", "hidden") + .attr("name", key).val(val); + + $("#snmp_create_module").append(input); + }); + + //Submit form to agent module url. + $("#snmp_create_module").attr( + "action", + "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" + +id_agent_module+ + "&tab=module&edit_module=1" + ); + + $('#snmp_create_module').submit(); - $("#dialog_create_module").dialog({ - resizable: true, - draggable: true, - modal: true, - width: '300', - height:'auto', - overlay: { - opacity: 0.5, - background: "black" - }, - buttons: - [ - { - class: "ui-widget ui-state-default ui-corner-all ui-button-text-only sub ok submit-cancel", - text: '', - click: function() { - $(this).dialog("close"); - } }, - - { - class: "ui-widget ui-state-default ui-corner-all ui-button-text-only sub ok submit-next", - text: '', - click: function(e) { - - confirmDialog({ - title: '', - message: ' ', - ok: '', - cancel: '', - onAccept: function() { - - // Get id agent and add it to form. - id_agent = $('#hidden-id_agent').val(); - - // Get SNMP target. - var snmp_target = { - - target_ip : $('#text-target_ip').val(), - community : $('#text-community').val(), - snmp_version : $('#snmp_browser_version').val(), - snmp3_auth_user : $('#text-snmp3_browser_auth_user').val(), - snmp3_security_level : $('#snmp3_browser_security_level').val(), - snmp3_auth_method : $('#snmp3_browser_auth_method').val(), - snmp3_auth_pass : $('#password-snmp3_browser_auth_pass').val(), - snmp3_privacy_method : $('#snmp3_browser_privacy_method').val(), - snmp3_privacy_pass : $('#password-snmp3_browser_privacy_pass').val(), - tcp_port : $('#target_port').val(), - }; - - // Append values to form. - var input = ""; - - $.each( snmp_target, function( key, val ) { - input = $("") - .attr("type", "hidden") - .attr("name", key).val(val); - - $("#snmp_create_module").append(input); - }); -console.log(input); - //Submit form to agent module url. - $("#snmp_create_module").attr( - "action", - "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" - +id_agent+ - "&tab=module&edit_module=1" - ); - - $('#snmp_create_module').submit(); - }, - onDeny: function () { - $("#dialog_create_module").dialog("close"); - return false; - } - }); - } + onDeny: function () { + $("#dialog_create_module").dialog("close"); + return false; } - ], - }); + }); + + } else { + + $("#dialog_create_module").dialog({ + resizable: true, + draggable: true, + modal: true, + width: '300', + height:'auto', + overlay: { + opacity: 0.5, + background: "black" + }, + buttons: + [ + { + class: "ui-widget ui-state-default ui-corner-all ui-button-text-only sub ok submit-cancel", + text: '', + click: function() { + $(this).dialog("close"); + } + }, + + { + class: "ui-widget ui-state-default ui-corner-all ui-button-text-only sub ok submit-next", + text: '', + click: function(e) { + + confirmDialog({ + title: '', + message: ' ', + ok: '', + cancel: '', + onAccept: function() { + + // Get id agent and add it to form. + id_agent = $('#hidden-id_agent').val(); + + // Get SNMP target. + var snmp_target = { + + target_ip : $('#text-target_ip').val(), + community : $('#text-community').val(), + snmp_version : $('#snmp_browser_version').val(), + snmp3_auth_user : $('#text-snmp3_browser_auth_user').val(), + snmp3_security_level : $('#snmp3_browser_security_level').val(), + snmp3_auth_method : $('#snmp3_browser_auth_method').val(), + snmp3_auth_pass : $('#password-snmp3_browser_auth_pass').val(), + snmp3_privacy_method : $('#snmp3_browser_privacy_method').val(), + snmp3_privacy_pass : $('#password-snmp3_browser_privacy_pass').val(), + tcp_port : $('#target_port').val(), + }; + + // Append values to form. + var input = ""; + + $.each( snmp_target, function( key, val ) { + input = $("") + .attr("type", "hidden") + .attr("name", key).val(val); + + $("#snmp_create_module").append(input); + }); + + //Submit form to agent module url. + $("#snmp_create_module").attr( + "action", + "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" + +id_agent+ + "&tab=module&edit_module=1" + ); + + $('#snmp_create_module').submit(); + }, + onDeny: function () { + $("#dialog_create_module").dialog("close"); + return false; + } + }); + } + } + ], + }); + } } From a13560597c4ddb230c39530baad8539442ec1b33 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 8 May 2023 10:41:26 +0200 Subject: [PATCH 042/211] #11113 Fix html_print_input_text --- .../godmode/agentes/module_manager_editor_common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 1f0f3c59c2..52fd74d934 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -509,7 +509,7 @@ $tableBasicThresholds->data['warning_threshold'][0] .= html_print_input_text( 10, 1024, true, - $disabledBecauseInPolicy || $edit === false, + $disabledBecauseInPolicy, false, '', $classdisabledBecauseInPolicy From ddeea2f7eca8ed28fec6bfe0937e46578655e2c9 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 8 May 2023 13:54:31 +0200 Subject: [PATCH 043/211] #11087 Fix incorrect id in JS code --- .../agentes/planned_downtime.editor.php | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php index f3bea0aa78..ce9703ca8f 100644 --- a/pandora_console/godmode/agentes/planned_downtime.editor.php +++ b/pandora_console/godmode/agentes/planned_downtime.editor.php @@ -1430,10 +1430,10 @@ ui_print_spinner('Loading'); $table = new stdClass(); $table->id = 'editor'; $table->width = '100%'; -$table->colspan['module'][1] = '5'; +$table->colspan['module'][1] = '6'; $table->data = []; $table->data['module'] = []; -$table->data['module'][0] = ''; +// $table->data['module'][0] = ''; $table->data['module'][1] = '

      '.__('Modules').'

      '; // List of modules, empty, it is populated by javascript. @@ -1457,7 +1457,7 @@ $table->data['module'][1] = " [ 'border' => '0', 'alt' => __('Delete'), - 'class' => 'invert_filter', + 'class' => 'main_menu_icon invert_filter', ] ).''." @@ -1781,7 +1781,6 @@ function insert_downtime_agent($id_downtime, $user_groups_ad) //Avoid freak states. if (action_in_progress) return; - //Check if the row editor module exists if ($('#loading_' + id_agent).length > 0) { //The row exists @@ -1791,7 +1790,6 @@ function insert_downtime_agent($id_downtime, $user_groups_ad) if ($('#module_editor_' + id_agent).length == 0) { $("#list-agent_" + id_agent).after( $("#loading-loading").clone().attr('id', 'loading_' + id_agent)); - jQuery.post ('ajax.php', {"page": "include/ajax/planned_downtime.ajax", "get_modules_downtime": 1, @@ -1801,15 +1799,15 @@ function insert_downtime_agent($id_downtime, $user_groups_ad) function (data) { if (data['correct']) { //Check if the row editor module exists - if ($('#loading_' + id_agent).length > 0) { + if ($('#list-agent_' + id_agent).length > 0) { //The row exists - $('#loading_' + id_agent).remove(); - + //$('#loading_' + id_agent).remove(); + $("#list-agent_" + id_agent).after( $("#editor-module").clone() .attr('id', 'module_editor_' + id_agent) .hide()); - + fill_row_editor(id_agent, data); } } @@ -2041,7 +2039,7 @@ function insert_downtime_agent($id_downtime, $user_groups_ad) var datetime_from = ; var datetime_now = ; var create = ; - if (!create && (type_execution == 'periodically' || (type_execution == 'once' && datetime_from < datetime_now))) { + if (!create && (type_execution == 'periodically' && (type_execution == 'once' && datetime_from < datetime_now))) { $("input#submit-updbutton, input#submit-add_item, table#list a").click(function (e) { if (!confirm("")) { e.preventDefault(); From c5b2835215597abbb79db6dc3ebd1771f6d1e2d6 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 8 May 2023 15:37:49 +0200 Subject: [PATCH 044/211] #11119 change visual list of modules agent --- .../operation/agentes/estado_monitores.php | 29 ++++++------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index 4edd12ee5f..52a93fde85 100755 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -187,16 +187,13 @@ html_print_div( 'class' => 'agent_details_line', 'content' => ui_toggle( $html_toggle, - __('List of modules').' '.$help_not_init.ui_print_help_tip( - __('To see the list of modules paginated, enable this option in the Styles Configuration.'), - true - ).reporting_tiny_stats( + ''.__('List of modules').' '.$help_not_init.reporting_tiny_stats( $agent, true, 'modules', ':', true, - ), + ).'', 'status_monitor_agent', false, false, @@ -549,7 +546,8 @@ function print_form_filter_monitors( $table->size[0] = '25%'; $table->size[1] = '25%'; $table->size[2] = '25%'; - $table->size[3] = '25%'; + $table->size[3] = '15%'; + $table->size[4] = '10%'; // Captions. $table->data[0][0] = html_print_label_input_block( html_print_input_hidden('filter_monitors', 1, true).html_print_input_hidden( @@ -618,11 +616,7 @@ function print_form_filter_monitors( ) ); - $form_text = html_print_table($table, true); - - $filtersButtons = []; - - $filtersButtons[] = html_print_button( + $table->data[0][4] = html_print_button( __('Filter'), 'filter', false, @@ -633,9 +627,7 @@ function print_form_filter_monitors( 'style' => 'margin-left: 15px', ], true - ); - - $filtersButtons[] = html_print_button( + ).html_print_button( __('Reset'), 'filter', false, @@ -646,6 +638,9 @@ function print_form_filter_monitors( ], true ); + $table->cellstyle[0][4] = 'width:20%;display: flex;flex-direction: row-reverse;justify-content: flex-end;height: 60px;align-items: flex-end;width:10%;'; + + $form_text = html_print_table($table, true); // TODO. Unused code. if ($status_filter_monitor === -1 && empty($status_text_monitor) === true && $status_module_group === -1) { @@ -655,10 +650,4 @@ function print_form_filter_monitors( } echo $form_text; - html_print_div( - [ - 'class' => 'action-buttons-right-forced', - 'content' => implode('', $filtersButtons), - ] - ); } From ee427d2694541b00e869e4e23a3f9235c21bf611 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 8 May 2023 16:54:27 +0200 Subject: [PATCH 045/211] #11117 Add conditional to exclude some values from metaconsole --- pandora_console/include/auth/mysql.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 8c1e27f0f9..bb2e51bc73 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -801,6 +801,12 @@ function update_user(string $id_user, array $values) return false; } + if (is_metaconsole() === true) { + unset($values['id_skin']); + unset($values['section']); + unset($values['default_event_filter']); + } + $output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]); if (isset($values['is_admin']) === true && (bool) $values['is_admin'] === true) { From f91c594bb72a2fa64805a957a9edd98ab79f635f Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 9 May 2023 11:25:10 +0200 Subject: [PATCH 046/211] #11136 Change color code to STATUS_SERVER_DOWN --- pandora_console/include/functions_modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 385db94ef8..26e63c5975 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -2831,7 +2831,7 @@ function modules_get_color_status($status, $force_module=false) case STATUS_SERVER_DOWN: case STATUS_SERVER_DOWN_BALL: - return '#444'; + return '#B2B2B2'; default: // Ignored. From 0fe67bf05a79f8012de34604cb1bbc7bd363b613 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 10 May 2023 10:41:59 +0200 Subject: [PATCH 047/211] #11159 incresed size password --- pandora_console/godmode/users/user_management.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/users/user_management.php b/pandora_console/godmode/users/user_management.php index 45c54306ce..9e227cf9ef 100644 --- a/pandora_console/godmode/users/user_management.php +++ b/pandora_console/godmode/users/user_management.php @@ -272,7 +272,7 @@ $passwordManageTable->data['fields_newpassword'][0] = html_print_input_text_exte 'password_new', '', '25', - '45', + '150', $view_mode, '', [ @@ -291,7 +291,7 @@ $passwordManageTable->data['fields_repeatpassword'][0] = html_print_input_text_e 'password_conf', '', '20', - '45', + '150', $view_mode, '', [ @@ -311,7 +311,7 @@ if ($new_user === false) { 'own_password_confirm', '', '20', - '45', + '150', $view_mode, '', [ From c0fb7f0f9174957a675e16a6a7505c8cd5d73983 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 11 May 2023 10:42:30 +0200 Subject: [PATCH 048/211] #11170 show module delete confirmation --- pandora_console/godmode/agentes/module_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 0be7b555c7..4b4531b23c 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -1005,7 +1005,7 @@ if ($modules !== false) { $data[8] .= html_print_menu_button( [ 'href' => 'index.php?sec=gagente&tab=module&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'&delete_module='.$module['id_agente_modulo'], - 'onClick' => "if (!confirm(\' '.__('Are you sure?').'\')) return false;", + 'onClick' => 'javascript: if (!confirm(\''.__('Are you sure?').'\')) return false;', 'image' => 'images/delete.svg', 'title' => __('Delete'), ], From b58a3a79fc8c59069cda7294e132af302fcacfc8 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 11 May 2023 11:39:20 +0200 Subject: [PATCH 049/211] #11142 Fix group view table --- pandora_console/operation/agentes/group_view.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/agentes/group_view.php b/pandora_console/operation/agentes/group_view.php index a1db772a47..3f0d4678fe 100644 --- a/pandora_console/operation/agentes/group_view.php +++ b/pandora_console/operation/agentes/group_view.php @@ -229,6 +229,9 @@ if (empty($result_groups) === false) { echo ''; echo ''; + echo ''; + echo ''; + echo ''; echo ''; echo ''; echo ''; @@ -238,13 +241,13 @@ if (empty($result_groups) === false) { echo ''; echo "'; echo "'; - echo "'; + echo "'; echo "'; echo "'; echo "'; echo "'; echo "'; - echo "'; + echo "'; echo "'; echo "'; echo "'; From b76635a54a1599db2a28faa943eb1c1babf9178f Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 11 May 2023 11:56:42 +0200 Subject: [PATCH 050/211] #11140 wizzard module agent status unknow --- pandora_console/include/functions_clippy.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php index 94d3c2da85..8dbaaaa780 100644 --- a/pandora_console/include/functions_clippy.php +++ b/pandora_console/include/functions_clippy.php @@ -303,15 +303,13 @@ function clippy_context_help($help=null) - - - - - - - - -
      - -
      - - - -
      '; -} - -/** - * Check if file exist and print a - * new row in the table with the result - * - * @param string $file File. - * @param string $label Label file. - * - * @return integer status - */ -function check_exists($file, $label) -{ - echo ''; -} - - -/** - * Check variable ok and return row - * with 'checked' if is 1 or 'incomplete' if is 0 - * - * @param integer $ok Status. - * @param string $label Label to show. - * - * @return integer status - */ -function check_generic($ok, $label) -{ - echo ''; - echo ''; - return 1; - } else { - echo " $label "; - echo ''; - echo ''; - return 0; - } -} - - -/** - * Check if path is writable and print a - * new row in the table with the result. - * - * @param string $fullpath Path folder or file. - * @param string $label Label to show. - * - * @return integer status - */ -function check_writable($fullpath, $label) -{ - echo ''; - echo ''; - echo ''; - return 0; - } else { - echo " $label "; - echo ''; - echo ''; - echo ''; - return 1; - } - } else { - echo " $label "; - echo ''; - echo ''; - return 1; - } -} - - -/** - * Check if $var is equal to $value and - * print result in a row. - * - * @param string $var Variable. - * @param string $value Value to check. - * @param string $label Label to show. - * @param integer $mode Mode. - * - * @return integer status - */ -function check_variable($var, $value, $label, $mode) -{ - echo ''; -} - - -function parse_mysql_dump($url) -{ - if (file_exists($url)) { - $file_content = file($url); - $query = ''; - foreach ($file_content as $sql_line) { - if (trim($sql_line) != '' && strpos($sql_line, '-- ') === false) { - $query .= $sql_line; - if (preg_match("/;[\040]*\$/", $sql_line)) { - if (!$result = mysql_query($query)) { - echo mysql_error(); - // Uncomment for debug - echo "
      $query
      "; - return 0; - } - - $query = ''; - } - } - } - - return 1; - } else { - return 0; - } -} - - -/** - * Parse sql to script dump, execute it - * and return if exist error. - * - * @param object $connection Connection sql. - * @param string $url Path file sql script. - * - * @return integer status - */ -function parse_mysqli_dump($connection, $url) -{ - if (file_exists($url)) { - $file_content = file($url); - $query = ''; - foreach ($file_content as $sql_line) { - if (trim($sql_line) != '' && strpos($sql_line, '-- ') === false) { - $query .= $sql_line; - if (preg_match("/;[\040]*\$/", $sql_line)) { - if (!$result = mysqli_query($connection, $query)) { - if (mysqli_error($connection)) { - return mysqli_error($connection).'
      '.$query.'
      '; - } - - return 0; - } - - $query = ''; - } - } - } - - return 1; - } else { - return 0; - } -} - - -/** - * Generate a random password - * - * Admits a huge mount of ASCII chars. - * - * @param integer $size Size of the password returned. - * - * @return string $output - */ -function random_name(int $size) -{ - $output = ''; - - // Range pair of ASCII position for allow A-Z, a-z, 0-9 and special chars. - $rangeSeed = [ - '48:57', - '65:90', - '97:122', - '40:47', - ]; - - // Size of the password must be over range seed count. - $size = ($size >= count($rangeSeed)) ? $size : count($rangeSeed); - - $auxIndex = 0; - for ($i = 0; $i < $size; $i++) { - $tmpSeedValues = explode(':', $rangeSeed[$auxIndex]); - $output = $output.chr(rand($tmpSeedValues[1], $tmpSeedValues[0])); - $auxIndex++; - if ($auxIndex >= 4) { - $auxIndex = 0; - } - } - - // Remix the string for strong the password. - return str_shuffle($output); -} - - -/** - * Print the header installation - * - * @param integer $step Number of step. - * - * @return string Html output. - */ -function print_logo_status($step) -{ - global $banner; - - $header = ' -
      -

      Pandora FMS OpenSource Installer - '.$banner.' -

      -
      - 1 -
      - 2 -
      - 3 -
      - 4 -
      - 5 -
      - 6 - -
      -
      - '; - - return $header; -} - - -/** - * This function adjusts path settings in pandora db for FreeBSD. - * All packages and configuration files except operating system's base files - * are installed under /usr/local in FreeBSD. So, path settings in pandora db - * for some programs should be changed from the Linux default. - * - * @param string $engine Type of engine. - * @param object $connection Connection database. - * - * @return integer Status. - */ -function adjust_paths_for_freebsd($engine, $connection=false) -{ - $adjust_sql = [ - "update trecon_script set script = REPLACE(script,'/usr/share','/usr/local/share');", - "update tconfig set value = REPLACE(value,'/usr/bin','/usr/local/bin') where token='netflow_daemon' OR token='netflow_nfdump' OR token='netflow_nfexpire';", - "update talert_commands set command = REPLACE(command,'/usr/bin','/usr/local/bin');", - "update talert_commands set command = REPLACE(command,'/usr/share', '/usr/local/share');", - "update tplugin set execute = REPLACE(execute,'/usr/share','/usr/local/share');", - "update tevent_response set target = REPLACE(target,'/usr/share','/usr/local/share');", - "insert into tconfig (token, value) VALUES ('graphviz_bin_dir', '/usr/local/bin');", - ]; - - for ($i = 0; $i < count($adjust_sql); $i++) { - switch ($engine) { - case 'mysql': - $result = mysql_query($adjust_sql[$i]); - break; - - case 'mysqli': - $result = mysqli_query($connection, $adjust_sql[$i]); - break; - - case 'oracle': - // Delete the last semicolon from current query - $query = substr($adjust_sql[$i], 0, (strlen($adjust_sql[$i]) - 1)); - $sql = oci_parse($connection, $query); - $result = oci_execute($sql); - break; - - case 'pgsql': - pg_send_query($connection, $adjust_sql[$i]); - $result = pg_get_result($connection); - break; - } - - if (!$result) { - return 0; - } - } - - return 1; -} - - -/** - * Print all step 1 - * - * @return void - */ -function install_step1() -{ - echo " -
      -
      - ".print_logo_status(1, 6)." -
      -
      -
      -

      Welcome to Pandora FMS installation Wizard

      -

      This wizard helps you to quick install Pandora FMS console and main database in your system. - In four steps, this installer will check all dependencies and will create your configuration, ready to use.

      -

      For more information, please refer to documentation →

      - "; - if (file_exists('include/config.php')) { - echo "
      You already have a config.php file. - Configuration and database would be overwritten if you continued.
      "; - } - - echo '
      '; - echo '
      '.__('Total items').': '.$count.'
      '.__('Agents').'
      ".__('Force').'".__('Group').'/'.__('Tags').'".__('Total').'".__('Total').'".__('Unknown').'".__('Not init').'".__('Normal').'".__('Warning').'".__('Critical').'".__('Unknown').'".__('Unknown').'".__('Not init').'".__('Normal').'".__('Warning').''; - echo " $label "; - echo ''; - if (!extension_loaded($ext)) { - echo "incomplete"; - return 1; - } else { - echo "checked"; - return 0; - } - - echo '
      '; - echo " $label "; - echo ''; - if (!file_exists($file)) { - echo " incomplete"; - return 1; - } else { - echo " checked"; - return 0; - } - - echo '
      '; - if ($ok == 0) { - echo " $label "; - echo ''; - echo " incomplete"; - echo '
      '; - echo " checked"; - echo '
      '; - if (file_exists($fullpath)) { - if (is_writable($fullpath)) { - echo " $label "; - echo ''; - echo "checked"; - echo '
      '; - echo "incomplete"; - echo '
      '; - echo "incomplete"; - echo '
      '; - echo " $label "; - echo ''; - if ($mode == 1) { - if ($var >= $value) { - echo "checked"; - return 0; - } else { - echo "incomplete"; - return 1; - } - } else if ($var == $value) { - echo "checked"; - return 0; - } else { - echo "incomplete"; - return 1; - } - - echo '
      '; - $writable = check_writable('include', './include is writable'); - if (file_exists('include/config.php')) { - $writable += check_writable('include/config.php', 'include/config.php is writable'); - } - - echo '
      '; - - echo "
      This installer will overwrite and destroy - your existing Pandora FMS configuration and Database. Before continue, - please be sure that you have no valuable Pandora FMS data in your Database.
      -
      "; - - if ($writable !== 0) { - echo "
      You need to setup permissions to be able to write in ./include directory
      "; - } - - echo '
      '; - - echo "
      "; - echo " -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
-
-
-
'; -} - - -/** - * Print license content - * - * @return void - */ -function install_step1_licence() -{ - echo " -
-
- ".print_logo_status(2, 6)." -
-

GPL2 Licence terms agreement

-

Pandora FMS is an OpenSource software project licensed under the GPL2 licence. Pandora FMS includes, as well, another software also licensed under LGPL and BSD licenses. Before continue, you must accept the licence terms.. -

For more information, please refer to our website at http://pandorafms.org and contact us if you have any kind of question about the usage of Pandora FMS

-

If you dont accept the licence terms, please, close your browser and delete Pandora FMS files.

- "; - - if (!file_exists('COPYING')) { - echo "
Licence file 'COPYING' is not present in your distribution. This means you have some 'partial' Pandora FMS distribution. We cannot continue without accepting the licence file."; - echo '
'; - } else { - echo "'; - echo '

'; - } - - echo '

'; - - echo "
-
-
'; -} - - -/** - * Print all step 2 - * - * @return void - */ -function install_step2() -{ - echo " -
-
- ".print_logo_status(3, 6)." -
"; - echo '

Checking software dependencies

'; - echo ' -
-
- '; - $res = 0; - $res += check_variable(phpversion(), '7.0', 'PHP version >= 7.0', 1); - $res += check_extension('gd', 'PHP GD extension'); - $res += check_extension('ldap', 'PHP LDAP extension'); - $res += check_extension('snmp', 'PHP SNMP extension'); - $res += check_extension('session', 'PHP session extension'); - $res += check_extension('gettext', 'PHP gettext extension'); - $res += check_extension('mbstring', 'PHP Multibyte String'); - $res += check_extension('zip', 'PHP Zip'); - $res += check_extension('zlib', 'PHP Zlib extension'); - $res += check_extension('json', 'PHP json extension'); - $res += check_extension('curl', 'CURL (Client URL Library)'); - $res += check_extension('filter', 'PHP filter extension'); - $res += check_extension('calendar', 'PHP calendar extension'); - if (PHP_OS == 'FreeBSD') { - $res += check_exists('/usr/local/bin/twopi', 'Graphviz Binary'); - } else if (PHP_OS == 'NetBSD') { - $res += check_exists('/usr/pkg/bin/twopi', 'Graphviz Binary'); - } else if (substr(PHP_OS, 0, 3) == 'WIN') { - $res += check_exists("..\\..\\..\\Graphviz\\bin\\twopi.exe", 'Graphviz Binary'); - } else { - $res += check_exists('/usr/bin/twopi', 'Graphviz Binary'); - } - - echo ''; - check_extension('mysqli', 'PHP MySQL(mysqli) extension'); - echo '
'; - echo "DB Engines"; - echo ''; - echo '
'; - if ($res > 0) { - echo "
-
You have some incomplete - dependencies. Please correct them or this installer - will not be able to finish your installation. -
-
- Remember, if you install any PHP module to comply - with these dependences, you need to restart - your HTTP/Apache server after it to use the new - modules. -
-
"; - } - - echo '
'; - echo "
-
-
'; -} - - -/** - * Print all step 3 - * - * @return void - */ -function install_step3() -{ - $options = []; - if (extension_loaded('mysql')) { - $options['mysql'] = 'MySQL'; - } - - if (extension_loaded('mysqli')) { - $options['mysqli'] = 'MySQL(mysqli)'; - } - - $error = false; - if (empty($options)) { - $error = true; - } - - echo " -
-
- ".print_logo_status(4, 6)." -
-
-
-

Environment and database setup

-

- This wizard will create your Pandora FMS database, - and populate it with all the data needed to run for the first time. -

-

- You need a privileged user to create database schema, this is usually root user. - Information about root user will not be used or stored anymore. -

-

- You can also deploy the scheme into an existing Database. - In this case you need a privileged Database user and password of that instance. -

-

- Now, please, complete all details to configure your database and environment setup. -

-
- This installer will overwrite and destroy your existing - Pandora FMS configuration and Database. Before continue, - please be sure that you have no valuable Pandora FMS data in your Database. -

-
"; - if ($error) { - echo "
- You haven't a any DB engine with PHP. Please check the previous step to DB engine dependencies. -
"; - } - - if (extension_loaded('oci8')) { - echo "
For Oracle installation an existing Database with a privileged user is needed.
"; - } - - echo '
'; - echo '
'; - if (!$error) { - echo ""; - } - - echo ""; - - if (!$error) { - echo ' - - - - - - - "; - - // the field dbgrant is only shown when the DB host is different from 127.0.0.1 or localhost - echo " - - "; - - echo " - - "; - echo " - - - "; - - echo " - - "; - - echo '
'; - echo '

DB Engine

'; - - echo ''; - - echo ''; - - echo '
'; - echo '

Installation in

'; - - echo ''; - - echo ''; - } - - echo "
-

DB User with privileges

- -
-

DB Password for this user

- -
-

DB Hostname

- -
-

DB Name (pandora by default)

- -
-

Full path to HTTP publication directory

-

For example /var/www/pandora_console/

- -
-

URL path to Pandora FMS Console

-

For example '/pandora_console'

- -
- -

Drop Database if exists

-
'; - - echo '
'; - - echo '
'; - echo '
'; - echo "
- '; -} - - -/** - * Print all step 4 - * - * @return void - */ -function install_step4() -{ - $pandora_config = 'include/config.php'; - - if ((! isset($_POST['user'])) || (! isset($_POST['dbname'])) || (! isset($_POST['host'])) - || (! isset($_POST['pass'])) || (!isset($_POST['engine'])) || (! isset($_POST['db_action'])) - ) { - $dbpassword = ''; - $dbuser = ''; - $dbhost = ''; - $dbname = ''; - $engine = ''; - $dbaction = ''; - $dbgrant = ''; - } else { - $engine = $_POST['engine']; - $dbpassword = $_POST['pass']; - $dbuser = $_POST['user']; - $dbhost = $_POST['host']; - $dbaction = $_POST['db_action']; - if (isset($_POST['dbgrant']) && $_POST['dbgrant'] != '') { - $dbgrant = $_POST['dbgrant']; - } else { - $dbgrant = $_SERVER['SERVER_ADDR']; - } - - if (isset($_POST['drop'])) { - $dbdrop = $_POST['drop']; - } else { - $dbdrop = 0; - } - - $dbname = $_POST['dbname']; - if (isset($_POST['url'])) { - $url = $_POST['url']; - } else { - $url = 'http://localhost'; - } - - if (isset($_POST['path'])) { - $path = $_POST['path']; - $path = str_replace('\\', '/', $path); - // Windows compatibility - } else { - $path = '/var/www'; - } - } - - $everything_ok = 0; - $step1 = 0; - $step2 = 0; - $step3 = 0; - $step4 = 0; - $step5 = 0; - $step6 = 0; - $step7 = 0; - $errors = []; - echo " -
-
- ".print_logo_status(5, 6)." -
-
-
- "; - switch ($engine) { - case 'mysql': - if (! mysql_connect($dbhost, $dbuser, $dbpassword)) { - check_generic(0, 'Connection with Database'); - } else { - check_generic(1, 'Connection with Database'); - - // Drop database if needed and don't want to install over an existing DB - if ($dbdrop == 1) { - mysql_query("DROP DATABASE IF EXISTS `$dbname`"); - } - - // Create schema - if ($dbaction == 'db_new' || $dbdrop == 1) { - $step1 = mysql_query("CREATE DATABASE `$dbname`"); - check_generic($step1, "Creating database '$dbname'"); - } else { - $step1 = 1; - } - - if ($step1 == 1) { - $step2 = mysql_select_db($dbname); - check_generic($step2, "Opening database '$dbname'"); - - $step3 = parse_mysql_dump('pandoradb.sql'); - - if ($step3 !== 0 && $step3 !== 1) { - $errors[] = $step3; - $step3 = 0; - } - - check_generic($step3, 'Creating schema'); - $step4 = parse_mysql_dump('pandoradb_data.sql'); - - if ($step4 !== 0 && $step4 !== 1) { - $errors[] = $step4; - $step4 = 0; - } - - check_generic($step4, 'Populating database'); - if (PHP_OS == 'FreeBSD') { - $step_freebsd = adjust_paths_for_freebsd($engine); - check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); - } - - $random_password = random_name(8); - $host = $dbhost; - // set default granted origin to the origin of the queries - if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { - $host = $dbgrant; - // if the granted origin is different from local machine, set the valid origin - } - - $step5 = mysql_query( - "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host - IDENTIFIED BY '".$random_password."'" - ); - mysql_query('FLUSH PRIVILEGES'); - check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); - - $step6 = is_writable('include'); - check_generic($step6, "Write permissions to save config file in './include'"); - - $cfgin = fopen('include/config.inc.php', 'r'); - $cfgout = fopen($pandora_config, 'w'); - $config_contents = fread($cfgin, filesize('include/config.inc.php')); - $dbtype = 'mysql'; - $config_new = ''; - $step7 = fputs($cfgout, $config_new); - $step7 = ($step7 + fputs($cfgout, $config_contents)); - if ($step7 > 0) { - $step7 = 1; - } - - fclose($cfgin); - fclose($cfgout); - chmod($pandora_config, 0600); - check_generic($step7, "Created new config file at '".$pandora_config."'"); - } - } - - if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { - $everything_ok = 1; - } - break; - - case 'mysqli': - $connection = mysqli_connect($dbhost, $dbuser, $dbpassword); - if (mysqli_connect_error() > 0) { - check_generic(0, 'Connection with Database'); - } else { - check_generic(1, 'Connection with Database'); - - // Drop database if needed and don't want to install over an existing DB - if ($dbdrop == 1) { - mysqli_query($connection, "DROP DATABASE IF EXISTS `$dbname`"); - } - - // Create schema - if ($dbaction == 'db_new' || $dbdrop == 1) { - $step1 = mysqli_query($connection, "CREATE DATABASE `$dbname`"); - check_generic($step1, "Creating database '$dbname'"); - } else { - $step1 = 1; - } - - if ($step1 == 1) { - $step2 = mysqli_select_db($connection, $dbname); - check_generic($step2, "Opening database '$dbname'"); - - $step3 = parse_mysqli_dump($connection, 'pandoradb.sql'); - if ($step3 !== 0 && $step3 !== 1) { - $errors[] = $step3; - $step3 = 0; - } - - check_generic($step3, 'Creating schema'); - - $step4 = parse_mysqli_dump($connection, 'pandoradb_data.sql'); - - if ($step4 !== 0 && $step4 !== 1) { - $errors[] = $step4; - $step4 = 0; - } - - check_generic($step4, 'Populating database'); - if (PHP_OS == 'FreeBSD') { - $step_freebsd = adjust_paths_for_freebsd($engine, $connection); - check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); - } - - $random_password = random_name(8); - $host = $dbhost; - // set default granted origin to the origin of the queries - if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { - $host = $dbgrant; - // if the granted origin is different from local machine, set the valid origin - } - - $step5 = mysqli_query( - $connection, - "CREATE USER IF NOT EXISTS pandora@$host" - ); - - mysqli_query( - $connection, - "SET PASSWORD FOR 'pandora'@'".$host."' = '".$random_password."'" - ); - - $step5 |= mysqli_query( - $connection, - "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host" - ); - mysqli_query($connection, 'FLUSH PRIVILEGES'); - check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); - - $step6 = is_writable('include'); - check_generic($step6, "Write permissions to save config file in './include'"); - - $cfgin = fopen('include/config.inc.php', 'r'); - $cfgout = fopen($pandora_config, 'w'); - $config_contents = fread($cfgin, filesize('include/config.inc.php')); - $dbtype = 'mysql'; - $config_new = ''; - $step7 = fputs($cfgout, $config_new); - $step7 = ($step7 + fputs($cfgout, $config_contents)); - if ($step7 > 0) { - $step7 = 1; - } - - fclose($cfgin); - fclose($cfgout); - chmod($pandora_config, 0600); - check_generic($step7, "Created new config file at '".$pandora_config."'"); - } - } - - if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { - $everything_ok = 1; - } - break; - } - - echo '
'; - echo '
'; - echo '
'; - echo "

Creating database and default configuration file

"; - if ($everything_ok !== 1) { - $info = ''; - - if (!empty($errors)) { - foreach ($errors as $key => $err) { - $info .= '
'.$err.'
'; - } - - $info .= "
If you use MySQL 8 make sure to include the - following parameter in your installation's my.cnf configuration file
- sql_mode=\"\"
"; - } - - $info .= "
There were some problems. - Installation was not completed. -

Please correct failures before trying again. - All database "; - - if ($engine == 'oracle') { - $info .= 'objects '; - } else { - $info .= 'schemes '; - } - - $info .= 'created in this step have been dropped.

-
'; - echo $info; - - switch ($engine) { - case 'mysql': - if (mysql_error() != '') { - echo "
".mysql_error().'.
'; - echo "
If you use MySQL 8 make sure to include the - following parameter in your installation's my.cnf configuration file
- sql_mode=\"\"
"; - } - - if ($step1 == 1) { - mysql_query("DROP DATABASE $dbname"); - } - break; - - case 'mysqli': - if ($connection && mysqli_error($connection) != '') { - echo "
".mysqli_error($connection).'.
'; - echo "
If you use MySQL 8 make sure to include the - following parameter in your installation's my.cnf configuration file
- sql_mode=\"\"
"; - } - - if ($step1 == 1) { - mysqli_query($connection, "DROP DATABASE $dbname"); - } - break; - } - } - - echo '
'; - echo '
'; - echo '
'; - echo " -
-
'; -} - - -/** - * Print all step 5 - * - * @return void - */ -function install_step5() -{ - echo " -
-
- ".print_logo_status(6, 6)." -
-

Installation complete

-

For security, you now must manually delete this installer - ('install.php') file before trying to access to your Pandora FMS console. -

You should also install Pandora FMS Servers before trying to monitor anything; - please read documentation on how to install it.

-

Default user is 'admin' with password 'pandora', - please change it both as soon as possible.

-

Don't forget to check http://pandorafms.com - for updates. -

Select if you want to rename 'install.php'.

-
- - -
-

-
-
-
- -
-
"; -} From c43ca929b8c3b60d044ce967d9bd3dc47c57479b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 13:30:03 +0200 Subject: [PATCH 063/211] Revert "#11222 Fix switch" This reverts commit be1186aab8beefb7878b2de1ab67bfc51b3393d9. --- pandora_console/install.php | 1348 +++++++++++++++++++++++++++++++++++ 1 file changed, 1348 insertions(+) create mode 100644 pandora_console/install.php diff --git a/pandora_console/install.php b/pandora_console/install.php new file mode 100644 index 0000000000..b38f383dbd --- /dev/null +++ b/pandora_console/install.php @@ -0,0 +1,1348 @@ + + + + + Pandora FMS - Installation Wizard + + + + + + + + + + + + + + + + + + +
+ +
+ + + +'; + echo " $label "; + echo ''; + if (!extension_loaded($ext)) { + echo "incomplete"; + return 1; + } else { + echo "checked"; + return 0; + } + + echo ''; +} + +/** + * Check if file exist and print a + * new row in the table with the result + * + * @param string $file File. + * @param string $label Label file. + * + * @return integer status + */ +function check_exists($file, $label) +{ + echo ''; + echo " $label "; + echo ''; + if (!file_exists($file)) { + echo " incomplete"; + return 1; + } else { + echo " checked"; + return 0; + } + + echo ''; +} + + +/** + * Check variable ok and return row + * with 'checked' if is 1 or 'incomplete' if is 0 + * + * @param integer $ok Status. + * @param string $label Label to show. + * + * @return integer status + */ +function check_generic($ok, $label) +{ + echo ''; + if ($ok == 0) { + echo " $label "; + echo ''; + echo " incomplete"; + echo ''; + echo ''; + return 1; + } else { + echo " $label "; + echo ''; + echo " checked"; + echo ''; + echo ''; + return 0; + } +} + + +/** + * Check if path is writable and print a + * new row in the table with the result. + * + * @param string $fullpath Path folder or file. + * @param string $label Label to show. + * + * @return integer status + */ +function check_writable($fullpath, $label) +{ + echo ''; + if (file_exists($fullpath)) { + if (is_writable($fullpath)) { + echo " $label "; + echo ''; + echo ''; + echo "checked"; + echo ''; + echo ''; + return 0; + } else { + echo " $label "; + echo ''; + echo ''; + echo "incomplete"; + echo ''; + echo ''; + return 1; + } + } else { + echo " $label "; + echo ''; + echo "incomplete"; + echo ''; + echo ''; + return 1; + } +} + + +/** + * Check if $var is equal to $value and + * print result in a row. + * + * @param string $var Variable. + * @param string $value Value to check. + * @param string $label Label to show. + * @param integer $mode Mode. + * + * @return integer status + */ +function check_variable($var, $value, $label, $mode) +{ + echo ''; + echo " $label "; + echo ''; + if ($mode == 1) { + if ($var >= $value) { + echo "checked"; + return 0; + } else { + echo "incomplete"; + return 1; + } + } else if ($var == $value) { + echo "checked"; + return 0; + } else { + echo "incomplete"; + return 1; + } + + echo ''; +} + + +function parse_mysql_dump($url) +{ + if (file_exists($url)) { + $file_content = file($url); + $query = ''; + foreach ($file_content as $sql_line) { + if (trim($sql_line) != '' && strpos($sql_line, '-- ') === false) { + $query .= $sql_line; + if (preg_match("/;[\040]*\$/", $sql_line)) { + if (!$result = mysql_query($query)) { + echo mysql_error(); + // Uncomment for debug + echo "
$query
"; + return 0; + } + + $query = ''; + } + } + } + + return 1; + } else { + return 0; + } +} + + +/** + * Parse sql to script dump, execute it + * and return if exist error. + * + * @param object $connection Connection sql. + * @param string $url Path file sql script. + * + * @return integer status + */ +function parse_mysqli_dump($connection, $url) +{ + if (file_exists($url)) { + $file_content = file($url); + $query = ''; + foreach ($file_content as $sql_line) { + if (trim($sql_line) != '' && strpos($sql_line, '-- ') === false) { + $query .= $sql_line; + if (preg_match("/;[\040]*\$/", $sql_line)) { + if (!$result = mysqli_query($connection, $query)) { + if (mysqli_error($connection)) { + return mysqli_error($connection).'
'.$query.'
'; + } + + return 0; + } + + $query = ''; + } + } + } + + return 1; + } else { + return 0; + } +} + + +/** + * Generate a random password + * + * Admits a huge mount of ASCII chars. + * + * @param integer $size Size of the password returned. + * + * @return string $output + */ +function random_name(int $size) +{ + $output = ''; + + // Range pair of ASCII position for allow A-Z, a-z, 0-9 and special chars. + $rangeSeed = [ + '48:57', + '65:90', + '97:122', + '40:47', + ]; + + // Size of the password must be over range seed count. + $size = ($size >= count($rangeSeed)) ? $size : count($rangeSeed); + + $auxIndex = 0; + for ($i = 0; $i < $size; $i++) { + $tmpSeedValues = explode(':', $rangeSeed[$auxIndex]); + $output = $output.chr(rand($tmpSeedValues[1], $tmpSeedValues[0])); + $auxIndex++; + if ($auxIndex >= 4) { + $auxIndex = 0; + } + } + + // Remix the string for strong the password. + return str_shuffle($output); +} + + +/** + * Print the header installation + * + * @param integer $step Number of step. + * + * @return string Html output. + */ +function print_logo_status($step) +{ + global $banner; + + $header = ' +
+

Pandora FMS OpenSource Installer + '.$banner.' +

+
+ 1 +
+ 2 +
+ 3 +
+ 4 +
+ 5 +
+ 6 + +
+
+ '; + + return $header; +} + + +/** + * This function adjusts path settings in pandora db for FreeBSD. + * All packages and configuration files except operating system's base files + * are installed under /usr/local in FreeBSD. So, path settings in pandora db + * for some programs should be changed from the Linux default. + * + * @param string $engine Type of engine. + * @param object $connection Connection database. + * + * @return integer Status. + */ +function adjust_paths_for_freebsd($engine, $connection=false) +{ + $adjust_sql = [ + "update trecon_script set script = REPLACE(script,'/usr/share','/usr/local/share');", + "update tconfig set value = REPLACE(value,'/usr/bin','/usr/local/bin') where token='netflow_daemon' OR token='netflow_nfdump' OR token='netflow_nfexpire';", + "update talert_commands set command = REPLACE(command,'/usr/bin','/usr/local/bin');", + "update talert_commands set command = REPLACE(command,'/usr/share', '/usr/local/share');", + "update tplugin set execute = REPLACE(execute,'/usr/share','/usr/local/share');", + "update tevent_response set target = REPLACE(target,'/usr/share','/usr/local/share');", + "insert into tconfig (token, value) VALUES ('graphviz_bin_dir', '/usr/local/bin');", + ]; + + for ($i = 0; $i < count($adjust_sql); $i++) { + switch ($engine) { + case 'mysql': + $result = mysql_query($adjust_sql[$i]); + break; + + case 'mysqli': + $result = mysqli_query($connection, $adjust_sql[$i]); + break; + + case 'oracle': + // Delete the last semicolon from current query + $query = substr($adjust_sql[$i], 0, (strlen($adjust_sql[$i]) - 1)); + $sql = oci_parse($connection, $query); + $result = oci_execute($sql); + break; + + case 'pgsql': + pg_send_query($connection, $adjust_sql[$i]); + $result = pg_get_result($connection); + break; + } + + if (!$result) { + return 0; + } + } + + return 1; +} + + +/** + * Print all step 1 + * + * @return void + */ +function install_step1() +{ + echo " +
+
+ ".print_logo_status(1, 6)." +
+
+
+

Welcome to Pandora FMS installation Wizard

+

This wizard helps you to quick install Pandora FMS console and main database in your system. + In four steps, this installer will check all dependencies and will create your configuration, ready to use.

+

For more information, please refer to documentation →

+ "; + if (file_exists('include/config.php')) { + echo "
You already have a config.php file. + Configuration and database would be overwritten if you continued.
"; + } + + echo '
'; + echo ''; + $writable = check_writable('include', './include is writable'); + if (file_exists('include/config.php')) { + $writable += check_writable('include/config.php', 'include/config.php is writable'); + } + + echo '
'; + + echo "
This installer will overwrite and destroy + your existing Pandora FMS configuration and Database. Before continue, + please be sure that you have no valuable Pandora FMS data in your Database.
+
"; + + if ($writable !== 0) { + echo "
You need to setup permissions to be able to write in ./include directory
"; + } + + echo '
'; + + echo "
"; + echo " +
+
+
+
+
+
+
+
+
+
+
+
+
+
'; +} + + +/** + * Print license content + * + * @return void + */ +function install_step1_licence() +{ + echo " +
+
+ ".print_logo_status(2, 6)." +
+

GPL2 Licence terms agreement

+

Pandora FMS is an OpenSource software project licensed under the GPL2 licence. Pandora FMS includes, as well, another software also licensed under LGPL and BSD licenses. Before continue, you must accept the licence terms.. +

For more information, please refer to our website at http://pandorafms.org and contact us if you have any kind of question about the usage of Pandora FMS

+

If you dont accept the licence terms, please, close your browser and delete Pandora FMS files.

+ "; + + if (!file_exists('COPYING')) { + echo "
Licence file 'COPYING' is not present in your distribution. This means you have some 'partial' Pandora FMS distribution. We cannot continue without accepting the licence file."; + echo '
'; + } else { + echo "'; + echo '

'; + } + + echo '

'; + + echo "
+
+
'; +} + + +/** + * Print all step 2 + * + * @return void + */ +function install_step2() +{ + echo " +
+
+ ".print_logo_status(3, 6)." +
"; + echo '

Checking software dependencies

'; + echo ' +
+
+ '; + $res = 0; + $res += check_variable(phpversion(), '7.0', 'PHP version >= 7.0', 1); + $res += check_extension('gd', 'PHP GD extension'); + $res += check_extension('ldap', 'PHP LDAP extension'); + $res += check_extension('snmp', 'PHP SNMP extension'); + $res += check_extension('session', 'PHP session extension'); + $res += check_extension('gettext', 'PHP gettext extension'); + $res += check_extension('mbstring', 'PHP Multibyte String'); + $res += check_extension('zip', 'PHP Zip'); + $res += check_extension('zlib', 'PHP Zlib extension'); + $res += check_extension('json', 'PHP json extension'); + $res += check_extension('curl', 'CURL (Client URL Library)'); + $res += check_extension('filter', 'PHP filter extension'); + $res += check_extension('calendar', 'PHP calendar extension'); + if (PHP_OS == 'FreeBSD') { + $res += check_exists('/usr/local/bin/twopi', 'Graphviz Binary'); + } else if (PHP_OS == 'NetBSD') { + $res += check_exists('/usr/pkg/bin/twopi', 'Graphviz Binary'); + } else if (substr(PHP_OS, 0, 3) == 'WIN') { + $res += check_exists("..\\..\\..\\Graphviz\\bin\\twopi.exe", 'Graphviz Binary'); + } else { + $res += check_exists('/usr/bin/twopi', 'Graphviz Binary'); + } + + echo ''; + check_extension('mysqli', 'PHP MySQL(mysqli) extension'); + echo '
'; + echo "DB Engines"; + echo ''; + echo '
'; + if ($res > 0) { + echo "
+
You have some incomplete + dependencies. Please correct them or this installer + will not be able to finish your installation. +
+
+ Remember, if you install any PHP module to comply + with these dependences, you need to restart + your HTTP/Apache server after it to use the new + modules. +
+
"; + } + + echo '
'; + echo "
+
+
'; +} + + +/** + * Print all step 3 + * + * @return void + */ +function install_step3() +{ + $options = []; + if (extension_loaded('mysql')) { + $options['mysql'] = 'MySQL'; + } + + if (extension_loaded('mysqli')) { + $options['mysqli'] = 'MySQL(mysqli)'; + } + + $error = false; + if (empty($options)) { + $error = true; + } + + echo " +
+
+ ".print_logo_status(4, 6)." +
+
+
+

Environment and database setup

+

+ This wizard will create your Pandora FMS database, + and populate it with all the data needed to run for the first time. +

+

+ You need a privileged user to create database schema, this is usually root user. + Information about root user will not be used or stored anymore. +

+

+ You can also deploy the scheme into an existing Database. + In this case you need a privileged Database user and password of that instance. +

+

+ Now, please, complete all details to configure your database and environment setup. +

+
+ This installer will overwrite and destroy your existing + Pandora FMS configuration and Database. Before continue, + please be sure that you have no valuable Pandora FMS data in your Database. +

+
"; + if ($error) { + echo "
+ You haven't a any DB engine with PHP. Please check the previous step to DB engine dependencies. +
"; + } + + if (extension_loaded('oci8')) { + echo "
For Oracle installation an existing Database with a privileged user is needed.
"; + } + + echo '
'; + echo '
'; + if (!$error) { + echo "
"; + } + + echo ""; + + if (!$error) { + echo ' + + + + + + + "; + + // the field dbgrant is only shown when the DB host is different from 127.0.0.1 or localhost + echo " + + "; + + echo " + + "; + echo " + + + "; + + echo " + + "; + + echo '
'; + echo '

DB Engine

'; + + echo ''; + + echo ''; + + echo '
'; + echo '

Installation in

'; + + echo ''; + + echo ''; + } + + echo "
+

DB User with privileges

+ +
+

DB Password for this user

+ +
+

DB Hostname

+ +
+

DB Name (pandora by default)

+ +
+

Full path to HTTP publication directory

+

For example /var/www/pandora_console/

+ +
+

URL path to Pandora FMS Console

+

For example '/pandora_console'

+ +
+ +

Drop Database if exists

+
'; + + echo '
'; + + echo '
'; + echo '
'; + echo "
+ '; +} + + +/** + * Print all step 4 + * + * @return void + */ +function install_step4() +{ + $pandora_config = 'include/config.php'; + + if ((! isset($_POST['user'])) || (! isset($_POST['dbname'])) || (! isset($_POST['host'])) + || (! isset($_POST['pass'])) || (!isset($_POST['engine'])) || (! isset($_POST['db_action'])) + ) { + $dbpassword = ''; + $dbuser = ''; + $dbhost = ''; + $dbname = ''; + $engine = ''; + $dbaction = ''; + $dbgrant = ''; + } else { + $engine = $_POST['engine']; + $dbpassword = $_POST['pass']; + $dbuser = $_POST['user']; + $dbhost = $_POST['host']; + $dbaction = $_POST['db_action']; + if (isset($_POST['dbgrant']) && $_POST['dbgrant'] != '') { + $dbgrant = $_POST['dbgrant']; + } else { + $dbgrant = $_SERVER['SERVER_ADDR']; + } + + if (isset($_POST['drop'])) { + $dbdrop = $_POST['drop']; + } else { + $dbdrop = 0; + } + + $dbname = $_POST['dbname']; + if (isset($_POST['url'])) { + $url = $_POST['url']; + } else { + $url = 'http://localhost'; + } + + if (isset($_POST['path'])) { + $path = $_POST['path']; + $path = str_replace('\\', '/', $path); + // Windows compatibility + } else { + $path = '/var/www'; + } + } + + $everything_ok = 0; + $step1 = 0; + $step2 = 0; + $step3 = 0; + $step4 = 0; + $step5 = 0; + $step6 = 0; + $step7 = 0; + $errors = []; + echo " +
+
+ ".print_logo_status(5, 6)." +
+
+
+ "; + switch ($engine) { + case 'mysql': + if (! mysql_connect($dbhost, $dbuser, $dbpassword)) { + check_generic(0, 'Connection with Database'); + } else { + check_generic(1, 'Connection with Database'); + + // Drop database if needed and don't want to install over an existing DB + if ($dbdrop == 1) { + mysql_query("DROP DATABASE IF EXISTS `$dbname`"); + } + + // Create schema + if ($dbaction == 'db_new' || $dbdrop == 1) { + $step1 = mysql_query("CREATE DATABASE `$dbname`"); + check_generic($step1, "Creating database '$dbname'"); + } else { + $step1 = 1; + } + + if ($step1 == 1) { + $step2 = mysql_select_db($dbname); + check_generic($step2, "Opening database '$dbname'"); + + $step3 = parse_mysql_dump('pandoradb.sql'); + + if ($step3 !== 0 && $step3 !== 1) { + $errors[] = $step3; + $step3 = 0; + } + + check_generic($step3, 'Creating schema'); + $step4 = parse_mysql_dump('pandoradb_data.sql'); + + if ($step4 !== 0 && $step4 !== 1) { + $errors[] = $step4; + $step4 = 0; + } + + check_generic($step4, 'Populating database'); + if (PHP_OS == 'FreeBSD') { + $step_freebsd = adjust_paths_for_freebsd($engine); + check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); + } + + $random_password = random_name(8); + $host = $dbhost; + // set default granted origin to the origin of the queries + if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { + $host = $dbgrant; + // if the granted origin is different from local machine, set the valid origin + } + + $step5 = mysql_query( + "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host + IDENTIFIED BY '".$random_password."'" + ); + mysql_query('FLUSH PRIVILEGES'); + check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); + + $step6 = is_writable('include'); + check_generic($step6, "Write permissions to save config file in './include'"); + + $cfgin = fopen('include/config.inc.php', 'r'); + $cfgout = fopen($pandora_config, 'w'); + $config_contents = fread($cfgin, filesize('include/config.inc.php')); + $dbtype = 'mysql'; + $config_new = ''; + $step7 = fputs($cfgout, $config_new); + $step7 = ($step7 + fputs($cfgout, $config_contents)); + if ($step7 > 0) { + $step7 = 1; + } + + fclose($cfgin); + fclose($cfgout); + chmod($pandora_config, 0600); + check_generic($step7, "Created new config file at '".$pandora_config."'"); + } + } + + if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { + $everything_ok = 1; + } + break; + + case 'mysqli': + $connection = mysqli_connect($dbhost, $dbuser, $dbpassword); + if (mysqli_connect_error() > 0) { + check_generic(0, 'Connection with Database'); + } else { + check_generic(1, 'Connection with Database'); + + // Drop database if needed and don't want to install over an existing DB + if ($dbdrop == 1) { + mysqli_query($connection, "DROP DATABASE IF EXISTS `$dbname`"); + } + + // Create schema + if ($dbaction == 'db_new' || $dbdrop == 1) { + $step1 = mysqli_query($connection, "CREATE DATABASE `$dbname`"); + check_generic($step1, "Creating database '$dbname'"); + } else { + $step1 = 1; + } + + if ($step1 == 1) { + $step2 = mysqli_select_db($connection, $dbname); + check_generic($step2, "Opening database '$dbname'"); + + $step3 = parse_mysqli_dump($connection, 'pandoradb.sql'); + if ($step3 !== 0 && $step3 !== 1) { + $errors[] = $step3; + $step3 = 0; + } + + check_generic($step3, 'Creating schema'); + + $step4 = parse_mysqli_dump($connection, 'pandoradb_data.sql'); + + if ($step4 !== 0 && $step4 !== 1) { + $errors[] = $step4; + $step4 = 0; + } + + check_generic($step4, 'Populating database'); + if (PHP_OS == 'FreeBSD') { + $step_freebsd = adjust_paths_for_freebsd($engine, $connection); + check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); + } + + $random_password = random_name(8); + $host = $dbhost; + // set default granted origin to the origin of the queries + if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { + $host = $dbgrant; + // if the granted origin is different from local machine, set the valid origin + } + + $step5 = mysqli_query( + $connection, + "CREATE USER IF NOT EXISTS pandora@$host" + ); + + mysqli_query( + $connection, + "SET PASSWORD FOR 'pandora'@'".$host."' = '".$random_password."'" + ); + + $step5 |= mysqli_query( + $connection, + "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host" + ); + mysqli_query($connection, 'FLUSH PRIVILEGES'); + check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); + + $step6 = is_writable('include'); + check_generic($step6, "Write permissions to save config file in './include'"); + + $cfgin = fopen('include/config.inc.php', 'r'); + $cfgout = fopen($pandora_config, 'w'); + $config_contents = fread($cfgin, filesize('include/config.inc.php')); + $dbtype = 'mysql'; + $config_new = ''; + $step7 = fputs($cfgout, $config_new); + $step7 = ($step7 + fputs($cfgout, $config_contents)); + if ($step7 > 0) { + $step7 = 1; + } + + fclose($cfgin); + fclose($cfgout); + chmod($pandora_config, 0600); + check_generic($step7, "Created new config file at '".$pandora_config."'"); + } + } + + if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { + $everything_ok = 1; + } + break; + } + + echo '
'; + echo '
'; + echo '
'; + echo "

Creating database and default configuration file

"; + if ($everything_ok !== 1) { + $info = ''; + + if (!empty($errors)) { + foreach ($errors as $key => $err) { + $info .= '
'.$err.'
'; + } + + $info .= "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + $info .= "
There were some problems. + Installation was not completed. +

Please correct failures before trying again. + All database "; + + if ($engine == 'oracle') { + $info .= 'objects '; + } else { + $info .= 'schemes '; + } + + $info .= 'created in this step have been dropped.

+
'; + echo $info; + + switch ($engine) { + case 'mysql': + if (mysql_error() != '') { + echo "
".mysql_error().'.
'; + echo "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + if ($step1 == 1) { + mysql_query("DROP DATABASE $dbname"); + } + break; + + case 'mysqli': + if ($connection && mysqli_error($connection) != '') { + echo "
".mysqli_error($connection).'.
'; + echo "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + if ($step1 == 1) { + mysqli_query($connection, "DROP DATABASE $dbname"); + } + break; + } + } + + echo '
'; + echo '
'; + echo '
'; + echo " +
+
'; +} + + +/** + * Print all step 5 + * + * @return void + */ +function install_step5() +{ + echo " +
+
+ ".print_logo_status(6, 6)." +
+

Installation complete

+

For security, you now must manually delete this installer + ('install.php') file before trying to access to your Pandora FMS console. +

You should also install Pandora FMS Servers before trying to monitor anything; + please read documentation on how to install it.

+

Default user is 'admin' with password 'pandora', + please change it both as soon as possible.

+

Don't forget to check http://pandorafms.com + for updates. +

Select if you want to rename 'install.php'.

+
+ + +
+

+
+
+
+ +
+
"; +} From a637959eb568a2ba7778618180dae16cb8c8156c Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 13:31:45 +0200 Subject: [PATCH 064/211] #11222 Fix switch. Repared install --- pandora_console/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index 98b3ce716e..fc28451ea1 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1361,7 +1361,7 @@ if ($searchPage) { $_GET['sec2'] = 'operation/agentes/group_view'; break; - case 'Alert detail': + case 'Alert details': $_GET['sec'] = 'view'; $_GET['sec2'] = 'operation/agentes/alerts_status'; break; From 6469a12b9103516ff78c2abe79c4301ac354f20e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 16 May 2023 15:19:56 +0200 Subject: [PATCH 065/211] #11181 fixed resource exporting --- pandora_console/extensions/resource_exportation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extensions/resource_exportation.php b/pandora_console/extensions/resource_exportation.php index 905b389eee..77c4024628 100755 --- a/pandora_console/extensions/resource_exportation.php +++ b/pandora_console/extensions/resource_exportation.php @@ -453,7 +453,7 @@ function resource_exportation_extension_main() true ) ); - $table->data[0][] = html_print_button(__('Export'), '', false, 'export_to_ptr(\'report\');', ['mode' => 'link'], true); + $table->data[0][] = html_print_button(__('Export'), '', false, 'export_to_ptr("report");', ['mode' => 'link'], true); $table->data[1][] = html_print_label_input_block( __('Visual console'), @@ -465,7 +465,7 @@ function resource_exportation_extension_main() true ) ); - $table->data[1][] = html_print_button(__('Export'), '', false, 'export_to_ptr(\'visual_console\');', ['mode' => 'link'], true); + $table->data[1][] = html_print_button(__('Export'), '', false, 'export_to_ptr("visual_console");', ['mode' => 'link'], true); if ($hook_enterprise === true) { add_rows_for_enterprise($table->data); From f4cf8e769ab1105b68af9c7af4b2ee6e9c1e69d5 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Tue, 16 May 2023 16:00:17 +0200 Subject: [PATCH 066/211] 11094-Fix plugin data recovery --- .../agentes/module_manager_editor_plugin.php | 4 +++- pandora_console/include/ajax/module.php | 23 +++++++++++++++++++ .../include/javascript/pandora_modules.js | 9 ++++++-- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index c5b675d50c..b08ad3864d 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -146,10 +146,12 @@ foreach ($password_fields as $k => $p) { return; } + + const moduleId = ; load_plugin_description($("#id_plugin").val()); - load_plugin_macros_fields('simple-macro'); + load_plugin_macros_fields('simple-macro', moduleId); forced_title_callback(); diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 78751eb001..a8120c2150 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -38,6 +38,7 @@ if (check_login()) { enterprise_include_once('include/functions_metaconsole.php'); $get_plugin_macros = get_parameter('get_plugin_macros'); + $get_module_macros = get_parameter('get_module_macros'); $search_modules = get_parameter('search_modules'); $get_module_detail = get_parameter('get_module_detail', 0); $get_module_autocomplete_input = (bool) get_parameter( @@ -118,6 +119,28 @@ if (check_login()) { return; } + if ($get_module_macros && $get_module_macros > 0) { + if (https_is_running()) { + header('Content-type: application/json'); + } + + $module_id = $get_module_macros; + + $module_macros = db_get_value( + 'macros', + 'tagente_modulo', + 'id_agente_modulo', + $module_id + ); + + $macros = []; + $macros['base64'] = base64_encode($module_macros); + $macros['array'] = json_decode($module_macros, true); + + echo json_encode($macros); + return; + } + if ($search_modules) { if (https_is_running()) { header('Content-type: application/json'); diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 771efb460f..8b29cdae96 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -997,13 +997,18 @@ function add_macro_field(macro, row_model_id, type_copy, k) { $("#" + row_id).show(); } -function load_plugin_macros_fields(row_model_id) { +function load_plugin_macros_fields(row_model_id, moduleId = 0) { // Get plugin macros when selected and load macros fields var id_plugin = $("#id_plugin").val(); var params = []; params.push("page=include/ajax/module"); - params.push("get_plugin_macros=1"); + + if (moduleId > 0) { + params.push("get_module_macros=" + moduleId); + } else { + params.push("get_plugin_macros=1"); + } params.push("id_plugin=" + id_plugin); jQuery.ajax({ From 1d885f5e4269c3b9aa012d1db38ba8bce376d504 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 16:15:18 +0200 Subject: [PATCH 067/211] Fix functions_html --- pandora_console/include/functions_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 88cb032570..610c2c1c26 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,7 +4273,7 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $value) { + foreach ($attributes as $key => $val) { switch ($key) { case 'input_class': $inputClass .= ' '.$val; From 52886b96b34a6fd2e4f0878951f818e7da079768 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 17:03:10 +0200 Subject: [PATCH 068/211] #10328 Fix security font and values --- .../godmode/alerts/configure_alert_command.php | 8 ++++---- pandora_console/include/functions_html.php | 10 +++++----- pandora_console/include/styles/pandora.css | 5 +++++ 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index 722c680a27..27ee616f0b 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -413,18 +413,18 @@ $(document).ready (function () { $(".hide_inputs").each(function(index) { var $input_in_row = $(this).closest('tr').find('.field_value'); if($(this).is(':checked')) { - $input_in_row.prop('style', '-webkit-text-security: disc;'); + $input_in_row.prop('style', '-webkit-text-security: disc; font-family: text-security-disc;'); } else { $input_in_row.prop('style', ''); } }); - + $(".hide_inputs").click(function() { var $input_in_row = $(this).closest('tr').find('.field_value'); if($(this).is(':checked')) { - $input_in_row.prop('type', 'password'); + $input_in_row.prop('style', '-webkit-text-security: disc; font-family: text-security-disc;'); } else { - $input_in_row.prop('type', 'text') + $input_in_row.prop('style', ''); } }); }); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 610c2c1c26..bc8ffefe8a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,22 +4273,22 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $val) { + foreach ($attributes as $key => $value) { switch ($key) { case 'input_class': - $inputClass .= ' '.$val; + $inputClass .= ' '.$value; break; case 'label_class': - $labelClass .= ' '.$val; + $labelClass .= ' '.$value; break; case 'label_style': - $labelStyle .= 'style="'.$val.'"'; + $labelStyle .= 'style="'.$value.'"'; break; default: - $tmpAttributes[] = $key.'="'.$val.'"'; + $tmpAttributes[] = $key.'="'.$value.'"'; break; } } diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 25c7202216..1a42e6c7b9 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -87,6 +87,11 @@ font-weight: 900; } +@font-face { + font-family: "text-security-disc"; + src: url("https://raw.githubusercontent.com/noppa/text-security/master/dist/text-security-disc.woff"); +} + /* @font-face { font-family: "lato-italic"; From d4c3df295cdec3df2014d9f89e7235d636fde66f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 16 May 2023 17:46:51 +0200 Subject: [PATCH 069/211] #11241 fixed inverse interval in module edit --- pandora_console/godmode/agentes/configurar_agente.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index da75fd6342..fbadbe5353 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1546,7 +1546,11 @@ if ($update_module === true || $create_module === true) { } // Inverse string checkbox. - if ($id_module_type === MODULE_TYPE_GENERIC_DATA_STRING || $id_module_type === MODULE_TYPE_ASYNC_STRING) { + if ($id_module_type === MODULE_TYPE_GENERIC_DATA_STRING + || $id_module_type === MODULE_TYPE_ASYNC_STRING + || $id_module_type === MODULE_TYPE_REMOTE_TCP_STRING + || $id_module_type === MODULE_TYPE_REMOTE_CMD_STRING + ) { // Warning inverse string checkbox. $warning_string_checkbox = get_parameter('warning_inverse_string'); if (!empty($warning_string_checkbox) && $warning_string_checkbox === 'warning_inverse_string') { From a1d02e4f4dfc222ef8aede2dd30a97f187e1a26e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 09:50:08 +0200 Subject: [PATCH 070/211] #11233 fixed bug no data in basic chart --- .../lib/Dashboard/Widgets/BasicChart.php | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php index 8041cf77d9..ec02614285 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php @@ -561,7 +561,6 @@ class BasicChart extends Widget global $config; $size = parent::getSize(); - hd($size, true); include_once $config['homedir'].'/include/functions_graph.php'; include_once $config['homedir'].'/include/functions_agents.php'; @@ -625,16 +624,20 @@ class BasicChart extends Widget ], ]; + $graph = \grafico_modulo_sparse($params); $output = '
'; - $output .= '
'; - $output .= ''; - $output .= ((bool) $this->values['showLabel'] === true) ? $title : ''; - $output .= ''; - $output .= ''; - $output .= ((bool) $this->values['showValue'] === true) ? $value : ''; - $output .= ''; - $output .= '
'; - $output .= \grafico_modulo_sparse($params); + if (str_contains($graph, 'values['colorLabel'].'; font-size:'.$this->values['sizeLabel'].'px;">'; + $output .= ((bool) $this->values['showLabel'] === true) ? $title : ''; + $output .= ''; + $output .= ''; + $output .= ((bool) $this->values['showValue'] === true) ? $value : ''; + $output .= ''; + $output .= '
'; + } + + $output .= $graph; $output .= '
'; return $output; } From cb63ee92f70b2c4d0f747c8a452fd61d0aa8044e Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 17 May 2023 10:54:43 +0200 Subject: [PATCH 071/211] #10328 Fix JS code --- pandora_console/godmode/alerts/alert_commands.php | 2 +- pandora_console/include/functions_html.php | 10 +++++----- pandora_console/include/javascript/pandora_alerts.js | 5 ++++- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index 42b643acd7..271ae79784 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -133,7 +133,7 @@ if (is_ajax()) { } } - $style = ((int) $field_hidden === 1) ? '-webkit-text-security: disc;' : ''; + $style = ((int) $field_hidden === 1) ? '-webkit-text-security: disc; font-family: text-security-disc;' : ''; if (!empty($field_value)) { $field_value = io_safe_output($field_value); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index bc8ffefe8a..610c2c1c26 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,22 +4273,22 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $value) { + foreach ($attributes as $key => $val) { switch ($key) { case 'input_class': - $inputClass .= ' '.$value; + $inputClass .= ' '.$val; break; case 'label_class': - $labelClass .= ' '.$value; + $labelClass .= ' '.$val; break; case 'label_style': - $labelStyle .= 'style="'.$value.'"'; + $labelStyle .= 'style="'.$val.'"'; break; default: - $tmpAttributes[] = $key.'="'.$value.'"'; + $tmpAttributes[] = $key.'="'.$val.'"'; break; } } diff --git a/pandora_console/include/javascript/pandora_alerts.js b/pandora_console/include/javascript/pandora_alerts.js index b527067290..7af8b5b1ec 100644 --- a/pandora_console/include/javascript/pandora_alerts.js +++ b/pandora_console/include/javascript/pandora_alerts.js @@ -21,7 +21,10 @@ function parse_alert_command(command, classs) { "[RECOVER]" + $($(".fields")[nfield - 1]).val() ); } - } else if ($(this).css("-webkit-text-security") == "disc") { + } else if ( + $(this).css("-webkit-text-security") == "disc" || + $(this).css("font-family") == "text-security-disc" + ) { var hidden_character = "*"; var hidden_string = hidden_character.repeat($(this).val().length); From eee080e6236683bda5c05d5817b7bb39675b1666 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 17 May 2023 11:19:57 +0200 Subject: [PATCH 072/211] #9242 fixed the text string so that it is taken into account in the translation --- pandora_console/godmode/servers/plugin_registration.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pandora_console/godmode/servers/plugin_registration.php b/pandora_console/godmode/servers/plugin_registration.php index 296a29a510..e6bf99c768 100644 --- a/pandora_console/godmode/servers/plugin_registration.php +++ b/pandora_console/godmode/servers/plugin_registration.php @@ -93,10 +93,6 @@ if (is_metaconsole() === true) { } } -$str = 'This extension makes registering server plugins an easier task.'; -$str .= ' Here you can upload a server plugin in .pspz zipped format.'; -$str .= ' Please refer to the official documentation on how to obtain and use Server Plugins.'; - $output = '
'; $output .= '
'; $output .= html_print_image( @@ -108,7 +104,7 @@ $output .= '
'; $output .= '
'; $output .= '

'.__('Plugin registration').'

'; $output .= '

'; -$output .= __($str); +$output .= __('This extension makes registering server plugins an easier task. Here you can upload a server plugin in .pspz zipped format. Please refer to the official documentation on how to obtain and use Server Plugins.'); $output .= '

'; $output .= __('You can get more plugins in our'); $output .= ''; From 7980d68fafdf88e97394e902467b9c2c0f67d077 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 11:24:48 +0200 Subject: [PATCH 073/211] #11190 fixed filter with name module --- pandora_console/include/lib/Dashboard/Widgets/tree_view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php index f0cbc5941d..5e7feb5acd 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php @@ -552,7 +552,7 @@ class TreeViewWidget extends Widget $searchModule = ''; if (empty($this->values['filterModule']) === false) { - $searchModule = $this->values['filterModule']; + $searchModule = io_safe_output($this->values['filterModule']); } $searchGroup = 0; From 6a2210b0d5e5ed733dd73c06ea18158b594bbce6 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 14:51:54 +0200 Subject: [PATCH 074/211] #11221 fixed filter in Module Template Manager --- pandora_console/include/class/ModuleTemplates.class.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/class/ModuleTemplates.class.php b/pandora_console/include/class/ModuleTemplates.class.php index bfb02c7ae8..dab74a8846 100644 --- a/pandora_console/include/class/ModuleTemplates.class.php +++ b/pandora_console/include/class/ModuleTemplates.class.php @@ -1339,7 +1339,11 @@ class ModuleTemplates extends HTML function filterGroupComponents(e){ var selectedGroup = e.target.value; var entireList = JSON.parse($('#hidden-group-components').val()); - var componentsToShow = entireList[selectedGroup]; + if(typeof entireList[selectedGroup] !== 'undefined'){ + var componentsToShow = entireList[selectedGroup].split(","); + } else { + var componentsToShow = []; + } $('#add-modules-components').children().each(function(){ var id = $(this).val(); if (typeof componentsToShow === 'undefined' && selectedGroup != '0') { @@ -1348,7 +1352,7 @@ class ModuleTemplates extends HTML $(this).css('display','block'); } else { $(this).css('display','none'); - } + } }); } From be0f77b782472282cad466673ecebd42d0fb8e10 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 17 May 2023 14:56:00 +0200 Subject: [PATCH 075/211] #11202 Fixed url icon --- pandora_console/include/functions_visual_map.php | 7 ++++++- .../include/rest-api/models/VisualConsole/Items/Icon.php | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 80267a18e9..01e290b264 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -3173,7 +3173,12 @@ function visual_map_get_image_status_element($layoutData, $status=false) if ($layoutData['type'] == 5) { // ICON ELEMENT. - $img .= '.png'; + $url = parse_url($layoutData['image']); + if (isset($url['scheme']) === false) { + $img .= '.png'; + } else { + $img = $layoutData['image']; + } } else { if ($status === false) { $status = visual_map_get_status_element($layoutData); diff --git a/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php b/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php index 81ae02209e..cd89dc3f52 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php @@ -116,7 +116,12 @@ final class Icon extends Item // Get the img src. $imagePath = \visual_map_get_image_status_element($data); - $data['imageSrc'] = \ui_get_full_url($imagePath, false, false, false); + $url = parse_url($imagePath); + if (isset($url['scheme']) === false) { + $data['imageSrc'] = \ui_get_full_url($imagePath, false, false, false); + } else { + $data['imageSrc'] = $imagePath; + } // If the width or the height are equal to 0 we will extract them // from the real image size. From ce19fa25df04473dcad0bf3d3060d78a0c8f4314 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 18 May 2023 01:00:17 +0200 Subject: [PATCH 076/211] 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 592c5072a0..5cdf1c62b6 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230517 +Version: 7.0NG.771-230518 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 5dfb14ed12..2f47b9f05a 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.771-230517" +pandora_version="7.0NG.771-230518" 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 170eb7f81b..dae78890d7 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230517'; +use constant AGENT_BUILD => '230518'; # 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 035678a021..66bb15c1be 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230517 +%define release 230518 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 d59e5e8e23..afd716a670 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230517 +%define release 230518 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 c634aa6007..076a1c294e 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230517" +PI_BUILD="230518" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index ecb82d8e7e..8b312976a0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230517} +{230518} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0eada00935..f14f705866 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.771 Build 230517") +#define PANDORA_VERSION ("7.0NG.771 Build 230518") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index cf97c6d914..da457b7d9f 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.771(Build 230517))" + VALUE "ProductVersion", "(7.0NG.771(Build 230518))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 7030313b5e..bf74be3666 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230517 +Version: 7.0NG.771-230518 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 1e7db70601..fcdcb046ea 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.771-230517" +pandora_version="7.0NG.771-230518" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 3a14a7d59c..5fb8681e31 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230517'; +$build_version = 'PC230518'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 9b520d1d6a..471a353d39 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@

[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index efbb6b09a9..bf39b9f84c 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230517 +%define release 230518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 002a38d4cb..99153fe46b 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230517 +%define release 230518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 7e88d86706..c20967a83d 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230517" +PI_BUILD="230518" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 445a00fe40..21d941d913 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.771 Build 230517"; +my $version = "7.0NG.771 Build 230518"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1597a02b1f..565e26513c 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.771 Build 230517"; +my $version = "7.0NG.771 Build 230518"; # save program name for logging my $progname = basename($0); From 51b4b99e37325b0c8666cbb7a399f5bccd2b1f88 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 10:32:52 +0200 Subject: [PATCH 077/211] #11245 Added required functions --- .../include/javascript/d3.3.5.14.js | 72 ++++++++++++++++++- 1 file changed, 71 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/d3.3.5.14.js b/pandora_console/include/javascript/d3.3.5.14.js index 092de8d4c1..eb34e540d8 100644 --- a/pandora_console/include/javascript/d3.3.5.14.js +++ b/pandora_console/include/javascript/d3.3.5.14.js @@ -1395,6 +1395,76 @@ duration = +_; return zoom; }; + zoom.setTranslate = function(v) { + translate = v; + }; + zoom.convertLevelsToScale = function(i) { + min = Math.pow(2, (-360 * i) * .002) * 1; + max = Math.pow(2, (360 * i) * .002) * 1; + + return [min, max]; + }; + zoom.getZoomLevel = function(x, y) { + if (typeof(x) == 'undefined') { + x = 0; + //Get center + } + if (typeof(y) == 'undefined') { + y = 0; + //Get center + } + + var zoom_levels = []; + + if (!translate0) + translate0 = location([x, y]); + + var old_scale = scale; + var old_translate = [translate[0], translate[1]]; + + var count = 0; + + + scale = 1; + high_levels = []; + high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + do { + scaleTo(Math.pow(2, 360 * .002) * scale); + translateTo([x, y], translate0); + + high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + + if (count > 30) { + break; + } + count++; + } + while (scale < scaleExtent[1]); + scale = 1; + count = 0; + do { + scaleTo(Math.pow(2, -360 * .002) * scale); + translateTo([x, y], translate0); + + zoom_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + + if (count > 30) { + break; + } + count++; + } + while (scale > scaleExtent[0]); + + zoom_levels.reverse(); + high_levels.forEach(function(v, i) { + zoom_levels.push(v); + }); + + scale = old_scale; + translate = old_translate; + + return zoom_levels; + }; zoom.x = function(z) { if (!arguments.length) return x1; x1 = z; @@ -9550,4 +9620,4 @@ return request.responseXML; }); if (typeof define === "function" && define.amd) this.d3 = d3, define(d3); else if (typeof module === "object" && module.exports) module.exports = d3; else this.d3 = d3; -}(); \ No newline at end of file +}(); From 2eb617e1e6653acfdac31c4164a8e31c8a40f9ff Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 11:38:44 +0200 Subject: [PATCH 078/211] #11268 Fixed css --- pandora_console/include/styles/visual_maps.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pandora_console/include/styles/visual_maps.css b/pandora_console/include/styles/visual_maps.css index f106dda76d..7b958de489 100644 --- a/pandora_console/include/styles/visual_maps.css +++ b/pandora_console/include/styles/visual_maps.css @@ -34,6 +34,7 @@ div#vc-controls { div#vc-controls div#menu_tab { margin: 0px; + height: 100% !important; } div#vc-controls ul.white-box-content { @@ -165,6 +166,14 @@ div.label strong span { z-index: 999; } +.vc-btn-no-fullscreen { + padding: 0 !important; +} + +.vc-btn-no-fullscreen img { + margin-top: 0 !important; +} + .visual_font_size_4pt, .visual_font_size_4pt > em, .visual_font_size_4pt > strong, From 90c3ccccd8a1cb1e07b4df2430b5708bd0335b2a Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 12:53:45 +0200 Subject: [PATCH 079/211] #11222 Fix url to home screen visual console --- pandora_console/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index fc28451ea1..9de85373ab 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1388,7 +1388,7 @@ if ($searchPage) { case 'Visual console': $id_visualc = db_get_value('id', 'tlayout', 'name', $home_url); if (($home_url == '') || ($id_visualc == false)) { - $str = 'sec=network&sec2=operation/visual_console/index&refr=60'; + $str = 'sec=godmode/reporting/map_builder&sec2=godmode/reporting/map_builder'; } else { $str = 'sec=network&sec2=operation/visual_console/render_view&id='.$id_visualc; } From 1037eaa8b445b81fed8e60a8b8c89ce364f0035d Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 13:56:40 +0200 Subject: [PATCH 080/211] #11064 Fix JS code button --- pandora_console/include/functions_ui.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 473e96fe37..2b4affc249 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -4512,7 +4512,7 @@ function ui_toggle( // Link to toggle. $output = '
'; - $output .= '
'; + $output .= '
'; if ($reverseImg === false) { if ($switch === true) { if (empty($switch_name) === true) { @@ -4602,7 +4602,7 @@ function ui_toggle( $output .= ' /* Date: Thu, 18 May 2023 15:28:58 +0200 Subject: [PATCH 081/211] #11255 Fixed monitor health in metaconsole --- pandora_console/include/functions_reporting.php | 2 +- pandora_console/include/functions_tactical.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 5adae9abf7..705878acec 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -12095,7 +12095,7 @@ function reporting_get_stats_indicators($data, $width=280, $height=20, $html=tru $table_ind->data[] = $tdata; $tdata[0] = '
- '.__('Module sanityX').ui_print_help_tip(sprintf(__('%d Not inited monitors'), (int) $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).'
'; + '.__('Module sanity').ui_print_help_tip(sprintf(__('%d Not inited monitors'), (int) $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; diff --git a/pandora_console/include/functions_tactical.php b/pandora_console/include/functions_tactical.php index deb39c4e88..8b8575b8d7 100644 --- a/pandora_console/include/functions_tactical.php +++ b/pandora_console/include/functions_tactical.php @@ -278,8 +278,8 @@ function tactical_get_data( // Get total count of monitors for this group, except disabled. $list['_monitor_checks_'] = ($list['_monitors_not_init_'] + $list['_monitors_unknown_'] + $list['_monitors_warning_'] + $list['_monitors_critical_'] + $list['_monitors_ok_']); - // Calculate not_normal monitors - $list['_monitor_not_normal_'] = ($list[$i]['_monitor_checks_'] - $list['_monitors_ok_']); + // Calculate not_normal monitors. + $list['_monitor_not_normal_'] = ($list['_monitor_checks_'] - $list['_monitors_ok_']); if ($list['_monitor_not_normal_'] > 0 && $list['_monitor_checks_'] > 0) { $list['_monitor_health_'] = format_numeric((100 - ($list['_monitor_not_normal_'] / ($list['_monitor_checks_'] / 100))), 1); @@ -293,7 +293,7 @@ function tactical_get_data( $list['_module_sanity_'] = 100; } - if (isset($list[$i]['_alerts_'])) { + if (isset($list['_alerts_'])) { if ($list['_monitors_alerts_fired_'] > 0 && $list['_alerts_'] > 0) { $list['_alert_level_'] = format_numeric((100 - ($list['_monitors_alerts_fired_'] / ($list['_alerts_'] / 100))), 1); } else { From 1860baac0c660fa5d7fffb21a5e526a5286b0c3e Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 16:30:17 +0200 Subject: [PATCH 082/211] #11117 Fix unset values --- pandora_console/include/auth/mysql.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index bb2e51bc73..9783c609b6 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -805,6 +805,9 @@ function update_user(string $id_user, array $values) unset($values['id_skin']); unset($values['section']); unset($values['default_event_filter']); + $update_user_metaconsole = true; + } else { + $update_user_metaconsole = false; } $output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]); @@ -844,6 +847,10 @@ function update_user(string $id_user, array $values) } } + if ($update_user_metaconsole === true) { + $output = 1; + } + return $output; } From cebe92296b6308df1f281e338e6352e3c9019f8b Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 18 May 2023 16:32:30 +0200 Subject: [PATCH 083/211] #11001 fix languaje tips window --- pandora_console/include/class/TipsWindow.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 712fc62f0a..dfa0c70f9c 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -270,6 +270,7 @@ class TipsWindow } $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + $sql .= sprintf(' AND id_lang = "%s"', $language); $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; @@ -320,6 +321,7 @@ class TipsWindow WHERE enable = "1" '; $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + $sql .= sprintf(' AND id_lang = "%s"', $config['language']); $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; From 9f1002e0820f6b60fafecd137df8a7fa81dd0f12 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 17:21:26 +0200 Subject: [PATCH 084/211] #11276 Fixed group --- .../lib/Dashboard/Widgets/agent_module.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index 9d6cb524f7..02368a42c7 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -279,13 +279,26 @@ class AgentModuleWidget extends Widget $return_all_group = true; } + $mgroup = ''; + if (isset($this->values['mGroup']) === false) { + $sql = sprintf( + 'SELECT id_group FROM tdashboard WHERE id = %d', + $this->dashboardId + ); + + $group_dahsboard = db_get_value_sql($sql); + if ($group_dahsboard > 0) { + $mgroup = $group_dahsboard; + } + } + $inputs[] = [ 'class' => 'flex flex-row', 'id' => 'select_multiple_modules_filtered', 'arguments' => [ 'type' => 'select_multiple_modules_filtered', 'uniqId' => $this->cellId, - 'mGroup' => (isset($this->values['mGroup']) === true) ? $this->values['mGroup'] : '', + 'mGroup' => (isset($this->values['mGroup']) === true) ? $this->values['mGroup'] : $mgroup, 'mRecursion' => (isset($this->values['mRecursion']) === true) ? $this->values['mRecursion'] : '', 'mModuleGroup' => (isset($this->values['mModuleGroup']) === true) ? $this->values['mModuleGroup'] : '', 'mAgents' => (isset($this->values['mAgents']) === true) ? $this->values['mAgents'] : '', From 2efd36c6830c5c1ffeac11516b4abcc1cfac06e7 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 19 May 2023 01:00:17 +0200 Subject: [PATCH 085/211] 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 5cdf1c62b6..4e0e77fea2 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230518 +Version: 7.0NG.771-230519 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 2f47b9f05a..eb5ec84530 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.771-230518" +pandora_version="7.0NG.771-230519" 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 dae78890d7..c4bc56f416 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230518'; +use constant AGENT_BUILD => '230519'; # 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 66bb15c1be..05f17c036f 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230518 +%define release 230519 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 afd716a670..a538b7dfbc 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230518 +%define release 230519 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 076a1c294e..0d95a0e1d5 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230518" +PI_BUILD="230519" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 8b312976a0..7ecb5ca020 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230518} +{230519} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f14f705866..77a2b2f710 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.771 Build 230518") +#define PANDORA_VERSION ("7.0NG.771 Build 230519") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index da457b7d9f..15b02c04f3 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.771(Build 230518))" + VALUE "ProductVersion", "(7.0NG.771(Build 230519))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index bf74be3666..9db5bdb34e 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230518 +Version: 7.0NG.771-230519 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 fcdcb046ea..bac0db7493 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.771-230518" +pandora_version="7.0NG.771-230519" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5fb8681e31..88cb0e4800 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 = 'PC230518'; +$build_version = 'PC230519'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 471a353d39..680d80bd0e 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index bf39b9f84c..3779b83e29 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230518 +%define release 230519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 99153fe46b..59d6c14aa8 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230518 +%define release 230519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c20967a83d..106f2ce9b4 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230518" +PI_BUILD="230519" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 21d941d913..6707bcdff4 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.771 Build 230518"; +my $version = "7.0NG.771 Build 230519"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 565e26513c..7215a58182 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.771 Build 230518"; +my $version = "7.0NG.771 Build 230519"; # save program name for logging my $progname = basename($0); From efc2990a5c81f59806c8be3bf1017b4b81d1b950 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 19 May 2023 10:49:16 +0200 Subject: [PATCH 086/211] #11117 Fix homscreen in metaconsole --- pandora_console/extras/mr/64.sql | 16 ++++ .../godmode/users/configure_user.php | 6 ++ .../godmode/users/user_management.php | 75 +++++++++++-------- pandora_console/include/auth/mysql.php | 36 ++++++--- 4 files changed, 89 insertions(+), 44 deletions(-) create mode 100644 pandora_console/extras/mr/64.sql diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql new file mode 100644 index 0000000000..81253929b3 --- /dev/null +++ b/pandora_console/extras/mr/64.sql @@ -0,0 +1,16 @@ +START TRANSACTION; + +UPDATE `tnetwork_component` + SET module_enabled=1 +WHERE name='Cisco _nameOID_ power state'; + +ALTER TABLE `tlayout_data` +ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; + +ALTER TABLE `tusuario` +ADD COLUMN `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default' AFTER `data_section`; + +ALTER TABLE `tusuario` +ADD COLUMN `metaconsole_data_section` VARCHAR(255) NOT NULL DEFAULT '' AFTER `metaconsole_section`; + +COMMIT; diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 2f01df4a55..c05e486b81 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -73,6 +73,12 @@ if ($id !== $config['id_user']) { // ID given as parameter. $pure = get_parameter('pure', 0); $user_info = get_user_info($id); + +if (is_metaconsole() === true) { + $user_info['section'] = $user_info['metaconsole_section']; + $user_info['data_section'] = $user_info['metaconsole_data_section']; +} + $is_err = false; if (is_ajax() === true) { diff --git a/pandora_console/godmode/users/user_management.php b/pandora_console/godmode/users/user_management.php index 45c54306ce..8df367d263 100644 --- a/pandora_console/godmode/users/user_management.php +++ b/pandora_console/godmode/users/user_management.php @@ -608,42 +608,51 @@ $userManagementTable->data['fields_blocksize_eventfilter'][1] = html_print_selec false, false ); -if (is_metaconsole() === false) { - // Home screen table. - $homeScreenTable = new stdClass(); - $homeScreenTable->class = 'w100p full_section'; - $homeScreenTable->id = 'home_screen_table'; - $homeScreenTable->style = []; - $homeScreenTable->rowclass = []; - $homeScreenTable->data = []; - // Home screen. - $homeScreenTable->data['captions_homescreen'][0] = __('Home screen'); - $homeScreenTable->colspan['captions_homescreen'][0] = 2; - $homeScreenTable->rowclass['captions_homescreen'] = 'field_half_width'; - $homeScreenTable->rowclass['fields_homescreen'] = 'field_half_width flex'; - $homeScreenTable->data['fields_homescreen'][0] = html_print_select( - $homeScreenValues, - 'section', - io_safe_output($user_info['section']), - 'show_data_section();', - '', - -1, - true, - false, - false - ); - $homeScreenTable->data['fields_homescreen'][1] = html_print_div( - [ - 'class' => 'w100p', - 'content' => $customHomeScreenDataField, - ], - true - ); - $userManagementTable->rowclass['homescreen_table'] = 'w100p'; - $userManagementTable->data['homescreen_table'] = html_print_table($homeScreenTable, true); +// Home screen table. +$homeScreenTable = new stdClass(); +$homeScreenTable->class = 'w100p full_section'; +$homeScreenTable->id = 'home_screen_table'; +$homeScreenTable->style = []; +$homeScreenTable->rowclass = []; +$homeScreenTable->data = []; +// Home screen. +$homeScreenTable->data['captions_homescreen'][0] = __('Home screen'); +$homeScreenTable->colspan['captions_homescreen'][0] = 2; +$homeScreenTable->rowclass['captions_homescreen'] = 'field_half_width'; +$homeScreenTable->rowclass['fields_homescreen'] = 'field_half_width flex'; + +$selected_homescreen = $user_info['section']; +foreach ($homeScreenValues as $key => $value) { + if ($value === $selected_homescreen) { + $selected_homescreen = $key; + break; + } } +$homeScreenTable->data['fields_homescreen'][0] = html_print_select( + $homeScreenValues, + 'section', + $selected_homescreen, + 'show_data_section();', + '', + -1, + true, + false, + false +); +$homeScreenTable->data['fields_homescreen'][1] = html_print_div( + [ + 'class' => 'w100p', + 'content' => $customHomeScreenDataField, + ], + true +); + +$userManagementTable->rowclass['homescreen_table'] = 'w100p'; +$userManagementTable->data['homescreen_table'] = html_print_table($homeScreenTable, true); + + if (is_metaconsole() === true && users_is_admin() === true) { $userManagementTable->rowclass['search_custom1_looknfeel'] = 'field_half_width'; $userManagementTable->rowclass['search_custom2_looknfeel'] = 'field_half_width flex-column'; diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 9783c609b6..cd6f8f056f 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -801,13 +801,31 @@ function update_user(string $id_user, array $values) return false; } - if (is_metaconsole() === true) { - unset($values['id_skin']); - unset($values['section']); - unset($values['default_event_filter']); - $update_user_metaconsole = true; - } else { - $update_user_metaconsole = false; + if (isset($values['section']) === true) { + $homeScreenValues = [ + HOME_SCREEN_DEFAULT => __('Default'), + HOME_SCREEN_VISUAL_CONSOLE => __('Visual console'), + HOME_SCREEN_EVENT_LIST => __('Event list'), + HOME_SCREEN_GROUP_VIEW => __('Group view'), + HOME_SCREEN_TACTICAL_VIEW => __('Tactical view'), + HOME_SCREEN_ALERT_DETAIL => __('Alert detail'), + HOME_SCREEN_EXTERNAL_LINK => __('External link'), + HOME_SCREEN_OTHER => __('Other'), + HOME_SCREEN_DASHBOARD => __('Dashboard'), + ]; + + if (array_key_exists($values['section'], $homeScreenValues) === true) { + $values['section'] = $homeScreenValues[$values['section']]; + } + + if (is_metaconsole() === true) { + $values['metaconsole_section'] = $values['section']; + $values['metaconsole_data_section'] = $values['data_section']; + unset($values['id_skin']); + unset($values['section']); + unset($values['data_section']); + unset($values['default_event_filter']); + } } $output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]); @@ -847,10 +865,6 @@ function update_user(string $id_user, array $values) } } - if ($update_user_metaconsole === true) { - $output = 1; - } - return $output; } From c204558a579fa08dbe0cf112adafd43b5e5d45c8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 19 May 2023 11:00:39 +0200 Subject: [PATCH 087/211] #11288 fixed icon gis in agent --- pandora_console/godmode/agentes/agent_manager.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..e89dd671c9 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -754,13 +754,14 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( false, true, 'w540px' - ).html_print_image( + ).'
'.html_print_image( $path_ok, true, [ 'id' => 'icon_ok', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] ).html_print_image( $path_bad, @@ -768,7 +769,8 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( [ 'id' => 'icon_bad', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] ).html_print_image( $path_warning, @@ -776,9 +778,10 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( [ 'id' => 'icon_warning', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] - ) + ).'
' ); // Url address. From 94cdd624fa60e7aeff76704a20e4f5a8707e403d Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 19 May 2023 13:10:19 +0200 Subject: [PATCH 088/211] #11289 fixed autocomplete url address in agent --- pandora_console/godmode/agentes/agent_manager.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..2e9e73f376 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -795,8 +795,6 @@ if (enterprise_installed() === true) { '', 'w540px', '', - // Autocomplete. - 'new-password' ); } else { $urlAddressInput = html_print_input_text( From e0781801acb65e6a2c96ca5315e755374a4678da Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 19 May 2023 13:40:20 +0200 Subject: [PATCH 089/211] #11117 add new tusuario columns on pandoradb.sql --- pandora_console/pandoradb.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 38ce21bc71..b55330a42f 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1296,6 +1296,8 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `shortcut_data` TEXT, `section` TEXT, `data_section` TEXT, + `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default', + `metaconsole_data_section` VARCHAR(255) NOT NULL DEFAULT '', `force_change_pass` TINYINT UNSIGNED NOT NULL DEFAULT 0, `last_pass_change` DATETIME, `last_failed_login` DATETIME, From 16a3a2011deff4c0d744d7a38eea073b34ebb742 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 20 May 2023 01:00:15 +0200 Subject: [PATCH 090/211] 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 4e0e77fea2..0adbfca6e0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230519 +Version: 7.0NG.771-230520 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 eb5ec84530..7c2b403c38 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.771-230519" +pandora_version="7.0NG.771-230520" 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 c4bc56f416..d515011882 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230519'; +use constant AGENT_BUILD => '230520'; # 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 05f17c036f..d83c8a689c 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230519 +%define release 230520 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 a538b7dfbc..84a661d432 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230519 +%define release 230520 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 0d95a0e1d5..0994b4e2ee 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230519" +PI_BUILD="230520" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7ecb5ca020..e031a57f7d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230519} +{230520} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 77a2b2f710..b0aaf07bb4 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.771 Build 230519") +#define PANDORA_VERSION ("7.0NG.771 Build 230520") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 15b02c04f3..50b37d8c21 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.771(Build 230519))" + VALUE "ProductVersion", "(7.0NG.771(Build 230520))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9db5bdb34e..14c2257b7c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230519 +Version: 7.0NG.771-230520 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 bac0db7493..a288f572b7 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.771-230519" +pandora_version="7.0NG.771-230520" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 88cb0e4800..f375f070fd 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 = 'PC230519'; +$build_version = 'PC230520'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 680d80bd0e..123692a7e9 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 3779b83e29..d09fddc48d 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230519 +%define release 230520 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 59d6c14aa8..1c7df88d10 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230519 +%define release 230520 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 106f2ce9b4..021e8982a2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230519" +PI_BUILD="230520" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 6707bcdff4..58f6c1392f 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.771 Build 230519"; +my $version = "7.0NG.771 Build 230520"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 7215a58182..8f7c147a8a 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.771 Build 230519"; +my $version = "7.0NG.771 Build 230520"; # save program name for logging my $progname = basename($0); From ae1f31043a1c6851e79004341d3473fd3e4edfa3 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 21 May 2023 01:00:17 +0200 Subject: [PATCH 091/211] 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 0adbfca6e0..ad35580115 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230520 +Version: 7.0NG.771-230521 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 7c2b403c38..ae8854a6ff 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.771-230520" +pandora_version="7.0NG.771-230521" 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 d515011882..a786026d64 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230520'; +use constant AGENT_BUILD => '230521'; # 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 d83c8a689c..b6e2710c96 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230520 +%define release 230521 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 84a661d432..960eaddd3b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230520 +%define release 230521 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 0994b4e2ee..b24ce2de18 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230520" +PI_BUILD="230521" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index e031a57f7d..f55ba42092 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230520} +{230521} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index b0aaf07bb4..37359b8047 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.771 Build 230520") +#define PANDORA_VERSION ("7.0NG.771 Build 230521") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 50b37d8c21..1c9dbd07ce 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.771(Build 230520))" + VALUE "ProductVersion", "(7.0NG.771(Build 230521))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 14c2257b7c..80f8ebca28 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230520 +Version: 7.0NG.771-230521 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 a288f572b7..0a2547cc1d 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.771-230520" +pandora_version="7.0NG.771-230521" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f375f070fd..7a892aa5f8 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 = 'PC230520'; +$build_version = 'PC230521'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 123692a7e9..f2be200e90 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index d09fddc48d..5a44900ec9 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230520 +%define release 230521 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 1c7df88d10..c5a92b2c47 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230520 +%define release 230521 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 021e8982a2..338097ad45 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230520" +PI_BUILD="230521" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 58f6c1392f..d36b9fb973 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.771 Build 230520"; +my $version = "7.0NG.771 Build 230521"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 8f7c147a8a..6adfabf226 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.771 Build 230520"; +my $version = "7.0NG.771 Build 230521"; # save program name for logging my $progname = basename($0); From 5888a26e376c58eab2d95740e463888e1bdfdd5e Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 22 May 2023 01:00:17 +0200 Subject: [PATCH 092/211] 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 ad35580115..09387bceaf 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230521 +Version: 7.0NG.771-230522 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 ae8854a6ff..04997ef393 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.771-230521" +pandora_version="7.0NG.771-230522" 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 a786026d64..a8957a008f 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230521'; +use constant AGENT_BUILD => '230522'; # 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 b6e2710c96..9a920daf1f 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230521 +%define release 230522 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 960eaddd3b..fe1ce87ff1 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230521 +%define release 230522 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 b24ce2de18..a219b6c42d 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230521" +PI_BUILD="230522" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index f55ba42092..a552e59ab8 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230521} +{230522} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 37359b8047..a6e4bfe216 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.771 Build 230521") +#define PANDORA_VERSION ("7.0NG.771 Build 230522") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 1c9dbd07ce..1ec84a95fd 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.771(Build 230521))" + VALUE "ProductVersion", "(7.0NG.771(Build 230522))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 80f8ebca28..0f4bd9467b 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230521 +Version: 7.0NG.771-230522 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 0a2547cc1d..c1b185b699 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.771-230521" +pandora_version="7.0NG.771-230522" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7a892aa5f8..492cd1f596 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 = 'PC230521'; +$build_version = 'PC230522'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index f2be200e90..76d5ea73dc 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5a44900ec9..fa947b6803 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230521 +%define release 230522 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index c5a92b2c47..9c3c234965 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230521 +%define release 230522 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 338097ad45..6fd55c64b2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230521" +PI_BUILD="230522" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d36b9fb973..7a07d7b207 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.771 Build 230521"; +my $version = "7.0NG.771 Build 230522"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 6adfabf226..fd18746326 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.771 Build 230521"; +my $version = "7.0NG.771 Build 230522"; # save program name for logging my $progname = basename($0); From 6a1f389109834eea33f5cc693a02044759c11392 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 22 May 2023 09:38:01 +0200 Subject: [PATCH 093/211] #11229 Add input text for new filter name --- pandora_console/operation/netflow/nf_live_view.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php index ceaa2249e6..06dffcaa9f 100644 --- a/pandora_console/operation/netflow/nf_live_view.php +++ b/pandora_console/operation/netflow/nf_live_view.php @@ -85,7 +85,7 @@ if (is_ajax() === true) { // Read filter configuration. $filter_id = (int) get_parameter('filter_id', 0); -$filter['id_name'] = get_parameter('name', ''); +$filter['id_name'] = get_parameter('new_filter_name', ''); $filter['id_group'] = (int) get_parameter('assign_group', 0); $filter['aggregate'] = get_parameter('aggregate', ''); $filter['ip_dst'] = get_parameter('ip_dst', ''); @@ -162,6 +162,10 @@ if ($save != '' && check_acl($config['id_user'], 0, 'AW')) { // Save filter args. $filter['filter_args'] = netflow_get_filter_arguments($filter, true); + if ($filter['id_name'] === '') { + $filter['id_name'] = 'Netflow_Filter_'.time(); + } + $filter_id = db_process_sql_insert('tnetflow_filter', $filter); if ($filter_id === false) { $filter_id = 0; @@ -380,6 +384,9 @@ $advanced_toggle .= ''.html_print_checkbox_switch( 'displayMonitoringFilter()', ).''; +$advanced_toggle .= ''.__('New filter name').''; +$advanced_toggle .= ''.html_print_input_text('new_filter_name', '', false, 40, 80, true).''; + $advanced_toggle .= ''; $advanced_toggle .= "".__('Netflow monitoring interval').ui_print_help_tip(__('Netflow monitoring interval in secs.'), true).''; $advanced_toggle .= ''.html_print_input_number( From efc96d96616d299a2b157ae4a0f1a8213a8aa780 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 22 May 2023 10:01:57 +0200 Subject: [PATCH 094/211] #11299 added avanced mode agent in open version --- .../godmode/agentes/agent_manager.php | 77 ++++++++++--------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..10f35549ea 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -295,25 +295,25 @@ if (enterprise_installed() === true) { $cps_val = $cps; } } +} - // Parent agents. - $paramsParentAgent = []; - $paramsParentAgent['return'] = true; - $paramsParentAgent['show_helptip'] = false; - $paramsParentAgent['input_name'] = 'id_parent'; - $paramsParentAgent['print_hidden_input_idagent'] = true; - $paramsParentAgent['hidden_input_idagent_name'] = 'id_agent_parent'; - $paramsParentAgent['hidden_input_idagent_value'] = $id_parent; - $paramsParentAgent['value'] = db_get_value('alias', 'tagente', 'id_agente', $id_parent); - $paramsParentAgent['selectbox_id'] = 'cascade_protection_module'; - $paramsParentAgent['javascript_is_function_select'] = true; - $paramsParentAgent['cascade_protection'] = true; - $paramsParentAgent['input_style'] = 'width: 100%;'; +// Parent agents. +$paramsParentAgent = []; +$paramsParentAgent['return'] = true; +$paramsParentAgent['show_helptip'] = false; +$paramsParentAgent['input_name'] = 'id_parent'; +$paramsParentAgent['print_hidden_input_idagent'] = true; +$paramsParentAgent['hidden_input_idagent_name'] = 'id_agent_parent'; +$paramsParentAgent['hidden_input_idagent_value'] = $id_parent; +$paramsParentAgent['value'] = db_get_value('alias', 'tagente', 'id_agente', $id_parent); +$paramsParentAgent['selectbox_id'] = 'cascade_protection_module'; +$paramsParentAgent['javascript_is_function_select'] = true; +$paramsParentAgent['cascade_protection'] = true; +$paramsParentAgent['input_style'] = 'width: 100%;'; - if ($id_agente !== 0) { - // Deletes the agent's offspring. - $paramsParentAgent['delete_offspring_agents'] = $id_agente; - } +if ($id_agente !== 0) { + // Deletes the agent's offspring. + $paramsParentAgent['delete_offspring_agents'] = $id_agente; } $listIcons = gis_get_array_list_icons(); @@ -631,15 +631,18 @@ $tableAdvancedAgent->style = []; $tableAdvancedAgent->cellclass = []; $tableAdvancedAgent->colspan = []; $tableAdvancedAgent->rowspan = []; -// Secondary groups. -$tableAdvancedAgent->data['secondary_groups'][] = html_print_label_input_block( - __('Secondary groups'), - html_print_select_agent_secondary( - $agent, - $id_agente, - ['selected_post' => $secondary_groups] - ) -); + +if (enterprise_installed() === true) { + // Secondary groups. + $tableAdvancedAgent->data['secondary_groups'][] = html_print_label_input_block( + __('Secondary groups'), + html_print_select_agent_secondary( + $agent, + $id_agente, + ['selected_post' => $secondary_groups] + ) + ); +} // Parent agent. $tableAdvancedAgent->data['parent_agent'][] = html_print_label_input_block( @@ -903,18 +906,16 @@ $tableAdvancedAgent->data['safe_operation'][] = html_print_label_input_block( ) ); -if (enterprise_installed() === true) { - ui_toggle( - html_print_table($tableAdvancedAgent, true), - ''.__('Advanced options').'', - '', - '', - true, - false, - 'white_box_content', - 'no-border white_table_graph' - ); -} +ui_toggle( + html_print_table($tableAdvancedAgent, true), + ''.__('Advanced options').'', + '', + '', + true, + false, + 'white_box_content', + 'no-border white_table_graph' +); // Custom fields. $customOutputData = ''; From 466e44681d6a1ab2bb80a8faf67bb21e593cf7bb Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 22 May 2023 10:37:52 +0200 Subject: [PATCH 095/211] #11282 Fixed basic chart --- .../include/graphs/flot/pandora.flot.js | 40 ++++++++++--------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index ee99a0ad4f..4be0fd1f79 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -1975,25 +1975,27 @@ function pandoraFlotArea( !(type == 1 && /percentil/.test(index) == true) && !(type == 3 && /percentil/.test(index) == true) ) { - data_base.push({ - id: "serie_" + i, - data: value.data, - label: index, - color: color[index]["color"], - lines: { - show: line_show, - fill: filled, - lineWidth: lineWidth, - steps: steps_chart - }, - points: { - show: points_show, - radius: radius, - fillColor: fill_points, - fill: filled - }, - legend: legend.index - }); + if (color[index] !== null) { + data_base.push({ + id: "serie_" + i, + data: value.data, + label: index, + color: color[index]["color"], + lines: { + show: line_show, + fill: filled, + lineWidth: lineWidth, + steps: steps_chart + }, + points: { + show: points_show, + radius: radius, + fillColor: fill_points, + fill: filled + }, + legend: legend.index + }); + } } } i++; From a6415b1d8e40de77ac44ccdf93a3a4f05afbf049 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 22 May 2023 10:45:26 +0200 Subject: [PATCH 096/211] #11281 fixed agent installer --- pandora_console/include/class/AgentDeployWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentDeployWizard.class.php b/pandora_console/include/class/AgentDeployWizard.class.php index 9e76960b22..7cd19859a0 100644 --- a/pandora_console/include/class/AgentDeployWizard.class.php +++ b/pandora_console/include/class/AgentDeployWizard.class.php @@ -662,7 +662,7 @@ class AgentDeployWizard var group_val = $('[name="group"] option:selected').text(); var win_installer_command = `Invoke-WebRequest -Uri https://firefly.pandorafms.com/pandorafms/latest/Windows/Pandora%20FMS%20Windows%20Agent%20v7.0NG.x86_64.exe -OutFile \$\{env:tmp\}\\\pandora-agent-windows.exe; & \$\{env:tmp\}\\\pandora-agent-windows.exe /S --ip ${server_addr_val} --group \"${group_val}\" --remote_config 1`; - var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\ \nexport PANDORA_REMOTE_CONFIG=1 && \\ \nexport PANDORA_GROUP='${group_val}' && \\ \ncurl -Ls https://pfms.me/agent-deploy | bash`; + var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\\nexport PANDORA_REMOTE_CONFIG=1 && \\\nexport PANDORA_GROUP='${group_val}' && \\\ncurl -Ls https://pfms.me/agent-deploy | bash`; var mac_installer_text = `To complete the installation process, please perform a manual installation and configure the server IP to ${server_addr_val} and specify the group as ${group_val}. Thank you for your cooperation`; var linux_service_start = "/etc/init.d/pandora_agent_daemon start"; var win_service_start = "NET START PandoraFMSAgent"; From 5fe0f7fb084080c37a8576ceb0c21070f467c42d Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 22 May 2023 11:39:59 +0200 Subject: [PATCH 097/211] #11140 fix style message warning --- pandora_console/godmode/servers/servers.build_table.php | 9 ++++++--- pandora_console/include/ajax/module.php | 3 ++- pandora_console/include/functions_clippy.php | 8 ++++++-- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index fe74c172c8..b38ff6591a 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -167,19 +167,22 @@ foreach ($servers as $server) { break; } - $data[6] = $server['threads'].' : '.$server['queued_modules']; + $data[6] = ''; if ($server['queued_modules'] > 500) { - $data[6] .= '    '; } + $data[6] .= $server['threads'].' : '.$server['queued_modules']; + $data[7] = ui_print_timestamp($server['keepalive'], true); diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 78751eb001..995745f38b 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1155,7 +1155,6 @@ if (check_login()) { $last_status_change_text = __('Time elapsed since last status change: '); $last_status_change_text .= (empty($module['last_status_change']) === false) ? human_time_comparation($module['last_status_change']) : __('N/A'); - $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text); if ($show_context_help_first_time === false) { $show_context_help_first_time = true; @@ -1164,6 +1163,8 @@ if (check_login()) { } } + $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text); + // Module thresholds. $data[5] = ''; if ((int) $module['id_tipo_modulo'] !== 25) { diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php index 8dbaaaa780..2b883df434 100644 --- a/pandora_console/include/functions_clippy.php +++ b/pandora_console/include/functions_clippy.php @@ -297,8 +297,12 @@ function clippy_context_help($help=null) $code = str_replace('{clippy_obj}', 'intro_'.$id, $code); $return = $code.' '; @@ -7968,4 +7969,4 @@ function ui_update_name_fav_element($id_element, $section, $label) 'id_element' => $id_element, ] ); -} \ No newline at end of file +} From b9400e73b4aa6194063a0bc06a989f50f48c35c9 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 23 May 2023 12:48:01 +0200 Subject: [PATCH 117/211] #11304 adjusted the size of the modal create module and the width of the select --- pandora_console/godmode/agentes/module_manager.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index f436894545..1c6126467f 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -1105,8 +1105,9 @@ $createModuleTable->data[0][] = html_print_label_input_block( false, '', false, - 'width:250px;' - ) + 'width:350px;' + ), + ['div_style' => 'margin-top: 25px;'], ); $createModuleTable->data[1][] = html_print_label_input_block( @@ -1134,8 +1135,9 @@ $modalCreateModule .= html_print_div( 'modal_button_create', false, [ - 'icon' => 'next', - 'mode' => 'mini secondary', + 'icon' => 'next', + 'mode' => 'mini secondary', + 'style' => 'margin-top: 140px;', ], true ), @@ -1162,8 +1164,8 @@ html_print_div( draggable: true, modal: true, close: false, - height: 222, - width: 480, + height: 400, + width: 495, overlay: { opacity: 0.5, background: "black" From bbd86792350ff119dabd81def7a614d43f7a590a Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 23 May 2023 13:39:40 +0200 Subject: [PATCH 118/211] #11149 Fix conditional when selected is string and value is integer --- pandora_console/include/functions_html.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 91d4cd734e..55f444771a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -903,6 +903,11 @@ function html_print_select( ) { // This fixes string ($value) to int ($selected) comparisons $output .= ' selected="selected"'; + } else if (is_numeric($value) && is_string($selected)) { + $str_value = strval($value); + if ($str_value === $selected) { + $output .= ' selected="selected"'; + } } else if ($value === $selected) { // Needs type comparison otherwise if $selected = 0 and $value = "string" this would evaluate to true $output .= ' selected="selected"'; @@ -2155,6 +2160,7 @@ function html_print_extended_select_for_time( } ob_start(); + hd($fields, true); // Use the no_meta parameter because this image is only in the base console. echo '
'; html_print_select( From e1a10ef5c3dc7b1706b8ae339041e80a962d1235 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 23 May 2023 13:41:32 +0200 Subject: [PATCH 119/211] #11149 Delete hd --- pandora_console/include/functions_html.php | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 55f444771a..f3a23ce1e8 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2160,7 +2160,6 @@ function html_print_extended_select_for_time( } ob_start(); - hd($fields, true); // Use the no_meta parameter because this image is only in the base console. echo '
'; html_print_select( From 5a9fcbde9557b522cbef29b9cf5fd046bcc713c1 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 23 May 2023 15:12:06 +0200 Subject: [PATCH 120/211] #11302 Fixed bugs in modal UI about --- pandora_console/include/functions_menu.php | 44 +++++++++---------- pandora_console/include/styles/pandora.css | 7 +-- .../include/styles/pandora_black.css | 5 --- 3 files changed, 23 insertions(+), 33 deletions(-) diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 1b4aded0bd..6d60af2bf1 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -957,7 +957,7 @@ if (is_ajax()) {

'.$product_name.'

'.__('Version').' '.$pandora_version.' - '.(enterprise_installed() ? 'Enterprise' : 'Community').'

'.__('MR version').' MR'.$config['MR'].'

-

'.__('Build').' '.$build_version.'

+

Build'.$build_version.'

'.__('Support expires').''.$license_expiry_date.'

'; if (((bool) check_acl($config['id_user'], 0, 'PM') === true) && (is_metaconsole() === false)) { @@ -970,7 +970,7 @@ if (is_ajax()) { 'location.href="'.ui_get_full_url('/index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=history', false, false, false).'"', [ 'icon' => 'cog', - 'mode' => 'mini secondary', + 'mode' => 'secondary', ], true ); @@ -982,7 +982,7 @@ if (is_ajax()) { 'location.href="'.ui_get_full_url('/index.php?sec=gextensions&sec2=tools/diagnostics', false, false, false).'"', [ 'icon' => 'info', - 'mode' => 'mini secondary', + 'mode' => 'secondary', ], true ); @@ -1016,7 +1016,7 @@ if (is_ajax()) {

'.$db_health->data->unknownAgents->name.'

-

'.$db_health->data->unknownAgents->value.'

+

'.$db_health->data->unknownAgents->value.'

@@ -1024,7 +1024,7 @@ if (is_ajax()) {

'.$db_health->data->notInitAgents->name.'

-

'.$db_health->data->notInitAgents->value.'

+

'.$db_health->data->notInitAgents->value.'

@@ -1032,7 +1032,7 @@ if (is_ajax()) {

'.$db_health->data->pandoraDbLastRun->name.'

-

'.$db_health->data->pandoraDbLastRun->value.'

+

'.$db_health->data->pandoraDbLastRun->value.'

@@ -1046,7 +1046,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeFirstVersion->name.'

-

'.$db_info->data->dbSchemeFirstVersion->value.'

+

'.$db_info->data->dbSchemeFirstVersion->value.'

@@ -1054,7 +1054,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeVersion->name.'

-

'.$db_info->data->dbSchemeVersion->value.'

+

'.$db_info->data->dbSchemeVersion->value.'

@@ -1062,7 +1062,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeBuild->name.'

-

'.$db_info->data->dbSchemeBuild->value.'

+

'.$db_info->data->dbSchemeBuild->value.'

@@ -1115,11 +1115,11 @@ if (is_ajax()) { - +

'.$sys_info->data->cpuInfo->name.'

-

'.$sys_info->data->cpuInfo->value.'

+

'.$sys_info->data->cpuInfo->value.'

@@ -1127,7 +1127,7 @@ if (is_ajax()) {

'.$sys_info->data->ramInfo->name.'

-

'.$sys_info->data->ramInfo->value.'

+

'.$sys_info->data->ramInfo->value.'

@@ -1135,7 +1135,7 @@ if (is_ajax()) {

'.$sys_info->data->osInfo->name.'

-

'.$sys_info->data->osInfo->value.'

+

'.$sys_info->data->osInfo->value.'

@@ -1143,7 +1143,7 @@ if (is_ajax()) {

'.$sys_info->data->hostnameInfo->name.'

-

'.$sys_info->data->hostnameInfo->value.'

+

'.$sys_info->data->hostnameInfo->value.'

@@ -1151,7 +1151,7 @@ if (is_ajax()) {

'.$sys_info->data->ipInfo->name.'

-

'.$sys_info->data->ipInfo->value.'

+

'.$sys_info->data->ipInfo->value.'

@@ -1159,7 +1159,7 @@ if (is_ajax()) {

'.$system_date->data->date->name.'

-

'.$system_date->data->date->value.'

+

'.$system_date->data->date->value.'

@@ -1174,11 +1174,11 @@ if (is_ajax()) { - +

'.$php_sys->data->phpVersion->name.'

-

'.$php_sys->data->phpVersion->value.'

+

'.$php_sys->data->phpVersion->value.'

@@ -1186,7 +1186,7 @@ if (is_ajax()) {

'.$php_sys->data->maxExecutionTime->name.'

-

'.$php_sys->data->maxExecutionTime->value.'

+

'.$php_sys->data->maxExecutionTime->value.'

@@ -1194,7 +1194,7 @@ if (is_ajax()) {

'.$php_sys->data->maxInputTime->name.'

-

'.$php_sys->data->maxInputTime->value.'

+

'.$php_sys->data->maxInputTime->value.'

@@ -1202,7 +1202,7 @@ if (is_ajax()) {

'.$php_sys->data->memoryLimit->name.'

-

'.$php_sys->data->memoryLimit->value.'

+

'.$php_sys->data->memoryLimit->value.'

@@ -1210,7 +1210,7 @@ if (is_ajax()) {

'.$php_sys->data->sessionLifetime->name.'

-

'.$php_sys->data->sessionLifetime->value.'

+

'.$php_sys->data->sessionLifetime->value.'

diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index ef19fbdb13..43cc9106e7 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -10249,7 +10249,7 @@ button.submitButton { justify-content: space-between; flex-direction: row; min-width: 110px; - height: 42px; + height: 45px; font-size: 14px; /*font-family: "lato";*/ align-items: center; @@ -11557,11 +11557,6 @@ p.trademark-copyright { overflow: hidden; } -#tab-database { - height: 80%; - overflow: auto; -} - .item_status_tree_view { position: absolute; top: 7px; diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index e6e2710d7c..1b95063c7c 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1389,11 +1389,6 @@ p.trademark-copyright { overflow: hidden; } -#tab-database { - height: 80%; - overflow: auto; -} - button.buttonButton, button.submitButton { box-shadow: 0px 3px 6px #111; From 4bf98a82c2396abd1b78aa6c8d2c74919ce9fc66 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 16:27:02 +0200 Subject: [PATCH 121/211] #11320 fixed pdf histogram --- pandora_console/include/functions_reporting.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 5adae9abf7..e488cdf92e 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -15845,6 +15845,11 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) ]; $width_graph = 100; + if ($metaconsole_on && $server_name != '') { + // Restore db connection. + metaconsole_restore_db(); + } + if (empty($array_result) === false) { $return['chart'] = flot_slicesbar_graph( $array_result, @@ -15871,11 +15876,6 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) $return['chart'] = graph_nodata_image(['height' => $height_graph]); } - if ($metaconsole_on && $server_name != '') { - // Restore db connection. - metaconsole_restore_db(); - } - return reporting_check_structure_content($return); } From e77657a1219a443b3679086729144c5df40a9d3a Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 23 May 2023 17:56:41 +0200 Subject: [PATCH 122/211] Fix nmap os detection with OS details --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index f17d2c5363..a556334ee0 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -433,7 +433,7 @@ sub PandoraFMS::Recon::Base::guess_os($$;$) { return OS_OTHER if ($? != 0); my $str_os; if ($return =~ /Aggressive OS guesses:\s*(.*)|OS details:\s(.*)/) { - if($1 ne "") { + if(defined($1) && $1 ne "") { $str_os = $1; } else { $str_os = $2; From 6b17837c4d96802be1a1fd5f58116e3a2fdb7ae8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 18:02:03 +0200 Subject: [PATCH 123/211] #11318 added funcion for validate sql --- .../godmode/reporting/reporting_builder.php | 9 ++++--- pandora_console/include/functions_db.php | 25 +++++++++++++++++++ 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index cd049f1d83..4e6e39fe19 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -2197,9 +2197,12 @@ switch ($action) { 'id_custom' ); if ($values['treport_custom_sql_id'] == 0) { - $values['external_source'] = get_parameter( - 'sql' - ); + $sql = get_parameter('sql', ''); + if ($sql !== '') { + $good_format = db_validate_sql($sql); + } + + $values['external_source'] = get_parameter('sql'); } $values['historical_db'] = get_parameter( diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 1bd96221e9..aa21543ee6 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -2555,3 +2555,28 @@ function db_get_column_type(string $table, string $column='') return $result; } + + +/** + * Validate sql query. + * + * @param string $sql Query for validate. + * + * @return boolean True if query is valid. + */ +function db_validate_sql(string $sql) +{ + try { + error_reporting(0); + db_process_sql_begin(); + $result = db_process_sql(io_safe_output($sql)); + } catch (Exception $e) { + // Catch all posible errors. + $result = false; + } finally { + db_process_sql_rollback(); + error_reporting(E_ALL); + } + + return ($result !== false) ? true : false; +} From 25d1b2a5cd2af3b6b0d6328298137c596f4caf59 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 18:05:14 +0200 Subject: [PATCH 124/211] #11318 added funcion for validate sql when create item --- .../godmode/reporting/reporting_builder.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 4e6e39fe19..8b286b70ce 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -2202,7 +2202,7 @@ switch ($action) { $good_format = db_validate_sql($sql); } - $values['external_source'] = get_parameter('sql'); + $values['external_source'] = $sql; } $values['historical_db'] = get_parameter( @@ -2939,9 +2939,12 @@ switch ($action) { 'id_custom' ); if ($values['treport_custom_sql_id'] == 0) { - $values['external_source'] = get_parameter( - 'sql' - ); + $sql = get_parameter('sql', ''); + if ($sql !== '') { + $good_format = db_validate_sql($sql); + } + + $values['external_source'] = $sql; } $values['historical_db'] = get_parameter( From 6904cec4a6c2d366adb217f22f6d81523623ce5a Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 24 May 2023 01:00:21 +0200 Subject: [PATCH 125/211] 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 765884f534..2203291695 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230523 +Version: 7.0NG.771-230524 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 3e06c80fdd..f9160c0f5c 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.771-230523" +pandora_version="7.0NG.771-230524" 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 a5a6571877..3fd3989614 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230523'; +use constant AGENT_BUILD => '230524'; # 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 ba20e44bb4..d52585d984 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230523 +%define release 230524 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 afff86d16b..486dc69d55 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230523 +%define release 230524 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 9ac6ad0a78..0c889f78bc 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230523" +PI_BUILD="230524" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 71e424d2d8..381e0cd72d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230523} +{230524} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index a7edea17cb..3db581ee83 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.771 Build 230523") +#define PANDORA_VERSION ("7.0NG.771 Build 230524") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 6fcb93bf91..e1abd5469d 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.771(Build 230523))" + VALUE "ProductVersion", "(7.0NG.771(Build 230524))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 978eb9ab42..9d471d88c9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230523 +Version: 7.0NG.771-230524 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 2f07a836b3..b1c8e42812 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.771-230523" +pandora_version="7.0NG.771-230524" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index ace0bed42b..7a795464ff 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 = 'PC230523'; +$build_version = 'PC230524'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 1195fabb90..6d195db5a8 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index f59d63ed42..b5bd488eeb 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230523 +%define release 230524 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ec66b3fe3f..f916f1d67b 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230523 +%define release 230524 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 5957944ffa..17cc585f51 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230523" +PI_BUILD="230524" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 071c2b116b..91c5570925 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.771 Build 230523"; +my $version = "7.0NG.771 Build 230524"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 95e9482024..80a13f578d 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.771 Build 230523"; +my $version = "7.0NG.771 Build 230524"; # save program name for logging my $progname = basename($0); From c0a21a44ebd3d332a1b46fd590ce6ada51eea23a Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Wed, 24 May 2023 11:26:49 +0900 Subject: [PATCH 126/211] Fixed a wrong Japanese translation. --- pandora_console/include/languages/ja.mo | Bin 875781 -> 875775 bytes pandora_console/include/languages/ja.po | 5733 +++++++++++------------ 2 files changed, 2606 insertions(+), 3127 deletions(-) diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 1f1f600bd83f93e5eb9699fad0107b7084acdeb5..644e4e430c5349c30975a25d13a03fb270e14f25 100644 GIT binary patch delta 56660 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 GkNyv|<&pXT delta 56664 zcmXusb)Z#6*T?Zg-;kE>?(XjHF6nNh(?d7X9U`DKNQX#=lr)G)Dxfro$Rh~v_jlHM z|N88iJ$qtJ?0qkYANLd*x3|#9?NN?)3+4_40v9)i1+rq4O<{o?m>uIq4FnovcG8`{ z3kwv$Sy&8@V|fg02@52E3YY;KdwM7qCOr*5!K0W4FJLBoi7_$B*05k85f`bqh6R#h zL5z#FFa@^6j5q}Kz%o>W-(W7>jj8YfX2a;)tijx<`buC)Y=|1bOjLcxP#t@;EodYB zhYU54etTFTI%dNxm>V_X#u$z>+(np}^eR+`zjsgj{TrzI?tA_d_dO~CpX>+=q{jR~ zF4UuXSP2KB9^8lO;Sp2==iNIPkMs+Sz$iN{^q-(2mKT#_P1N(9QIYD8MR5gc>TY0O z45r>?1?!-u;xp99`yxvqun0BsrKkp1qe8wFE8=-K(Qdon-0g^ExZejS;dj^&i|+{w z)WGS;R0ab#xX_57q2}ywyAg=9*XBAMrX#-~YDA4azdb5415pti@A>Odk=T!_?-$Si z%Z>TH4Kx|1ru{%3E>y5~D1(rp8XE7;MlHJK?l$+hd)d;3w?mlZM4XXY^sQa}& zzm@W7KhU2Gjc}S5*o{*>V7*^{s2!;K{c=p)!-&ipK!0CBJEz0NzEuF~Cg_`S1sPkba zDzZCJ9XWiE{jY{^k)e(}bE6yz3&bG(DJn9_QRPaa%GLCAYfMkNH%7x*sMS8t?;k~# zzl_>$5B+}3!(oB0qzfKq|EqyzWN14aMD_3`Dgqx+6?}TcdYlE7U%_qW_C_^44i%|w zsDo!Ow!(j~J2pOQ9(HpFk6CCIp$?S&m<+F=Li-%mV65ZTKq}Pstbr-9A8KSXP)GG< zRQX>}C*BLxTF7|923iXBd}~aI!3kVwgo{ygy$My(CDel-P!A;e(JCn8wndd2gNocH z)bqF9=qD{=*--Z@p*lLy^XDS<1_N8T&=g!pRrt=+nNL}|Dr)Zgp*lJSYvVkukN5Ei z7Cmh*o%g7zC~(H6qAivp-33+ux2OnRz_{A~54lhe|3Qs7>shlLYDCSk69zs10qR8j zh*~S*KUw+27>9HoREJBW>aC4xIEck@9je~@SY7)+;#^pu7dApYa1_;%zfnDnbKcB| znu_A6mqkn@1=C{G3-(UPfSE~`#@N^qgGIUM$Auc)fDw2MHNx|# z5&nXq?StC4F)!Nv^r-teQ5`LYx?cx1rQJ~@pN9G#*p1p1&ru!8d5QgBmx~6Mtf#9` zH;$n?_5?M;OqZ>~YN)yIjyhQOdOGHnus|EqjZi1%PAr3;UbVMfLsW<6qdK?;wL7j{ zW&i5{3BP6!tTUucn=lHKEGJRCZXnf z4XOiYQTLytA{G|B5f;eDMQYTX)QphV{d$q3SEz1!vghiEmp;Mm=-JE3=1^J zj;IbFL`C8?w#WLnY=ApaQ~3s)VldHdd$1Sk#!1v%{o&~}cWk7kQK9RB192jr#gC{t zK6}@Eiz=7lo^`kkDm@(4u?6lKOr`xF_{~C+8r6X!s8BUVeUuJHjr?oRzlACn_}!jM zgKD5CYDyZScF}0mZrO(V@VMdWy!WkqQ_QaR`*WcNzd{|ohfodNKz%Cxi|To)2bTXi zD)ci@`PWem#(rq`OQYtvrKbm?%FXrslcZ!L>bZIDX4Inp5rf)ZkGW6}<36@XRB$_@A~69~ z!M9iz4|qE8#7??os42*XT050cU(Lf&i+U$2!oT|c52)=~=qdYOb2Q+o6~0 z7U!8Y*dDcwR^d!M>FE~F?VT_Z6_MGfso3x7=coZBe_;bChU!RtRJ;9O1g+;w$k1xu zjjCw;OUvJaS_5Z29q*MzDko}WZBQW|k7@CY-+zj%?m)V~tl=`K{oWMSfnKQXIU~r0 zLh%e$QSR5aIQpYTvI2Gg5}v|@e_O|HVQ6t;1@cS1vFAsjPR0|cMV9a%`_Zc$YB#k- zMRGEh!{BDW@e;NAlfMlMbi;zE0$-u#^e*b9lJtLOCDcgzqNZ#Pmd4*OHm3jAj`F-% zk#rNRf=fL8J66~J&-Tt5>W?b06C2ic0RYOzkkINJYfxzK~V-5*hF;Ad2*qJ6MMlohpTs-Whww>!@7FLw8O z{&mz8K1Vg2_G4I}G8RB}cqrzj{lIKp;8FK)FOZpWs-ZHd`;9z39#z2-Op7~EtNbcz zWPhUu6hDeRpAOZ5BA%{}D%S>s8qshr^uQ|AqS=mm;2tUxf1@IiHfne%0+mqrd!jlx z(w&DfNpC?Tc`p2hk7n|G<&XGv~c_RzX=(d+n%VoosJseLev~?MSTq)Kvj6n z@4s>5Mz{Q|r~y>*^Z-;x=Ad@V0ZfTeV}yscXPOv6>rp8()U&#%h_v_g6jaBSp(1e5 z)Av!Y)mSmZ0|}$>L4qn5jAhS%jjHb?M#Eom6y8CFzFn9_>WiRXj6;olDyqOd42>KW z;sdCPu3&V$jtccHzkeS!h3`>c|MIAS1>iT@W>b zlBkH(@%w{N9h-nTaSp27AykJh`~4fJ4*h`|z+2P+<3w8dq?l0qKL;0@(=wS?HE)0{}dN$;DX<{ zg*qxo6Q4#zGRo@9rgLhEn0`V*|Dc!;t)R|wG3q8;c z)!-P^89om+f>o#xZ$X7_AF9HOsD1qm^?aK6*72gKxi5pNua2kN`Tf4A`i8`3|0`5u z$&g>78d!j;aFges@cav?4n0J5;5A0YcnPfGgl=-w^XX6>D2`fVwNSgL2P(pS60rZZ z+6R#l+P|m~eT@b2B5FIuN@#Oi8r5(QR0R`JKXOgS3b+dM;UB0kpyZ$0a}7~bHyW$p zR`=f^7lp_upC~+#4F{t-u)@=q-2YJD2U!w_2gYMhRQffl!Qx45(e^-{cyqA~9>mbx zC$;>PsPmwT8yv`m3Veh5>GTk)1MgA$K3B5vKv`^r6>%Px!y8x{Qzf@u@)@f9L{!AS zLzR1oI(oCE2oL?Z-UHRa1IX?Q1|D&tRhl@Zg{&}^BHag7!6vMaFHj+_kjgqT0d@b3 zr{km!4}FL$hB2+GoO+`P{*YekxU;F=h=z`zLrd0;37Smy0td4U~2ghyH zS90uh*3ojP^21OO+k{*=V)x5>Tgen6GaoWtrbhI+0VD&nnk1j9o= zXbdA`EE(r<6gJ9fNA5MOO8Px&yH(0%2hbE$gA1@d9z=yWV{WrPDpDg+v2OoLAnF#9gs7ht@3)PkuOIzbN~n8T~9a5Z~4Pe z&n-m__?;SE%RX7qm~RlBn{{ zQT2^R-Cu@k_#~?S>&WxLz&kGV14Qyd*3+)23cf@&v=jT{5!8c)3)_@6MU~s=UUC0J zHJqu4l`n_d1?^G4M_B6q63S=)B`Innt%rKBGitGoK`ovosF7}Ve?pDqDXPN%Q0GGN zV%DKvsPgkr5!`{Q=QL^nw=fJj7>Ub3G2|OsETsAWl?k5 z02SgT$R}0c1ZvK2pneDql(d&sYE;KEdAcG7)x#QG==IwcHS+GLj*N9@qRK6Ex1&aU z3U#!8Ky@H*DJ$0k)zQyAJr>K5UW8@w7r&pPH2Yr#bC(Ve{r0;Y#wXnr)sb$f`(scY zn1|}<26rcZMfxDB!)?mg6!b(rHy2gU8c!cW)pHq>+m{J&FgIG^k9ZB! z;_`ADe_?O(4^^_Ym9MhZQww!oG!J^l zMAX4B7xi+ui&~6HtC$5*A+C$+`7jJc1U1qP?g7*sUqrn{U!o$Ar>aG!Dk@Taa2N(h zaG?tShdSXtt!4$9qrPxDV;Yp@JzPOEvk3#y{Ns1A-s?fV&?UWJKC zZ}t3>?oHGHUV8c+230}aI`%*+RJx#B9@X=@s0Z7lM%)wCf&Qr7FcuZDC8&u?W0hOX*KGB^{9@WMJ>+Dm>yrEM*L|5 zE0-OWu8E3JJ5Tq;IHV_{>Y48@3v!{Je}js|HdN>iqAIwJ>cDf6 zwy1LbQQK`Es=n`0+xkaTMB+5E=d+;72P<=-Mc2hMX1hC3Q*aH{lp`NelHb4!mIWmA?pc@yeU?gf4PeVQUHLBol)Z+Wm(-%<@ zyN8Ov3seMRHnou_b4#P1Z;vY154F7~p~^4Dgxdd`Jmau?#r?y5=f-Jf52kYqx>Zn- zYVHnnXSthD9XN%G^c_z}HfIX7|I=}yo>st|*uc{xQ5DZX^>_m+QU_4GCKu~jD zyhV8E&xTr~7WEd?33(f}rV@T;<@2N3>y1G*5cG`27+US9v;8cpg1C3gz@mdcIQihP>bZTW0h|kRQHG0{9j&3tsL+3o z>cB!zuSJdMg8LLzad;=|aC*0j+XL0mOjKl6VPD*W+GQC#TYj)87YaosRD+E@-3c}F zL8uB=pdz&yHFrOuI`qQxKj~r(=0HWDG)BjUm>HX)rgkLiAe)Muq`|;yE>zJ`RK<5t zBa7PADolauKyFW$K;5s6I#@cRUP8T40~qhlL!ErzViA0TTAUfX*+6n*p(yOXT3l@5 z#+dH*BUqsx_BvjMYT!I7l-E#;^bx89Z&3}#?`cz(4)c?)hU)Ne)W9a8>iGs$egmq$ zeY&sxe~t@<_A!>lh+g4=U$F*i^=IvEKV&vTt(6~8`Tx1O``9*Zjat03QHymqs@wxq z{YgGI3!^&J2!p!u85jCk9EMtzdr+^@7uW{N^tBN$M~z?)s)CcKke>JaUr-}|gc|uj zsJCdsewLra&4_v~UqAN0E=rK0kXCYAp+Y?fwV1}CMz$Drh95+|Y%Zc2e1cj#|3j_r z6#cE?JgANqK&_GDp01A(q?`3;|Es4R$WW+8q8i$QI{B_52U#FufW5zCV>Z$$Q5~s_ zy5AJF+FPLJwhiii-wzeB(WrsWLJf2YX22amzi}Nk;@?m`e(AnNRq)Y`JJ3G2)1dOp zx^+>JYUAmF?s$wx{yfySTa6m?Q6t`k8p%o2 zh%cc+`!i~Pzwq>XR0KX9Y!S+UnySpG2p2#Ox?rFw7wXYS421?2(jAxwcVjdB1GSIK z53vS^y0hGMsE{5;MdpF~1~sslL#^W}u^#En*h%mI!CVX{<2Lri&xVBu{=joM8Fvr2 z?N?!h{Yd(sE+5oQ==uiZGK!$W_vS_8+DzY~iE zqp1^fTV`^2U>@lzQ^EtA@D_H$X;ZEK*BJbUj8@a^sEqz4A?CsA*qr>))9oC%iSJ40 zoDm*qg4t$T{wUN)&tpq0ILkUT3r~_xJKMI|Bh;e)8?{E>V=N4tvhyxxP@ACujev%>A8qE z&wjO907EAt>cL@{kBE#$RlI$^J-8p2ll}#JtK5R{z)*aQ%_!e#p_M z@W29lc3r3?Nvd8@yb)fv?>97?R(k!Tu zmqKmhcBqjKLrv)vR0Ox78vX&9f?(h=7kVJpN(*gTw3U2r9)9`U=$|R{-5tRzQa7+*oE4T53vAqdG#AR^CMP=2i}rj z5Va_Ct+5J=yXD-fs0QkwI?~bYjXEiZpgJ-WQ`3H60T=4|E=-K)QNQVUh?=wam=5Ev zwQ~7Tp{p8TX6tRpQ@k@y-@;x5$d`7$bke{5j?XXD~;GW0%Av(X9^ zL(N?+RKcE@6^Ei0qUb>J+j zqF1N}KHX{$V>4N(pEL9LzDI01vZ zxcHKbGTZIJpHL6}jCJrfHpDzTEIk&xkiLv6S8At4q9Q7SEm0kvh?=7BP>bz%R0q=S zvPd??(%S#sxlkzAp+a;7HIfIYm&&KREi!$v8|gWyh4vEKzC?|D zH7bHfun^uubuj5()yw`X%Y`az=T2}ppbB0IhN0HXB2>et zQO`d_Jr{SMwUgehf~{yj(1Qzw>NKk0N7M)s{9qO2K!vses-s_^8eEAgcNi718>kM2 z@3-p7Z?=-2P_>873zej6D*rs4(E|>hU(x8 z?13o`+8;DdL~Y;g*a;6|f6RKwrh4fi_P<`62g#U;B@VNiqp%xLBT9VK@+;y1(pOPE zuX)Vuj*8r5ROI%fMtH&VpStOe+x7iINsCuf?Oy>Z&4$QanhzDBSw(UkIAtV z>eHzy#=#D#k@oZSbksXz8EOi*ptYKr=LdcM2b-G%xA<%FlNqXzOPY9KFAQxNTpbud{-_FpzG)NnCWXe(n0Y=ot8 zCaQw-?r*5_Z`^2St)Y0R?Un>JHN{Zdvk@vHz1%NQ9r+SJ(f(h>g-*ULm>4hX20lhT z_}0^5KiLQqq3&lvb+{mEq!m2BI%+L7L3LoDr>DD{+_M-|NS|<_hT@;IxlM=aVNcYV zJqGLIUR1-8=dHn{7)Cmcr?aB!%Y%wULo9;>Q61Tddj1@0asGOq{jVDj$k2ZOh*~7M zE?7irU?_B`k$!>Nx6?2hUO|2NT*q%Q-$naQ_!)H+N4aDj$&ZRqLsWe&P#x)hiT$r_ zHkb_cXbft#PQy4HLO*D=D)cu{5&Rbw!FX3KT?G}9 zmZ(TA4RWEybr{vNE4UNyqk6pLn*FG>5>;+J>cRb<{teTReuEl7;-9Uaw5SN>Mb%Rf z^?V7pw%-r7d;2iHv9oq!D-LGg$m&_)QI1q-VMpGTeJe|!giRy42Pj^Ixe6XiC zyNBH?sDb@~p}+tCmWv!@WVm4+se_@#fqJc{hbsE%Co{J&6Z=#$&*e~m037izFNs-l*thG)88qdu*+pvpb={12#+#JOV)W<-s= z6lzVi_Vfe{MZ(j^JpJ$v`(KME+FhIL^r$(`=IH{csVI(WxC*Mn%{{*#YB7yOb@-s) zKkw;3F*o`DLoL3n_snLfb7S(op#43+dt{^~Bgt>pU{O?ql~5HoMK#pL(`($_s1E&z zio{*ifc`;sJn`>VPX@Oz>L;OUsEBk5`i;@2>>Zm@BWAU8l2OB=H_jU_Z!2uWrhogG<1?nJKglcdZYGhkH ze?K-OeHhizln>eWRFEIfk}my+z0^MW)1J$KswXc}e=tyi3-!D;s-gZE4+o>x!X$S# z>L6N*8rgc!|K8KbJblHzjcVvm)Ii>QI_V>OJ_m;W``;2=s9U{$vcj|2K1?1}~!?eB*|{ zuyjgP#d$nk301x+YJ@{EwCGSH-;Ao~465PVo{sg>$|pxXU-%{aUj>_zp$fXA8XD^b z7I}J~r!Qh!?!QLu=R~ipp~`MERAhRf8kmBL&_>i${($<@I_3FKU$Orcy8paD`oCD(LsNo!F#K=(4M}25OgcNNd^yw?RCClCnuvQHNpj$Kg&dwKpBsEAEO&HYAH#V7s#RqRgs4ypq+|FHa@BMy)|Li-WIHo24bJYD= zsI{^N_1qz3{qs%7g^t!Ms73V~>InYV(~%$SBQ!lKGTHGA=0jEZ0k!y&e6+|^LVd^# zM141G#LoB-)m|OGxm8cIK!pAIUmG&ia5vN(k3ucJxu^#gVJTdNn!|gjIem^=oKd4h zg#M@|0cs5_#R|9wRqj7j2jfMx@}=F{QG*eoKU8W(hURph-#CE^*)`OIPf?*y5zX=| zxXn=cy-^3teAEfJ7qj9u&ksb82>rdH45)I|P#-2ef?Vi<#i$2%dx5)d^cWGL-|uBX z?S?+6(9XgdcoJ)4qL?=F4%nOYNcRP5v9*a65jcwDP!Xyg77?1dU?(m#7eUmb8jl*$ zHy8`gqC$Mdy^ref->8>Uf^d5-3o25TQ624%s&^jh`K73-+=z<6F3hC;{|gribs)m# zHZiJT22=&PP!$yP{EDcK)^>ZMo}cRJ6{zPAp$2doRnH~Q{{=gf{ymgt|J97N0*z6N zt0ihxcSA*D4C=#VJt~x&J^wPQ;rFN!CHTZ5PzW=VZtv;IsCsv!*4Qy@j&Cr5_J6(D zwn{soDjb9w!8CV15~{%0sF9!W{0Hs}Y)JmUsI^chjzw%4Y8!9Dig*BZfJKiR5vYdc zFj#_%DO_l~oWRQ%880IAcfIalLDKc&TO`J#BC`oKk`t)8ev3Nck|(eZRzj_X4yXvu zLT$snsOQgm{(}VUf33zi39VpuRJuND7573lbPKgz;(luPOQRyu9Ca=X@$@cK1h1kR zeu8T7(?ph^3)RsIZm&e_e-&Ivh8jME3e`>2HcOw_I?xO?_mffOHlv<9jf%iusPc)D zM1+1stBESt19g9*yAI2cKI7?6f=R7sxlsixdb*Q492Lr0s1YATReam;zr(Ji<0rEa z4?~UkOH_TUQ4u+bdj2+QARka24rWO1p+prNg4%A=QTzNW&)_Q9snCNo@mdfXeS1O0)l#bD{lu0M+1w&<$QHX>3I4P@$`g z>PSaVPjff8r%??(LcR4;r?uyrqDDRlwTKs@+WArUwf}$TLL-ls&K^jHDo_+#U_;cL ze&?PtpuHAkekjuyhuu0YN05L7+ixo71C)6Zb3bF%J1L8#H8HG_dFTxevq-4>|1 z>S6@~ecd7MNYoTfK&_4Gm=ialMs~w}jYCMs&Tg;U38=+)4;7)e_zCAvpmYwas0ONn zZm0&vpnhdC1=YbhsE&P&Dz_f>1#}cu@paT%d5$^>qvo{yET}0fg{rqTroqk_Py2rY z7y7bKyBJ^v1>p?6pd}^q{2Da{4^jCs^IAGRDnjKv-P|35Kajrwby7CY z$Nq1~#pHbUz-?4V-l7Vm&2JSqL^ae0Rq=GsU*jG{J$J{`VFfJY8Bs@ZWlxVp{mOO) z>K*dB0Q+AV`3l-=bPVc9eTr%*X(4-AvrwT`7il`D*@xW4E2N3DrzsKvSh zwT(BR>e+^>=N4*!!Iz#9QOqh#h5AKAG1N<>66%5BsF6)aHN465Pq{bU7jCrTcCI8w z?T*ZzE{UqICendmptTnm>^Htd&Dqzeh}=N+G*H4!hB|Wdqbjb9I$%CS9Y}3Z+qD;} zp<$>4?n~6JTITonh4R^dC%wRRR6~EdQA^q!r9h3mC}zSYs0fWfg?JKLbD?07IYkeT<4w;z}0sqNoAYMn$$Ks^Ouiss5@`&>q-LhF0}2I2YfbDwEyKx>0ssNu_=@xs$7s#(a3pdRRs zYG5*!!QGyIi;76*>Q-TGRQVyO5iUTDd<&}Fe$-SxK-CvaUc+9GRZ$~eiJHS>r~*-I z+DP)EM&1^+*cPKk@H?vFxV5aIBB*plR0MjUj`*dh@~==GN>w`)nP4D07iy>us=x?T z57(eZ`YWnqDeG9prBUflsPYq06>dX~_#i6e*HMx9fGU@&uGL!=wbq7XF1`PMHCvR#$K~+LcT@TchEXOps5!J!7sB`9jsB(Fm zvHw+3hh|pcTvP+cQH$^;>Ve$Nt>+z4f5*#A0!R*|95>_xpSZlm&_dwz_T*0JoUscM8e(MF&;GQ;z?q88yV ze*Z62eKA|vYdJA0odZ>_M34(r)DRWo&X^PDdV#~J5#2y_=sxPac<1+%w6>|ri+a8e z>U}@L(_=lo6}5f$c=|6?eZhaZ&|Jl9V-=@D^{^PKKsD6;)@~0}hlij#Hr4azdHzbz z--)3gTs(cmJ?maWzNmtMyIiQkEN!ia#Ze9SM~!5%r)Q!~2|9#~Y(MIM|(!S+xIma-m&t3)Mi}PWC`b)W}MsBGeq!a8GxH=TAeG zTaH>(`~3bDEKd5q-%s1wK3qzoI$jk+`@gGP-~IcIk(*Bb|tevCSb+x4(Wp6n5{2CkE#5!^%_y^pX27Vc^9|Gs#M z^jy>wbnRsw9fFF?EL4NXP}?l5w~e&C+W~cdJZgX^u?*e|a-l_*zE4ExU$glfRdAc9 z-(UmMML)Ovsi@U`4%LzSsI~DoYH@}2HM6*tQ4MxPt@MQsrYK=r2U?a(jc}RCbm0N&K@FJ>X*$3L3SHlR>b&=2ZV4#I( zw8p61=!P0mPb&}@i8^w}`uz>4MYh?~d$1YleV(6qkTsMRBgxO==>n)VRvh(wV+{TK zzim9D59;Urp{T_-2Gx;CsMWdz74ns+RlE(=;VY;gKz_zp_$%tU-!UQngK98xa75@o z>q~_BNWa3k+W#4c*y1aQda#_Q8=^wh7UN+LcLb^fU!tbqJ5geg80KCLjU}3YSg!06Vx0o$GUg`70P(St>K)gic6xN zZ-iQ;?NGmv80_iUIDqt8oQr8ju>a$8v15caZ~`@w2kslxzK{8ZRh$oXzcebOwcVzu z1F0QqTP;L&M_T9; zyCvK>{umwFnQRD!7KK;2tVe zuTbBFVdHHZRYK*bpI{>_>Xt{HbTv^O8;P2_38+Op7Zs81A=!WXxlm|-L^XKDy&o#T z(TWP?N7U3LooE%7MO9SWZHiGyw?mDv18U@*-7%tR|A6@L0c{~^6uCP zhoK^J5A)!2REN?`v4#tyc13kmgFR3c22mrPi;C11RQ=aczkvMB@4v$Qq~lCw|Lcq{ zH`PK?3pID$Q77A1sC|7D*Wf$U{$4dLBJ`hZ|Bjl|d0$2Z(&7$O$F8DY<8M(1SjFj9 zZW?N!8&FfaZ#w%~J-tGP=H@>y5M_o%AU>h|#eM4#b+M3Xiy#Q00F^4d8#6 z9aGP={A#EOwMKP(Sda^?>P1))uem8_*+|>EU!x9|yKaiv_6x~I*oOSYsEXgaN#|Gt z1yKWRfQrm8)V5uU>Ui)D7kW9oKov|kHzM@6+^V6{J5f_`3pKJt^K4P&Ky9z_sPBPk zsE}?$l|O?jA8o$<{TlG6p zU&${pZWR7wwXY%qZAsTzZo6a)HYNQM=VJA*E&mQ`F{WK%yQB%~{Md~Z@a+ore`PL8 zuC$CXsF9z*diVr&AeCNa74^k7q}SpmjQGYnwgi#197XQS_IAfiid@0sP1YVNv zjJb$dvkkU*Cv3F+|1DnPe(+B&-csO)O%Z{!xbr&}1vkcSwR0f)HtXr_d7jHq`!4zQ;n{8}$RjA=H{k zw%01ikD7|vs1V*qO;Nn>ZPgb-rQ5p`QTu+Qdkb~K#@%Nfsfk(>BQf;*zg=8t?(Tbm zG(T9n0qVhNs1ck(ZL<%kZJKkxy)CO^71EpWbNmO(Vb=pTwd+yOU&BrqdC<~*@tQ*Y zEf-z!i$m7nAE;HD>98%Hj<}Qb5nPKyk61++k6I|Fpx$=xQ3I)Z%og)#tVsGessoY7 zZ7R#42DTD|T10oaP)PEeu+Vivg?c{b#KWkOKSx!R>PLGw)N_YmI`Y59vUtSP(NEd{ zGP`3@1HFfBu;wZDzZ%|n%6k4gYA#cswgxJ=-BBHy?e0g-@t>&j$2L0jP5D!1A_hZ@O0sD@)*uy;l( z)X|#}b=2l_E21LN#M8myTGXYJ@*ka=%|Zx)k2mZ)#GBQhFf45_IF2MO48#oKCZ-?xB~}b z)N3}vAsCzVbW}r2QQLWg=RZM3`d3>m+H~)3pO>I&2EXD!29%Ev3mFm?=@us&3x!pa0|hY7eGG-N=h-ur2n*Ri2;Z zrrocKYG{b3C*c&*dr@;=`IeoC{ZZTRAlAcwQ1w^4ZRw%6+5b8U&yb;)PxzgP&_6ca z7S)06SOWjSqFCUr{S}NJsQ3C_)QOh#o`rlg_8`3v^?bJ9to|OT(64pBLv71lK`yiy zPN70}&C@U3|4<=|_}xPMDXM&SRE0%Q_e-NHtcqG2El>yB2-L1xgWA65QSC&(Z$B{w zQ*oh;(x|y?g8DM)i3;TfRK*`r6()FKBQ1pr?I2YCCe;4Fj`i^as-yKDT1Q)(mEP?4MIu0uuO2xLl^~6Rv$=!}o$-j;IuD^$g@jYq{Bz$V7Le-ZAbx<`z zb+j|a!;$Vx4E_6GE4a|e4xu7&4OQVA)Z7Q2S$;xPx%_Tb)FNz!jjsWT?jbXwN**%Q(~77HYoi)&g<51IQHyXrDwHQs9k_!Uz(Z8U zZ&9m0&Py`|YKpR=7Izs>*Yf)vf?TL)pQCy@!*8tg^mnL=kDxkm-P3=gIuiNHB9{@> zq57x+G($bt71g02s{B;X{|5C^3VzRpPO5i)qx4@^K|`EQeh18puTc@n^x8UF1vR4P zr~!0AH8=s);8IkF)}eOA7SF$mis)}2?j8+C#OQ4v_}_mBAf zUr}GZPdq>K8*8u(s(c4jJtI-|&v3sD<+K0xaiN}`L9KyHs1e*m{b=^c?+!q9UV`ul%}JmWI9rQrXtGq(8G&iEtlzo?4x zy|W{_qB|0GAnikq@G5EwZ=y!}2K8LD_jUv)M&%cI&;Hj)Dw3g*w@3A?A1b5^JiQ(D z{=SYHQI7vC#I;ZrH9RIO=N40Yg)xlT#eSShNB0t!JX;A56ZY@*? z+oBp6iE3~HYB9}0Rk+UGi^WNw!uTA4F+N&DNuorCB9IqVzJjM41i4U8I(dfDTJ5t? z4e#~)*HI0=LUkZ4s+kBC+VrT77ebA^n&$YIrf$!8NG4e~TJn@|ZUAGN^L(Q5|ZHI{Uk$rfeW;fFn>NUg+))$^N_M1>U#` zV%dYaQ6nmZwXp_jY8IgmoWrONy+?g^rw+4@)j~zEFY2V5g8DW5PQM>N+{zWk(D#1} zF7zqY-EXWw_51|J!k;{S6*bp4Q4PF69W>z)k)a<<5~8LkFDgRSQIYA5>d0_ZhgW<4 zNeun_-&eWNTk3aIh~9aDgf#BTrKtV9@G>Z_w=u*_xzuzui2-5KV57aSrJtEW~g$#QQNH_ zs^eo&9a@5l#J9177V00#C`ZOQ)Cl6ou^tygJx~+%Kx2%8gHc~NLs1QlKz#>{!t^)` zwFq~(2T|ouyFZ~ib|J_`bT01V7x(~2VaK?Up})`n5HpaDA1^ZWRa^)&lm6V(3s65~ zUPg8NH&llrPy=#Jjte-}Pe&Cpl>iIMG6)G}sFb2Lu zefvd8WK)s`^>)mL`pPYbYN!FKqpeUModZ0728PZPRK(U`Y<>Ul;zB(?hN|FR=mv|+ z)9*YTGqK(O)J=oSDW4q`($lDK$?K@a`3zNG`Xpv9RJo#VW##Mr-_SE!yFF3+co>$( zxmXS_qau`J?UGV!)P;>mwO`66UDufDsHOz`lFb$6M`^!-s4sPc{ z6g1~8=_aU=b#uQ!P3bID2UenX!4}Mo`%vW{o58?G zF4RE6bXG74>aCX^RY7*t%crQP`=J^bh1%z{Jbx{!gS$`%)+y9}zkoU!Z=pIKGrgG@ z(`)}{<{|?(s-fnxCu+{7U?H53I&#mVrsy?lYI0<-sVI&*IUAt{G6>bsFw{$D3hJ%8 z3N`mf-0Qlp{r{W`y=1~NTF(=pMv@FwK~AiPl`tdDM>V()Rq-uUga3Itb|%ZuiFwJd zfoga-s@_@dHyHZ<-_3<8K8z~Q4K7{P$)hBIu0iP0d~dKS*^a4 zsE%Jn4d^E7xu!Cv42em&Zp(3&i_24B>|A{IWBfG7c)TnJ)617&E zpiay${Qi1RpG4L72K!=yU=HiyI8=pGQ77FusF9w>+V~drGhUUPmY#vdNZ-ZQr2YKgl#4IOSb$wHNnVS@NYn#gVGX?R>3sQY z?gpWzZZc}FH=sg%!M%%$*h|#FV&%7VTGX~KjI5ntpduGqR83GlZ;PsU1ZoPt^8B;z zpQvpXqktX3;iyHJ4z<_{x(!er>x-&yKI+KcgXQr8rqKTXw4i;T=S3Bqg6i=`RELhE zD!zvbWt2je&W0*q6?I~E^Zc>yN>l_7qt2DE!q%b8sDahM(D(lkF7#5FDkzu^kyuDX^PtFZ|Qc!3giz$?S}7B9Y2ggy%c`uLL-h|%w7_y zP$4aan!~zoCsgQ$qh1~dP;-6{6`@zC4#zKU9W9Re#@+lsn>4Yg_?p*mEcr0tSwsFCzX4P+iFQae!tx`^uFV^q0!sE(v6W%>0= zvHw-DEg9REVsvlMDBKSzydGwO@wG%6DRpvsr6U<2rnN>4*g(IM2x zqgOOPMa_LiOo%y9-xeg^F)N?sei@Budx5dz+MgILORxKB*csc55+=yD`-=juw0ZZfWr~@cNjmXfS z>(@Y4G{fEMUPcY*4QeXW)wB+mLghC`)jtY@Rk)bXMNzzsT0BW>+4p}7EU5da5uZU- zcpuepl-kz845$GVMonD>RQZN}zbC4}k)EFC>9w`}{eQr3+(k9;8a2{*b?m{Ss0M3e zX6%DneDkpoo`eB7%(LsIT4& zs0VJkFR(1>XpL6=^*=@p>>X<4Nt#$hGMT|Z9xgg@qZqcr z`r=S|%hS({`>4eQyj{TRD z3-!3R+tZzjdT>2zF&#x!d;!(5zufFCEWa(PLu1@|?pjnN_Mtj-#?yc3zV`oHU0~#A z)?jK>x(KS_>X;LoptjLiRE3LBbG{C>8!n(m7^9_?D~uXIO;p1jQ3D-?I*^uQ=z%09cY7E^#f6nS%&KH7E~l|qdM>$_56F(NtdXtrOTo|Vw<5N z^$n_?>urM;k|$)SqR4hOw<%CPt&e(O5UL~VQ9VC|>iBP{kbd-Z>h{)=;;0T+LDkzE zwOxar9`DZk|BP?RP|tUw-tXs76(sH8BS2Nu4Ao#))HyK`_3bzn6@g`_182Rv1J&^Z zs19H8{FiR<9T$3C#^`8^>{HaDDu-&Q3#wxiJbyW=ffJ|>T|hN_7ZsUjem`C(yPq7j zD6^wJI9i~}_c4Qk5nQN;lTjmDj`{{%Wd#CvQ5|`P`T~mG*`}r#sw1sX1L%U9(?O^y zn~Y;{KMuh1UF@TEH|{2V1LtY~&*^Fn2h@ET#U+JDnY#+tMs%E zPR81#PoN@{xR<{xP+vG*QRl=_)WF`Mrt~8!QdxQv3GM%CTg2tqaxM99g2#`Leyg3;Q1Ha7a02Yf8u^_6=X%tO*vF(Yoj{S z6xFf*sCUFOzfM9$WCm*FOHr@awWx}YxK~l-{zOIWjprvAWF5}Vl*G_~|5J?%RnWlg*+O^gYYVqNeUFY7P7ufF)YDA?_J?@B#*cYgg z%t3Wv59+P?0xMvyN%q|5sQiVVzKT6af51){>^?a%(1DAK*Z_-6v0tH1asNg&)OxBt zFc!529;4ptv8UOQTN<_4I$&Cyfa>rX)VJdyRL8HQruI2f4}bsvOAAFwR0S9s8IDnO~o42RGdat7ysj zXFmI175_zs4ww`R%=D;TkPQ`y0;rMHL{;1mRen0E!g;9I_gd6*8!^-%Dxzmm5qg4p zKK??BRIY{We-&s-hQ8Sbp+4Z^Sp|hr9Vq2i$9$xl zpgKAUv#t&ME)401Hr%^F4XWvjDq(uDn9i5N2nhE=jn)VES<{D z?iN9UiW^?VgneGT0{o60|Q?0j-6h?KhK5ELltY`o0;21`RI_GdwH_e6&NLxbhmko=dJofE6_-q4?D1U}zqNALyI5ghFY zt2Z~6CfyweQ|~(bN&7#;fymIm>-h?G3p*1&w6M*1W+ z!6rv+jyI!z)p8A6;}ficHIG`y=b+ZeeGKX(OL@!|PhD(7dNyiguia|L?QCC$8_0iz zdKb(;VJF-xR0qoa7#Zk=3$Z4KowVqMnO&%C=#PR4z>5vyFZzc=tVrjEvY{*pzo=GDl+N$yWa9caz2S$<& zgf;Kl8tIE|NbkolFwH%CTP{Pja}mp6_-~<~mV<$6T-+jK7S_klf48|jirOv__ib@i z!_P^7jT1281KS;ou`=oKhqmAAq8b|NZo%H9|G+lb^bh+1XAc(8{?G8Iec?1g6?lf4 zqdJf5PrpW@cF7J5ofDXy{Tul>GOz;+Ke3m~lc%=d>pruo7>3#nyHU?)d2StRfjTK? zVH55Dv%0`cFYFJKMxYjD&6kmZuW%@8-zR@%6>UNtsrOLjV*O=nr4VY0TB3HvbR30O zP#+@y*V3K9*;M{<9KRT28s{>Yv1H#SjCC-Uv5bAmnwZjzt?aUl3}v}w`wNvAdlaGU zp#~vKO@$(BC|i+8T1d+B|9sEy`M+LX@8@~WdG_U;duRSr@@;$3S&ceT8{J|5tEb%w zl)#y&_*&E=I)~b?CH}VbmoZV-aUx#Ds@VUo{Wi;dRKCalvFCp~Oea3g#UEfA@jCbH zJz?!V_P^%tJ_!S{*}rzwZorp_hyP~{7>lXIPvH!#b>GhLJvf#4m#Ch1c)+uSDVc~m zdZ$06hqwjxUJ?H&H~$S0Ud=EGpALjPzsDK8Ff}G23pE1a*~~i50nSCJxjg86=+fh} zd;S~G^QhhMHfo9vU>&@Mu~;gH#am%D;-L@$4e2ISh8y@KMumC)zD_}Xsk8`t<7L#G zH_vGeNkdKDYSb&&=cx1Gk-Od?-1B$CaMYSugX+Ld)Ch%2=dzx+L-l-?i|!^{+?^)04peh=Q>e*6M1CF9rd1TP?#iH_cK#k}~Y@yY$i-3BPJ&zUG z7`JvL|c|B2Ix*NO4`kMVm@ zC+Q`O!%_vU!R;`l3da-B6s*JLcnbSrdLdh_KVU`TF@>$-#yE%gNL2ouMLhrHtcf}= z=AqWeEv$u29{2pGUpnd_I)qK|@uK|vLqnfZ)boFKy9jj->_81^*<#kPr%`hj!uRn@ zERQ3K+Z->zDa5y;9Z}X8}%&s6qWyP)D$%?Y4MLrvj25LJtRRDjw&pcXTB8FNMxW!@__RCr(vQRx}P}!z#D(e3Gs0yoBv3xyHBanf*zSnu%S)r;HEBh~n zKre2{M6J%k)ht7QRF9Y7V*Cz!;mGP%!3k&X8rFfPs0yc|@@+Lg=pig7Z|D;kp z$@Aay$DexN(h4n&DTF(~aEfRh}y&`?x&TdF*?*-Npe;3Phwzuox z`Cq-Jb+p}Z1fS)4i%zyimZKW*SZAxKH>#)aqISVC)H5agDT{}mB%oCr!sl=;YRJR8 z*xdKV=lk?>}RUwdQkH;bQzB`7fZh@qiS6 zyM_Yi33MgFOSKmD!79Y(qt5itP`ji}4@>_FOHjdGR6`5)_5ufS1Zw*>=;H;J;7pu} zPdsl8-ijU#jDEpJrgUF5oRWJJSjUay@e8cj&kO9sKX5Q^?eF>D-IN?)Yb6$+Bz-x) zi8pW?jvMF&c43V{=5M%z_`1Pf;8W~7#0%`l@-KRU^>__;t7jQQJ^w>xmtoeEY{RX9 z!?=O#Ge($o(yX8>c!=~>BR&6bKaF_F^WSO-=oQ<3uV51KOw|4VpcYs0vG#QA zjE#x!LA|y=L@mmcarR=f4RxR$AIJV5OQ7L+yKx69UTA_)9gH0hFW94PouyO36z-b1s>v2 z)RY|gpS=lnoMCf)3!9Rj_?k6z0xJH!v*b)WIs2dvsAH&Ymv@$}og~yqw?ZxUNvP|m zLj>{@h?wp9zsFM)J>pfI^-(8TD=dj`Vj0|wb@4dre(!a&2$mooi<+7im;(plV>lF5 z-xz0TCV?Oc%P<_*y9--U1!uYVaV$XmDyo8iQE$aX-mrK)s$rc`=`W%3&qkHM*rmUZ zYQR2=hXN-E6eHoLyAb)NWh{=mu@b7{hNy}=V`&_Ys^~43z7ExZgD(9hssZ71tN{g3 z_m@VMTi=f}+3g9a0sY*C$^HcnAeX)gW4L}8Rp4b*k8Ys~e1Iyj;9C~2h$^osD!nHv zUm7Z32$gTPu4}Qab_qLB8IS1#-a=KJeXhj|qqb=rY6QBVdOXU-7h*x;JDuO6D!PVR z3)$w`HjTwX#Jgii1*H+t(9T0uxD|`yS6Cabpn6a=!x~Zn6;DJRxvgD%0V@A{r~_sv z7RSJROE2N9h05P{KKoxiO(sDOLbY_fi?2W}%8yVPcA+Zx3e~d2(X*CQ6#^%zun zan42_I+CmIo4VQNvNZ>EournppNM0usn`Mea3qiwTq5oZVX>%+b};? z*Zyxwpc;-w&D|R3=ctzch|2i4i)UYN=`pB^E1>4KHfl|DaPb#VJs$7Ur=WJ%Vt4&h z3~A24BcMfi8*^g84VJMOssUwD=R*SOIo}mEVlzEJ}z5FJ-UKrhI}ci0sGzcpHUtB z7uA7+o2|jMQQI(iGy7i!%^^WIyoc(^0aT06psrta@q1X7c=(5wUI~@2p)&>5z_A#K zGf^FzkNNNb>L5CaD))MbfadN2`YqgItF<<&pk}D+T~I?l1eI}tyS^6H!=0%7r%(sk z9cS!TyPk|%3nNkaUqLO_&};(AxB)dJhfxKFZ?lmogIdLPQA67wpT}8PfL-xB>O2Vh z*z)B;HM|mPBs)ct^Pq~LK9-C=XQ3bWA>Z2Mu6m>Me zk81E0)OO6a-5Qh=RZ(6nf>lvN-x^gM){o8S@_ zqYB!JYVlswNF2pnc-qA;IIp_&o2YW`pcO+D-4lTZztw>M;gwIt}P z)4iw`=G<=umO~Ygb}eT>KusM%+7Ki*o_$`nw?)$U+r( z1J#p%P-lMhXV$<{sOt%+p=*ZPb}6Xs*$=g-GEh^Og?g6!fogEx&+WV4s#u?Rchm@k zG6<-`b=U~MK(#D9%QD7c9pY`V7QTuVFcahOB5KupUs(DxsPsuV5I4B=LSI^X5~`db zNC!gv(OB!zI@DZ$hHBv$|1fC}7%>iL(LfHzTdU+%D32i2gqEFQ%j%vVgEXw&4m`FesEk(`oCe+;QLKS?>UB8WLV6Ja$ZY!e-YKywByK@}sWL$2~R-7pcgT~@jDuTc&90aejo7{r*PR&ZHoQ`GalH)<*; zphjpasv%oZ4cm(i@xf8{zY0$L)(Y&58i}5$iqcRGnuj`~cVHroA~#rhf$-G zb`+2lOjydE{OoADFeiyHB9r)(tFga`~J;V0DU?sD2b*QcZQ^Cncm7g0~I zd#Dl1^PM%g94g)tRZ$9R>V}{{a;Op5fvWgB)ClD`WARXV0;@^rgc{Pjs2i%DH9Mg) zrlE%VZB)UVQFD6|RY8t(_C-Y*RQh1l2rWW2{A=uimr?aJ`JQh^v$6lj5Ks@!|6nKD zZEQ*WA*$ys&fAdoK%I1hQ9WIZYUo<$VN^N4x$9vU?BNxS^|SG_Uetl~#zkxJJ@kM6 zSNM`8^g#7&JgVRos0MuI;y++d;*U^6-1D-H%yd+PwxHf0_M@Jf#ecMNQt@fxA#92# zQ1=)5iSL@V|DPaG7FVDyWMKh5vx4$qJn<4P-WgS3Zx^5JoQvwfN>l^CK&_dJ zs1eQmi#^P$V|L;VQ1vwah5fImTpM>oSJYzZjgMoxOP_;!$h?i=_>1#*)IoF?)qtGW z?EtEX8i|&uj&(yV-se&I(@|?>{B^hg=eip=p<28P)zeE@5OdtH7C(;K*X1x5R&eRn zQ5Drkaj1NgP`hO+>Xq%i5COf*9Yhsy9yK&K+zoe78H)aD>Ge@PX^#34 zYci^#AD}8cgsSKqs;3uFed_g!%Q>CE|?9cYD7BbbO9nWs?sMkDow0*hS27Sx=aunU3fsFvoqWf=;f;m{Q#@d*%38leNY7tbLlftJy?bs z+5@PmI*8haCs0!r@rR{9fy!S4^%ZV=)b;tO6Y?YU|NEam63|&6@uwXe^-wpyjJk0l zs^Tn{e#6Bh|FRxeL*3sQb>DDj25KAbM0Mzj^G^&T{s=?beqpz5yG3CH@i^>=wNTq` z3dZ75=Ur635_c?LCDgWUff||a*cE%@3z&&7VzIyNTlLqlGVw}x+5gWHNWSX@PU45C z@AaquW1o0>{%dnR9JQ(^qdv<`M=i>C-Szb@{weB{(m~X@aL%Rw;=GMoJCB_C|6~8_ z#`6D}HBoOcO;B&SJx~Qsch?u9KF6;{?S}0x{V?kBeHNd=2dK5t?Y=GAUYLjYaMTEe zQ0K=q1(fhQYV~KJ=4u^k@oYzJ%M;iQZ{j#?{=j}Vybsl*#D{iY2h=XY4E> zYRcY5b!;Q*06OKoiCRlxIfG0Q&)*0Fnu7e!BB(V{3N=SnQA3u1YG5;GH|Id-IMjV_ z;3Zs&2XI2Tr8muG`8%SvX&=S){GU!h85g@7)}VT}6E(D_Q5mvF*oZuV?+|Z;@3C91 zV*>FvBCTgx7)$&hR>419ddb{De|wijt%=GQ(onP{paZBa>LeSB4R8}`1b#*B@7uTn zAM=9#Z@I2VO-Xt%=x^VvxQzzw%3~cG5oJzr&O|N3g{YCtj0)QC{~shl2hBgI)!sax z&1ouX4U9mI&|K77cn5Xg$Jhdopr$M)zl~g3XA;t$Kq_k6_C$4f1nNWWsQmo>Q{Aw^ z-LT2I&)s+&wKh)UAv}*7p|u4p{XA-luAqiGD%z%^5w;^f%DEpk)p=uRI2FEu8u9l- z1%v*V%xADC30(^X1AFizY=kcr4*Fl4Z^b^u^A!pDAD>@xet@r$ejfFZ8Tfe6|557} z)KoOR9{a?`-k6nnL#iy}q z4O)lj@sr402Flm7 z5gdjZiS4NCk@bUtw%8rjkyWUXj7enwk0a1A(J~&!QM%9|7|6t#cmkU>4Eo<@6>ek) zM*?b2+n{#IVEhZ$qDF98W4oT16bw8fo{C?~Cf1O+rq;mprtJS}T=PN8 z6?N7pqE>$|WU&TxpE6FuAkIUb`72OUbp|zcxm($N^-%fSp-#NPSPF+>8GO@S4{ddU zW6nQNJ&bB?8RJm}C7|ZME7rvs*bn!kdS0=ORa_G_0xeM^*A3O+RE)&IE}o8bG!&RZ zKox#~IuZ||D!Px#SiP;C^^Kg#sDg*1p6jEr2)>T0_LGR)HFDmQ zDwqA&jDUtV1y%4c)I%m6_0XAxnu0~BvwjI`NV8BC9z^9ki>mOF^9HJ%JMMb!b~Xa} zu@LFSFed(~avhI%>u#CaN(|1VU*IXc>i zMPV)C`BCMyLN#PMs@&H*vj3H^kOaLRFL!Q4^=LQh`U&SbR1YtsDtd$(Vy}}ms0?Z? zHA0ow3tQnZ)Edb|y*GS|8ky^z*#8=V2PCLPNu902wy1(TqcZeIRX7o~xMpJ*Zb99b zi7N1GEQJ?QBa-bYoAZ3AHB=0BUkOylYJ>>rD6EU>aT=Xm0s{GJ?cf&DMfxkKb#eBrWpEe7lDyW3&K~>a< zG;wyoc;e5YKewod%tF+Z{Df+FcvmxsoGYO~Gy!F(i5jAYsB@q(s-oejA)kyo;oe8J z{1mEZS6zDcZZ?wDQ9T@lYG4Mc;VWExHLBdL=>Ps-mb-A-c?&h?_fZXsNw&pQ2-SmF zRDo4c71TgAtPyI+hoDZ(w@@AX5Y?bhFb=Px8j$}P%G3TYuK-rYVOSG&0i)|vJzID7zY5GlK#L;=6>si*5;gQs zq2_Qjsz;05^_8fetaa{2P2Eu!&-R?%AC20MB`_ANU;}*mIk*4kxEmHa*PvSbv2!P? zM|)5``o^W7LpAsUY8PF_1T2+e@nq*5=ONUT>VFGa-PMask8GKpe>wOU#=o4IkuAfc z??%+9Q>sSo`tkLq$2QEB8QU;o+wcYTV!V9(oq?zYQD5ZBHU0jE2>w0BzexV&&b+_D H%dzSIpOK+P diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 9d57632c97..b1211fe6cd 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-09 10:50+0200\n" -"PO-Revision-Date: 2023-05-17 15:29+0900\n" +"PO-Revision-Date: 2023-05-24 11:11+0900\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -29,9 +29,8 @@ msgid "Console ID" msgstr "コンソール ID" #: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 -#: ../../views/calendar/special_days_edit.php:137 -#: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 -#: ../../views/cluster/view.php:285 +#: ../../views/calendar/special_days_edit.php:137 ../../views/calendar/edit.php:112 +#: ../../views/cluster/list.php:70 ../../views/cluster/view.php:285 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:71 @@ -248,8 +247,7 @@ msgstr "コンソール ID" #: ../../include/functions_reporting_html.php:5491 #: ../../include/functions_reporting_html.php:6371 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 +#: ../../include/ajax/heatmap.ajax.php:246 ../../include/ajax/heatmap.ajax.php:285 #: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 #: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 #: ../../include/functions_treeview.php:655 @@ -327,8 +325,7 @@ msgstr "タイムゾーン" #: ../../views/consoles/list.php:74 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 -#: ../../godmode/setup/setup_general.php:480 -#: ../../include/functions_config.php:314 +#: ../../godmode/setup/setup_general.php:480 ../../include/functions_config.php:314 msgid "Public URL" msgstr "公開 URL" @@ -456,8 +453,7 @@ msgstr "オプション" #: ../../godmode/modules/manage_network_components.php:906 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:971 ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:263 ../../godmode/extensions.php:282 #: ../../godmode/extensions.php:290 ../../godmode/extensions.php:300 #: ../../godmode/extensions.php:308 ../../godmode/users/profile_list.php:457 @@ -473,8 +469,8 @@ msgstr "オプション" #: ../../godmode/agentes/module_manager_editor_common.php:1538 #: ../../godmode/agentes/module_manager.php:1000 #: ../../godmode/netflow/nf_item_list.php:263 -#: ../../godmode/netflow/nf_item_list.php:273 -#: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 +#: ../../godmode/netflow/nf_item_list.php:273 ../../godmode/netflow/nf_edit.php:203 +#: ../../godmode/netflow/nf_edit.php:223 #: ../../godmode/snmpconsole/snmp_alert.php:1950 #: ../../godmode/snmpconsole/snmp_filters.php:326 #: ../../godmode/snmpconsole/snmp_filters.php:337 @@ -508,8 +504,7 @@ msgstr "オプション" #: ../../godmode/servers/servers.build_table.php:273 #: ../../godmode/servers/plugin.php:1067 ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 -#: ../../include/functions_cron.php:958 -#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/functions_cron.php:958 ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 #: ../../include/class/NetworkMap.class.php:2943 #: ../../include/class/ManageNetScanScripts.class.php:405 @@ -542,14 +537,13 @@ msgstr "削除" #: ../../views/consoles/list.php:121 msgid "" -"Are you sure?

WARNING: you also need to delete config." -"php options in your console or delete the whole console." +"Are you sure?

WARNING: you also need to delete config.php " +"options in your console or delete the whole console." msgstr "" -"よろしいですか?

警告: コンソールの config.php オプション" -"を削除するか、コンソール全体を削除する必要もあります。" +"よろしいですか?

警告: コンソールの config.php オプションを" +"削除するか、コンソール全体を削除する必要もあります。" -#: ../../views/consoles/list.php:127 -#: ../../views/calendar/special_days_edit.php:209 +#: ../../views/consoles/list.php:127 ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 #: ../../views/dashboard/header.php:106 ../../views/dashboard/list.php:228 @@ -629,8 +623,8 @@ msgstr "キャンセル" #: ../../enterprise/include/class/LogSource.class.php:767 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 -#: ../../include/ajax/snmp_browser.ajax.php:260 -#: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743 +#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:310 +#: ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 #: ../../include/class/Diagnostics.class.php:2115 @@ -733,10 +727,8 @@ msgstr "失敗" #: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 #: ../../include/functions_reporting_html.php:2594 #: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 -#: ../../include/functions_reports.php:855 -#: ../../include/functions_reports.php:859 -#: ../../include/functions_reports.php:865 +#: ../../include/functions_treeview.php:392 ../../include/functions_reports.php:855 +#: ../../include/functions_reports.php:859 ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 @@ -858,11 +850,11 @@ msgstr "任意のノード" #: ../../views/calendar/edit.php:69 ../../views/calendar/special_days.php:70 #, php-format msgid "" -"This node is configured with centralized mode. All alert calendar information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert calendar information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../views/calendar/list.php:95 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 @@ -997,8 +989,7 @@ msgstr "ID" #: ../../godmode/agentes/module_manager_editor_common.php:252 #: ../../godmode/agentes/module_manager_editor_common.php:1430 #: ../../godmode/agentes/module_manager.php:605 -#: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit.php:166 ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 @@ -1044,9 +1035,8 @@ msgstr "ID" #: ../../include/class/SatelliteCollection.class.php:132 #: ../../include/functions_filemanager.php:644 #: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 -#: ../../operation/search_helps.php:31 +#: ../../include/functions_events.php:4339 ../../include/functions_events.php:4472 +#: ../../operation/search_users.php:44 ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 #: ../../operation/agentes/pandora_networkmap.php:716 #: ../../operation/agentes/pandora_networkmap.view.php:137 @@ -1056,8 +1046,7 @@ msgstr "ID" msgid "Name" msgstr "名前" -#: ../../views/calendar/list.php:97 -#: ../../views/calendar/special_days_edit.php:105 +#: ../../views/calendar/list.php:97 ../../views/calendar/special_days_edit.php:105 #: ../../views/calendar/edit.php:100 ../../views/calendar/special_days.php:117 #: ../../views/cluster/list.php:71 ../../views/dashboard/list.php:101 #: ../../views/dashboard/formDashboard.php:92 @@ -1155,8 +1144,7 @@ msgstr "名前" #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit.php:167 ../../godmode/netflow/nf_edit_form.php:211 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1217,12 +1205,10 @@ msgstr "名前" #: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 #: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 -#: ../../mobile/operation/alerts.php:232 -#: ../../mobile/operation/visualmaps.php:113 -#: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/alerts.php:232 ../../mobile/operation/visualmaps.php:113 +#: ../../mobile/operation/visualmaps.php:118 ../../mobile/operation/events.php:666 +#: ../../mobile/operation/events.php:671 ../../mobile/operation/events.php:832 +#: ../../mobile/operation/events.php:954 ../../mobile/operation/events.php:955 #: ../../include/functions_visual_map_editor.php:70 #: ../../include/functions_visual_map_editor.php:594 #: ../../include/functions_visual_map_editor.php:1395 @@ -1231,11 +1217,9 @@ msgstr "名前" #: ../../include/functions_reporting_html.php:3660 #: ../../include/functions_reporting_html.php:6458 #: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 -#: ../../include/ajax/custom_fields.php:630 -#: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 -#: ../../include/functions_profile.php:204 +#: ../../include/ajax/heatmap.ajax.php:358 ../../include/ajax/custom_fields.php:630 +#: ../../include/ajax/custom_fields.php:679 ../../include/functions_graph.php:4937 +#: ../../include/functions_gis.php:228 ../../include/functions_profile.php:204 #: ../../include/functions_visual_map.php:4215 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 #: ../../include/rest-api/models/VisualConsole/Item.php:2140 @@ -1320,10 +1304,9 @@ msgstr "グループ" msgid "Free search" msgstr "検索語" -#: ../../views/calendar/list.php:149 -#: ../../views/calendar/special_days_edit.php:161 -#: ../../views/calendar/special_days_edit.php:208 -#: ../../views/calendar/edit.php:129 ../../views/calendar/special_days.php:346 +#: ../../views/calendar/list.php:149 ../../views/calendar/special_days_edit.php:161 +#: ../../views/calendar/special_days_edit.php:208 ../../views/calendar/edit.php:129 +#: ../../views/calendar/special_days.php:346 #: ../../views/calendar/special_days.php:429 #: ../../views/calendar/special_days.php:504 #: ../../views/calendar/special_days.php:529 @@ -1474,8 +1457,8 @@ msgstr "特別日設定" #: ../../include/functions_reporting_html.php:2870 #: ../../include/functions_reporting_html.php:2920 #: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:6014 ../../include/functions.php:3109 +#: ../../include/functions_inventory.php:1065 #: ../../include/class/AuditLog.class.php:112 #: ../../include/functions_reporting.php:4728 #: ../../include/functions_reporting.php:4769 @@ -1609,8 +1592,7 @@ msgstr "休日" msgid "Same day of the week" msgstr "同一の曜日" -#: ../../views/calendar/special_days_edit.php:161 -#: ../../views/calendar/edit.php:129 +#: ../../views/calendar/special_days_edit.php:161 ../../views/calendar/edit.php:129 #: ../../enterprise/views/ncm/snippets/edit.php:123 #: ../../enterprise/views/ncm/templates/edit.php:328 #: ../../enterprise/views/ncm/firmwares/edit.php:183 @@ -1746,12 +1728,10 @@ msgstr "同一の曜日" #: ../../godmode/alerts/configure_alert_action.php:424 #: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 -#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 -#: ../../godmode/setup/setup_auth.php:515 +#: ../../godmode/setup/setup_websocket_engine.php:93 ../../godmode/setup/os.php:73 +#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:95 #: ../../godmode/setup/setup_visuals.php:2130 #: ../../godmode/setup/setup_general.php:841 #: ../../godmode/setup/performance.php:880 @@ -1765,8 +1745,7 @@ msgstr "同一の曜日" #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 #: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 -#: ../../godmode/category/edit_category.php:196 +#: ../../godmode/tag/edit_tag.php:247 ../../godmode/category/edit_category.php:196 #: ../../include/functions_visual_map_editor.php:878 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 @@ -1775,8 +1754,7 @@ msgstr "同一の曜日" #: ../../include/class/CredentialStore.class.php:1651 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 +#: ../../include/functions_events.php:3512 ../../include/functions_events.php:3594 #: ../../operation/users/user_edit.php:951 #: ../../operation/agentes/datos_agente.php:218 #: ../../operation/incidents/configure_integriaims_incident.php:415 @@ -1849,8 +1827,7 @@ msgstr "表示範囲: " #: ../../godmode/massive/massive_edit_agents.php:1034 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599 -#: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 +#: ../../godmode/setup/gis_step_2.php:685 ../../godmode/setup/setup_visuals.php:402 #: ../../godmode/setup/setup_visuals.php:433 #: ../../godmode/setup/setup_visuals.php:573 #: ../../godmode/setup/setup_visuals.php:689 @@ -1860,10 +1837,8 @@ msgstr "表示範囲: " #: ../../include/functions_ui.php:1404 #: ../../include/class/AgentsAlerts.class.php:947 #: ../../include/class/SnmpConsole.class.php:299 -#: ../../operation/users/user_edit.php:429 -#: ../../operation/users/user_edit.php:432 -#: ../../operation/users/user_edit.php:443 -#: ../../operation/users/user_edit.php:468 +#: ../../operation/users/user_edit.php:429 ../../operation/users/user_edit.php:432 +#: ../../operation/users/user_edit.php:443 ../../operation/users/user_edit.php:468 #: ../../operation/gis_maps/gis_map.php:119 msgid "Default" msgstr "デフォルト" @@ -2065,8 +2040,7 @@ msgstr "テンプレート表示" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:951 ../../godmode/groups/group_list.php:952 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 #: ../../godmode/agentes/modificar_agente.php:810 @@ -2081,9 +2055,8 @@ msgstr "テンプレート表示" #: ../../godmode/events/event_responses.list.php:105 #: ../../godmode/servers/servers.build_table.php:237 #: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 -#: ../../godmode/category/category.php:182 -#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 -#: ../../include/functions_cron.php:944 +#: ../../godmode/category/category.php:182 ../../godmode/category/category.php:211 +#: ../../include/functions_cron.php:918 ../../include/functions_cron.php:944 #: ../../include/class/NetworkMap.class.php:3192 #: ../../include/class/CredentialStore.class.php:1263 #: ../../include/class/TipsWindow.class.php:457 @@ -2186,8 +2159,7 @@ msgstr "編集" #: ../../godmode/agentes/fields_manager.php:210 #: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/agentes/module_manager.php:1235 -#: ../../godmode/netflow/nf_item_list.php:262 -#: ../../godmode/netflow/nf_edit.php:202 +#: ../../godmode/netflow/nf_item_list.php:262 ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 #: ../../godmode/snmpconsole/snmp_alert.php:2325 #: ../../godmode/snmpconsole/snmp_filters.php:326 @@ -2217,8 +2189,7 @@ msgstr "編集" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 #: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 -#: ../../godmode/category/category.php:186 -#: ../../godmode/category/category.php:222 +#: ../../godmode/category/category.php:186 ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 #: ../../include/class/ConfigPEN.class.php:672 #: ../../include/class/SatelliteAgent.class.php:1145 @@ -2239,8 +2210,7 @@ msgstr "編集" #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3655 ../../operation/users/user_edit.php:1345 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 #: ../../operation/snmpconsole/snmp_browser.php:637 @@ -2273,8 +2243,7 @@ msgstr "カレンダー読み込み" msgid "Cluster view" msgstr "クラスタ表示" -#: ../../views/cluster/list.php:40 -#: ../../enterprise/meta/general/main_header.php:91 +#: ../../views/cluster/list.php:40 ../../enterprise/meta/general/main_header.php:91 #: ../../enterprise/meta/general/logon_ok.php:82 #: ../../enterprise/meta/general/main_menu.php:191 #: ../../enterprise/meta/general/main_menu.php:192 @@ -2372,10 +2341,9 @@ msgstr "クラスタ" #: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:105 #: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125 -#: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 +#: ../../mobile/operation/visualmaps.php:126 ../../mobile/operation/events.php:658 +#: ../../mobile/operation/events.php:659 ../../mobile/operation/events.php:812 +#: ../../mobile/operation/events.php:972 ../../mobile/operation/events.php:973 #: ../../include/functions_visual_map_editor.php:700 #: ../../include/functions_visual_map_editor.php:718 #: ../../include/functions_visual_map_editor.php:846 @@ -2399,8 +2367,7 @@ msgstr "クラスタ" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 -#: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 +#: ../../include/functions_events.php:2525 ../../include/functions_events.php:4958 #: ../../operation/agentes/estado_agente.php:1043 #: ../../operation/agentes/ver_agente.php:1171 #: ../../operation/netflow/nf_live_view.php:495 @@ -2411,15 +2378,13 @@ msgstr "クラスタ" msgid "Type" msgstr "種類" -#: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../views/cluster/list.php:73 ../../include/functions_reporting_html.php:5925 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 #: ../../operation/agentes/pandora_networkmap.php:717 msgid "Nodes" msgstr "ノード" -#: ../../views/cluster/list.php:74 -#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../views/cluster/list.php:74 ../../enterprise/views/ncm/devices/list.php:120 #: ../../enterprise/meta/advanced/servers.build_table.php:62 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 @@ -2529,8 +2494,8 @@ msgstr "ノード" #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 -#: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:2543 ../../include/functions_events.php:5004 +#: ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 #: ../../operation/agentes/estado_agente.php:1049 #: ../../operation/agentes/interface_view.functions.php:516 @@ -2545,8 +2510,7 @@ msgstr "ノード" msgid "Status" msgstr "状態" -#: ../../views/cluster/list.php:99 -#: ../../enterprise/views/ncm/snippets/list.php:95 +#: ../../views/cluster/list.php:99 ../../enterprise/views/ncm/snippets/list.php:95 #: ../../enterprise/views/ncm/templates/list.php:101 #: ../../enterprise/views/ncm/devices/list.php:148 #: ../../enterprise/views/ncm/firmwares/list.php:100 @@ -2630,12 +2594,10 @@ msgstr "このクラスタを編集" #: ../../mobile/operation/alerts.php:68 #: ../../include/functions_visual_map_editor.php:824 #: ../../include/functions_reporting_html.php:3676 -#: ../../include/functions_agents.php:1472 -#: ../../include/functions_treeview.php:66 +#: ../../include/functions_agents.php:1472 ../../include/functions_treeview.php:66 #: ../../include/functions_treeview.php:602 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 -#: ../../operation/search_agents.php:93 +#: ../../include/functions_reporting.php:6992 ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 msgid "Disabled" @@ -2749,56 +2711,35 @@ msgstr "IP アドレス" #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 #: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 -#: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 -#: ../../include/functions_treeview.php:153 +#: ../../include/functions_reporting_html.php:5617 ../../include/functions.php:1180 +#: ../../include/functions.php:1186 ../../include/functions.php:1190 +#: ../../include/ajax/module.php:1156 ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 #: ../../include/functions_treeview.php:410 #: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 #: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 #: ../../include/class/SnmpConsole.class.php:794 #: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 -#: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 +#: ../../include/functions_events.php:3684 ../../include/functions_events.php:3818 +#: ../../include/functions_events.php:3838 ../../include/functions_events.php:3847 +#: ../../include/functions_events.php:3856 ../../include/functions_events.php:3857 +#: ../../include/functions_events.php:3869 ../../include/functions_events.php:3929 +#: ../../include/functions_events.php:3962 ../../include/functions_events.php:4028 +#: ../../include/functions_events.php:4045 ../../include/functions_events.php:4052 +#: ../../include/functions_events.php:4118 ../../include/functions_events.php:4210 +#: ../../include/functions_events.php:4334 ../../include/functions_events.php:4373 +#: ../../include/functions_events.php:4413 ../../include/functions_events.php:4436 +#: ../../include/functions_events.php:4466 ../../include/functions_events.php:4549 +#: ../../include/functions_events.php:4630 ../../include/functions_events.php:4640 +#: ../../include/functions_events.php:4857 ../../include/functions_events.php:4938 +#: ../../include/functions_events.php:5043 ../../include/functions_events.php:5072 +#: ../../include/functions_events.php:5087 ../../include/functions_events.php:5097 +#: ../../include/functions_events.php:5107 ../../include/functions_events.php:5590 +#: ../../include/functions_events.php:5604 ../../include/functions_events.php:5609 +#: ../../include/functions_events.php:5612 ../../include/functions_events.php:5620 +#: ../../include/functions_events.php:5629 ../../include/functions_events.php:5641 +#: ../../include/functions_events.php:5694 ../../include/functions_events.php:5721 +#: ../../include/functions_events.php:5746 ../../include/functions_events.php:5790 #: ../../operation/agentes/estado_agente.php:1222 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 @@ -2852,8 +2793,7 @@ msgstr "新規ウィジェット" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 +#: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 #: ../../operation/visual_console/view.php:231 #: ../../operation/visual_console/legacy_view.php:201 @@ -2900,8 +2840,7 @@ msgstr "ダッシュボードの更新" #: ../../godmode/massive/massive_edit_agents.php:1043 #: ../../godmode/reporting/graph_builder.graph_editor.php:241 #: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../include/functions_config.php:1333 ../../include/functions_config.php:3537 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -3009,13 +2948,12 @@ msgstr "ダッシュボード" #: ../../godmode/modules/manage_nc_groups.php:176 #: ../../godmode/modules/manage_network_components.php:562 #: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357 -#: ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 +#: ../../godmode/users/user_list.php:411 ../../godmode/users/configure_user.php:101 #: ../../godmode/users/configure_user.php:121 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/netflow/nf_edit.php:111 ../../godmode/netflow/nf_edit.php:144 +#: ../../godmode/netflow/nf_item_list.php:148 ../../godmode/netflow/nf_edit.php:111 +#: ../../godmode/netflow/nf_edit.php:144 #: ../../godmode/snmpconsole/snmp_alert.php:686 #: ../../godmode/snmpconsole/snmp_filters.php:180 #: ../../godmode/massive/massive_delete_action_alerts.php:170 @@ -3024,10 +2962,9 @@ msgstr "ダッシュボード" #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 #: ../../godmode/alerts/alert_templates.php:257 -#: ../../godmode/alerts/alert_list.php:239 -#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 -#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 -#: ../../godmode/reporting/map_builder.php:209 +#: ../../godmode/alerts/alert_list.php:239 ../../godmode/alerts/alert_list.php:346 +#: ../../godmode/setup/news.php:137 ../../godmode/setup/gis.php:61 +#: ../../godmode/setup/links.php:89 ../../godmode/reporting/map_builder.php:209 #: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 #: ../../godmode/reporting/graphs.php:213 #: ../../godmode/reporting/reporting_builder.php:631 @@ -3071,9 +3008,8 @@ msgstr "削除しました。" #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 #: ../../godmode/alerts/alert_templates.php:258 -#: ../../godmode/alerts/alert_list.php:240 -#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 -#: ../../godmode/setup/gis.php:59 +#: ../../godmode/alerts/alert_list.php:240 ../../godmode/alerts/alert_list.php:347 +#: ../../godmode/setup/news.php:138 ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 #: ../../operation/agentes/pandora_networkmap.php:563 #: ../../operation/messages/message_list.php:110 @@ -3235,8 +3171,8 @@ msgid "" "This mode will show the dashboard with all the widgets in the screen. Click to " "change to single screen mode." msgstr "" -"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 " -"クリックしてシングルスクリーンモードに変更します。" +"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 ク" +"リックしてシングルスクリーンモードに変更します。" #: ../../views/dashboard/slides.php:259 msgid "Single screen" @@ -3261,8 +3197,8 @@ msgstr "" #: ../../enterprise/views/ncm/models/list.php:32 #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1294 +#: ../../include/functions_events.php:3178 msgid "Network configuration manager" msgstr "ネットワーク設定管理" @@ -3550,11 +3486,10 @@ msgstr "プレビュー" #: ../../include/functions_reporting_html.php:2563 #: ../../include/functions_reporting_html.php:2576 #: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 -#: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 -#: ../../include/functions_visual_map.php:2457 +#: ../../include/functions_reporting_html.php:3966 ../../include/functions.php:1281 +#: ../../include/functions.php:4181 ../../include/ajax/module.php:1057 +#: ../../include/ajax/module.php:1946 ../../include/functions_ui.php:606 +#: ../../include/functions_ui.php:607 ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 @@ -3763,8 +3698,8 @@ msgid "" "This action will connect to the device to retrieve firmware version. Are you " "sure?" msgstr "" -"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろし" -"いですか?" +"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしい" +"ですか?" #: ../../enterprise/views/ncm/agent/details.php:636 msgid "Get running config?" @@ -3772,10 +3707,9 @@ msgstr "running config を取得しますか?" #: ../../enterprise/views/ncm/agent/details.php:637 msgid "" -"This action will connect to the device to retrieve latest configuration. Are " -"you sure?" -msgstr "" -"この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" +"This action will connect to the device to retrieve latest configuration. Are you " +"sure?" +msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:648 msgid "Backup latest config?" @@ -3783,8 +3717,8 @@ msgstr "最新の設定をバックアップしますた?" #: ../../enterprise/views/ncm/agent/details.php:649 msgid "" -"This action will overwrite current backup to use latest retrieved " -"configuration. Are you sure?" +"This action will overwrite current backup to use latest retrieved configuration. " +"Are you sure?" msgstr "" "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" @@ -3794,10 +3728,9 @@ msgstr "対象の設定をバックアップしますか?" #: ../../enterprise/views/ncm/agent/details.php:658 msgid "" -"This action will overwrite current backup to use selected configuration. Are " -"you sure?" -msgstr "" -"この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" +"This action will overwrite current backup to use selected configuration. Are you " +"sure?" +msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:669 msgid "Restore device configuration?" @@ -3805,8 +3738,7 @@ msgstr "デバイス設定をリストアしますか?" #: ../../enterprise/views/ncm/agent/details.php:670 msgid "" -"This action will overwrite device configuration with latest backup. Are you " -"sure?" +"This action will overwrite device configuration with latest backup. Are you sure?" msgstr "" "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" @@ -3840,8 +3772,7 @@ msgstr "実行" #: ../../godmode/modules/manage_network_components.php:302 #: ../../godmode/menu.php:172 ../../godmode/menu.php:275 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 -#: ../../include/class/ConfigPEN.class.php:334 +#: ../../include/functions_menu.php:585 ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 msgid "Templates" @@ -3882,8 +3813,7 @@ msgstr "デバイス" #: ../../enterprise/views/ncm/templates/edit.php:102 msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"template." +"Comma separated, a vendors list compatible with scripts defined within template." msgstr "" "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" @@ -3911,11 +3841,10 @@ msgstr "スクリプト: 設定取得" #: ../../enterprise/views/ncm/templates/edit.php:203 msgid "" -"This script will be used to apply configuration, previously backed up, to " -"devices" +"This script will be used to apply configuration, previously backed up, to devices" msgstr "" -"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用され" -"ます" +"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されま" +"す" #: ../../enterprise/views/ncm/templates/edit.php:208 msgid "Script: set configuration" @@ -3924,8 +3853,8 @@ msgstr "スクリプト: 設定投入" #: ../../enterprise/views/ncm/templates/edit.php:231 msgid "This script will be used to retrieve firmware version from devices" msgstr "" -"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用され" -"ます" +"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されま" +"す" #: ../../enterprise/views/ncm/templates/edit.php:236 msgid "Script: get firmware" @@ -3934,8 +3863,8 @@ msgstr "スクリプト: ファームウエア取得" #: ../../enterprise/views/ncm/templates/edit.php:258 msgid "This script will be used to upgrade firmware version of the devices" msgstr "" -"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために" -"使用されます" +"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使" +"用されます" #: ../../enterprise/views/ncm/templates/edit.php:263 msgid "Script: set firmware" @@ -3952,19 +3881,19 @@ msgstr "スクリプト: カスタムタスク" #: ../../enterprise/views/ncm/devices/list.php:69 msgid "" "WARNING: This is a new feature and is still at an early stage. It is available " -"with limited features, use it with caution and send us your feedback to " -"improve these current capabilities." +"with limited features, use it with caution and send us your feedback to improve " +"these current capabilities." msgstr "" -"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意し" -"て使用し、現在の機能の改善のためのフィードバックをお願いします。" +"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して" +"使用し、現在の機能の改善のためのフィードバックをお願いします。" #: ../../enterprise/views/ncm/devices/list.php:72 msgid "" "Network configuration manager is used to keep configurations and software " "versions of any network device in your infrastructure under your control." msgstr "" -"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソ" -"フトウェアバージョンを管理するために使用します。" +"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフ" +"トウェアバージョンを管理するために使用します。" #: ../../enterprise/views/ncm/devices/list.php:77 msgid "" @@ -4058,18 +3987,15 @@ msgstr "ファームウエア" #: ../../enterprise/views/ncm/firmwares/edit.php:101 msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"firmware." +"Comma separated, a vendors list compatible with scripts defined within firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一" -"覧。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。" #: ../../enterprise/views/ncm/firmwares/edit.php:129 msgid "" "Comma separated, a model list compatible with scripts defined within firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリス" -"ト。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。" #: ../../enterprise/views/ncm/firmwares/edit.php:149 #: ../../enterprise/meta/advanced/metasetup.consoles.php:484 @@ -4122,16 +4048,15 @@ msgstr "" #: ../../godmode/massive/massive_edit_agents.php:1061 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 +#: ../../godmode/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84 #: ../../godmode/reporting/reporting_builder.item_editor.php:3831 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 -#: ../../include/functions.php:1091 ../../include/functions.php:1329 -#: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846 -#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869 +#: ../../include/functions_reporting_html.php:2575 ../../include/functions.php:1091 +#: ../../include/functions.php:1329 ../../include/functions.php:1332 +#: ../../include/functions.php:1371 ../../include/ajax/module.php:1942 +#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:3343 +#: ../../include/functions_graph.php:4846 ../../include/functions_ui.php:314 +#: ../../include/functions_ui.php:2869 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 @@ -4437,8 +4362,7 @@ msgstr "親" #: ../../godmode/alerts/configure_alert_template.php:663 #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 -#: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 +#: ../../godmode/setup/os.builder.php:51 ../../godmode/setup/setup_visuals.php:611 #: ../../godmode/setup/setup_visuals.php:651 #: ../../godmode/setup/setup_visuals.php:1084 #: ../../godmode/setup/setup_general.php:1051 @@ -4480,16 +4404,14 @@ msgstr "親" #: ../../include/functions_visual_map_editor.php:1008 #: ../../include/functions_visual_map_editor.php:1070 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 -#: ../../include/functions_networkmap.php:1524 -#: ../../include/ajax/audit_log.php:156 +#: ../../include/functions_networkmap.php:1524 ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 #: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 #: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 #: ../../include/functions_integriaims.php:135 -#: ../../include/functions_profile.php:349 -#: ../../include/functions_profile.php:367 +#: ../../include/functions_profile.php:349 ../../include/functions_profile.php:367 #: ../../include/functions_profile.php:382 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 @@ -4540,12 +4462,9 @@ msgstr "親" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 +#: ../../include/functions_events.php:3501 ../../operation/users/user_edit.php:520 +#: ../../operation/users/user_edit.php:532 ../../operation/users/user_edit.php:581 +#: ../../operation/users/user_edit.php:616 ../../operation/users/user_edit.php:631 #: ../../operation/users/user_edit.php:1081 #: ../../operation/users/user_edit.php:1088 #: ../../operation/users/user_edit.php:1097 @@ -4624,14 +4543,10 @@ msgstr "データベースにサーバがありません。" #: ../../mobile/operation/agent.php:327 #: ../../include/functions_reporting_html.php:2094 #: ../../include/functions_reporting_html.php:5662 -#: ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 -#: ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 -#: ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 -#: ../../include/functions_reports.php:769 -#: ../../include/functions_reports.php:773 +#: ../../include/functions_reports.php:745 ../../include/functions_reports.php:749 +#: ../../include/functions_reports.php:753 ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:761 ../../include/functions_reports.php:765 +#: ../../include/functions_reports.php:769 ../../include/functions_reports.php:773 #: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745 #: ../../include/functions_html.php:5982 #: ../../include/class/AgentsAlerts.class.php:253 @@ -4727,15 +4642,15 @@ msgstr "実行キュー" #: ../../enterprise/meta/advanced/servers.build_table.php:181 msgid "" -"You have too many items in the processing queue. This can happen if your " -"server is overloaded and/or improperly configured. This could be something " -"temporary, or a bottleneck. If it is associated with a delay in monitoring, " -"with modules going to unknown, try increasing the number of threads." +"You have too many items in the processing queue. This can happen if your server " +"is overloaded and/or improperly configured. This could be something temporary, " +"or a bottleneck. If it is associated with a delay in monitoring, with modules " +"going to unknown, try increasing the number of threads." msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているか" -"サーバが正しく設定されていません。これは一時的なものかもしれませんがボトルネッ" -"クになります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増" -"やしてみてください。" +"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているかサー" +"バが正しく設定されていません。これは一時的なものかもしれませんがボトルネックにな" +"ります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増やしてみ" +"てください。" #: ../../enterprise/meta/advanced/servers.build_table.php:182 #: ../../enterprise/meta/advanced/cron_main.php:408 @@ -4785,8 +4700,7 @@ msgstr "コマンドセンター" #: ../../enterprise/meta/monitoring/wizard/wizard.php:68 #, php-format msgid "" -"You should centralise management in order to use Wizard section. Please go to " -"%s" +"You should centralise management in order to use Wizard section. Please go to %s" msgstr "" "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" @@ -4941,8 +4855,7 @@ msgstr "インタフェースグラフの値" #: ../../godmode/massive/massive_edit_users.php:263 #: ../../godmode/setup/setup_visuals.php:92 #: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 -#: ../../operation/users/user_edit.php:420 +#: ../../include/functions_config.php:1042 ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "ページ毎の表示件数" @@ -5059,8 +4972,7 @@ msgstr "ヘルプの無効化" #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 #: ../../godmode/alerts/alert_templates.php:313 -#: ../../godmode/alerts/alert_list.php:553 -#: ../../godmode/alerts/alert_list.php:574 +#: ../../godmode/alerts/alert_list.php:553 ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238 #: ../../godmode/setup/setup_visuals.php:1085 #: ../../godmode/reporting/reporting_builder.list_items.php:217 @@ -5422,8 +5334,8 @@ msgid "" "You can place your favicon into the folder images/custom_favicon/. This file " "should be in .ico format with a size of 16x16." msgstr "" -"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、" -"16x16 のサイズの .ico 形式である必要があります。" +"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 " +"のサイズの .ico 形式である必要があります。" #: ../../enterprise/meta/advanced/metasetup.visual.php:563 #: ../../godmode/setup/setup_visuals.php:424 @@ -5512,8 +5424,7 @@ msgstr "著作権表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 #: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../include/functions_config.php:1154 ../../include/functions_config.php:1158 msgid "Background opacity % (login)" msgstr "背景の透明度 % (ログイン)" @@ -5644,11 +5555,11 @@ msgstr "説明とともにレポート情報を表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:1029 msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." +"Custom report description info. It will be applied to all reports and templates " +"by default." msgstr "" -"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適" -"用されます。" +"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用" +"されます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 #: ../../godmode/setup/setup_visuals.php:1492 @@ -5660,8 +5571,8 @@ msgid "" "Custom report front page. It will be applied to all reports and templates by " "default." msgstr "" -"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用さ" -"れます。" +"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用され" +"ます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 @@ -5685,8 +5596,8 @@ msgstr "HTML レポートのグラフ画像の高さ" #: ../../enterprise/meta/advanced/metasetup.visual.php:1066 msgid "" -"This is the height in pixels of the module graph or custom graph in the " -"reports (only: HTML)" +"This is the height in pixels of the module graph or custom graph in the reports " +"(only: HTML)" msgstr "" "これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです" "(HTMLのみ)。" @@ -5715,8 +5626,7 @@ msgstr "間隔の表示" msgid "" "A long interval description is for example 10 hours, 20 minutes 33 seconds”, a " "short one is 10h 20m 33s" -msgstr "" -"長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" +msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1164 #: ../../enterprise/meta/include/functions_meta.php:1654 @@ -5724,8 +5634,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 #: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../include/functions_config.php:1074 ../../include/functions_config.php:1492 msgid "Custom logo" msgstr "カスタムロゴ" @@ -5736,8 +5645,8 @@ msgid "" "The path of custom logos is 'images/custom_logo' in the console installation. " "You can upload more files (ONLY JPEG AND PNG) with the upload tool." msgstr "" -"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツー" -"ルを使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" +"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツール" +"を使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1184 #: ../../enterprise/meta/advanced/metasetup.visual.php:1195 @@ -5754,12 +5663,9 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1555 #: ../../godmode/setup/setup_visuals.php:1568 #: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 -#: ../../include/functions_config.php:1500 -#: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1484 ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1492 ../../include/functions_config.php:1496 +#: ../../include/functions_config.php:1500 ../../include/functions_config.php:1504 msgid "Custom report front" msgstr "カスタムレポートスタイル" @@ -5887,12 +5793,11 @@ msgstr "エージェント: %d はマイグレーションキューにすでに #: ../../godmode/modules/manage_nc_groups.php:177 #: ../../godmode/agentes/planned_downtime.list.php:291 #: ../../godmode/netflow/nf_item_list.php:121 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/netflow/nf_edit.php:112 ../../godmode/netflow/nf_edit.php:145 +#: ../../godmode/netflow/nf_item_list.php:149 ../../godmode/netflow/nf_edit.php:112 +#: ../../godmode/netflow/nf_edit.php:145 #: ../../godmode/reporting/map_builder.php:210 #: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 -#: ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:78 +#: ../../godmode/reporting/graphs.php:214 ../../godmode/events/event_filter.php:78 #: ../../godmode/events/event_filter.php:105 #: ../../operation/reporting/graph_viewer.php:59 #: ../../operation/reporting/graph_viewer.php:67 @@ -6001,13 +5906,11 @@ msgid "All collections needed are syncronized with target server." msgstr "必要なすべてのコレクションは対象サーバと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 -msgid "" -"All remote inventory definitions needed are syncronized with target server." +msgid "All remote inventory definitions needed are syncronized with target server." msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 -msgid "" -"All alert templates definitions needed are syncronized with target server." +msgid "All alert templates definitions needed are syncronized with target server." msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 @@ -6034,8 +5937,7 @@ msgstr "移動" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 #: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 -#: ../../include/functions_events.php:250 +#: ../../include/functions_inventory.php:176 ../../include/functions_events.php:250 msgid "Agent alias" msgstr "エージェントの別名" @@ -6276,8 +6178,8 @@ msgstr "検索文字列 (*)" #: ../../operation/agentes/status_monitor.php:915 #: ../../operation/agentes/agent_inventory.php:138 #: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 -#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +#: ../../operation/inventory/inventory.php:640 ../../general/ui/agents_list.php:100 +#: ../../general/ui/agents_list.php:113 msgid "Search" msgstr "検索" @@ -6311,8 +6213,7 @@ msgstr "検索" #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 -#: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 +#: ../../extensions/module_groups.php:322 ../../extensions/realtime_graphs.php:220 #: ../../godmode/modules/manage_network_components.php:713 #: ../../godmode/groups/group_list.php:820 #: ../../godmode/agentes/planned_downtime.list.php:661 @@ -6464,8 +6365,7 @@ msgstr "関係一覧の表示" #: ../../include/functions_reporting_html.php:5492 #: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reports.php:1087 -#: ../../include/functions_netflow.php:212 +#: ../../include/functions_reports.php:1087 ../../include/functions_netflow.php:212 #: ../../include/functions_snmp_browser.php:560 msgid "Value" msgstr "値" @@ -6507,8 +6407,7 @@ msgstr "ノードアドレス" #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 #: ../../godmode/agentes/module_manager.php:647 -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/netflow/nf_edit.php:168 +#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:168 #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 @@ -6526,8 +6425,8 @@ msgstr "ノードアドレス" #: ../../godmode/events/event_filter.php:149 #: ../../mobile/operation/tactical.php:348 #: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 -#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:6013 ../../include/functions.php:3109 +#: ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 @@ -6616,8 +6515,7 @@ msgstr "パスワードポリシーを利用する" #: ../../godmode/massive/massive_edit_modules.php:1058 #: ../../godmode/massive/massive_edit_modules.php:1096 #: ../../godmode/massive/massive_edit_modules.php:1124 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/alerts/alert_view.php:265 +#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265 #: ../../godmode/reporting/reporting_builder.php:1084 #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 @@ -6686,8 +6584,7 @@ msgstr "はい" #: ../../godmode/massive/massive_edit_modules.php:1058 #: ../../godmode/massive/massive_edit_modules.php:1097 #: ../../godmode/massive/massive_edit_modules.php:1125 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/alerts/alert_view.php:265 +#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265 #: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 @@ -6699,8 +6596,7 @@ msgstr "はい" #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 -#: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4971 ../../include/functions_events.php:4976 #: ../../operation/users/user_edit.php:434 #: ../../operation/netflow/nf_live_view.php:350 msgid "No" @@ -6875,12 +6771,12 @@ msgid "" "If you have manual settings in your pandora_server.conf, please note these " "settings will ignore this console setup." msgstr "" -"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で" -"設定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意" -"してください。\n" +"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設" +"定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意して" +"ください。\n" "\n" -"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注" -"意してください。" +"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意" +"してください。" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 #: ../../godmode/setup/setup_general.php:725 @@ -6893,8 +6789,7 @@ msgid "From dir" msgstr "From アドレス" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:756 ../../include/functions_config.php:402 msgid "From name" msgstr "From 名" @@ -6909,8 +6804,7 @@ msgid "Port SMTP" msgstr "SMTP ポート" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:817 ../../include/functions_config.php:410 msgid "Encryption" msgstr "暗号化" @@ -6925,14 +6819,12 @@ msgid "none" msgstr "なし" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:792 ../../include/functions_config.php:414 msgid "Email user" msgstr "メールユーザ" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:803 ../../include/functions_config.php:418 msgid "Email password" msgstr "メールユーザパスワード" @@ -6991,8 +6883,7 @@ msgstr "パフォーマンス設定" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 #: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 -#: ../../godmode/setup/file_manager.php:47 -#: ../../godmode/setup/file_manager.php:60 +#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 msgid "File manager" msgstr "ファイルマネージャ" @@ -7131,8 +7022,7 @@ msgstr "ポリシー適用" #: ../../enterprise/godmode/policies/policy.php:154 #: ../../enterprise/include/functions_groups.php:33 #: ../../enterprise/operation/agentes/ver_agente.php:254 -#: ../../include/functions_networkmap.php:1303 -#: ../../include/functions_maps.php:42 +#: ../../include/functions_networkmap.php:1303 ../../include/functions_maps.php:42 #: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 @@ -7214,8 +7104,8 @@ msgstr "ノード同期処理に失敗しました。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:229 #: ../../enterprise/meta/advanced/metasetup.consoles.php:343 msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the " -"form available at Settings > Enterprise at node console." +"If you are trying to migrate this node to a new metaconsole, please use the form " +"available at Settings > Enterprise at node console." msgstr "" "このノードを新しいメタコンソールに移行する場合は、ノードコンソールの 設定 > " "Enterprise にあるフォームを使用してください。" @@ -7307,8 +7197,8 @@ msgid "" "If you have changed the node database to a different one, please go to Command " "center and perform a database unification process." msgstr "" -"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの" -"統合プロセスを実行してください。" +"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの統" +"合プロセスを実行してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:455 msgid "" @@ -7320,8 +7210,8 @@ msgid "" "System is centralised, please go to command center to perform a database merge " "process to add new nodes." msgstr "" -"システムは中央管理されています。コマンドセンターにアクセスして、データベース" -"マージプロセスを実行し新しいノードを追加してください。" +"システムは中央管理されています。コマンドセンターにアクセスして、データベースマー" +"ジプロセスを実行し新しいノードを追加してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:464 msgid "" @@ -7332,11 +7222,11 @@ msgstr "環境が統一されるまで、新しいノードは使用できない #: ../../enterprise/meta/advanced/metasetup.consoles.php:470 #, php-format msgid "" -"System is centralised, but you just modify nodes registered, please go to %s " -"to perform a database merge process." +"System is centralised, but you just modify nodes registered, please go to %s to " +"perform a database merge process." msgstr "" -"システムは中央管理になっています。登録されているノードを変更するだけです。%s に" -"移動して、データベースの管理処理を実行してください。" +"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移" +"動して、データベースの管理処理を実行してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:473 msgid "This node will not be usable until unifying the environment" @@ -7411,8 +7301,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:221 #: ../../enterprise/meta/include/functions_meta.php:231 #: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:359 -#: ../../include/functions_config.php:240 +#: ../../godmode/setup/setup_general.php:359 ../../include/functions_config.php:240 msgid "API password" msgstr "API パスワード" @@ -7515,9 +7404,8 @@ msgid "" "erased, and replaced with new data from this metaconsole automatically after " "register the node. Are you sure?" msgstr "" -"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後" -"にこのメタコンソールからの新しいデータに自動的に置き換えられます。よろしいです" -"か?" +"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後に" +"このメタコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?" #: ../../enterprise/meta/advanced/metasetup.consoles.php:877 msgid "Node data will be merged" @@ -7525,14 +7413,13 @@ msgstr "ノードデータはマージされます" #: ../../enterprise/meta/advanced/metasetup.consoles.php:878 msgid "" -"Information contained in this node is useful. After register the node, you " -"must launch a merge process from command center, which will combine " -"information in current environment with information contained in this new " -"node. Are you sure?" +"Information contained in this node is useful. After register the node, you must " +"launch a merge process from command center, which will combine information in " +"current environment with information contained in this new node. Are you sure?" msgstr "" -"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターから" -"マージ処理を起動する必要があります。これにより、現在の環境の情報がこの新しい" -"ノードに含まれる情報とマージされます。よろしいですか?" +"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマー" +"ジ処理を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに" +"含まれる情報とマージされます。よろしいですか?" #: ../../enterprise/meta/advanced/metasetup.consoles.php:920 #: ../../enterprise/godmode/setup/setup_metaconsole.php:270 @@ -7675,8 +7562,7 @@ msgstr "リンクの編集に失敗しました。" #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 +#: ../../godmode/setup/links.php:76 ../../godmode/events/event_edit_filter.php:242 #: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 @@ -7971,11 +7857,11 @@ msgstr "短い名前" #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:562 msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." +"The collection's short name is the name of dir in attachment dir and the package " +"collection." msgstr "" -"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレ" -"クトリ名です。" +"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレク" +"トリ名です。" #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:564 @@ -7985,8 +7871,7 @@ msgstr "短い名前は、アルファベットと、- および _ のみ利用 #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:566 msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" +msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" #: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 #, php-format @@ -8006,8 +7891,7 @@ msgstr "カスタムプロビジョニングデータの移動中にエラーで #: ../../enterprise/meta/advanced/collections.editor.php:219 #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 -#: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../godmode/servers/plugin.php:171 ../../include/functions_filemanager.php:776 msgid "Edit file" msgstr "ファイル編集" @@ -8083,11 +7967,10 @@ msgid "Edit job" msgstr "ジョブ編集" #: ../../enterprise/meta/advanced/cron_main.php:313 -msgid "" -"In order to make backups it is necessary to have mysqldump on your console." +msgid "In order to make backups it is necessary to have mysqldump on your console." msgstr "" -"バックアップを作成するには、コンソールに mysqldump をインストールする必要があり" -"ます。" +"バックアップを作成するには、コンソールに mysqldump をインストールする必要がありま" +"す。" #: ../../enterprise/meta/advanced/cron_main.php:402 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:950 @@ -8300,20 +8183,18 @@ msgstr "言語設定" #: ../../enterprise/meta/advanced/metasetup.setup.php:99 #: ../../enterprise/meta/include/functions_meta.php:85 -#: ../../godmode/setup/setup_general.php:270 -#: ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:270 ../../include/functions_config.php:196 msgid "Auto login (hash) password" msgstr "自動ログインパスワード(ハッシュ)" #: ../../enterprise/meta/advanced/metasetup.setup.php:110 #: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 -#: ../../include/functions.php:1291 +#: ../../include/functions_reporting_html.php:2701 ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 -#: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 +#: ../../include/functions_events.php:2609 ../../include/functions_events.php:3162 +#: ../../operation/events/events.php:833 msgid "System" msgstr "システム" @@ -8324,8 +8205,7 @@ msgstr "データベース" #: ../../enterprise/meta/advanced/metasetup.setup.php:113 #: ../../enterprise/meta/include/functions_meta.php:95 -#: ../../godmode/setup/setup_general.php:282 -#: ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:282 ../../include/functions_config.php:200 msgid "Time source" msgstr "日時データソース" @@ -8335,20 +8215,18 @@ msgid "" "If SSL is not properly configured, you will lose access to the %s Console. Do " "you want to continue?" msgstr "" -"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けま" -"すか?" +"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けます" +"か?" #: ../../enterprise/meta/advanced/metasetup.setup.php:148 #: ../../enterprise/meta/include/functions_meta.php:105 -#: ../../godmode/setup/setup_general.php:307 -#: ../../include/functions_config.php:212 +#: ../../godmode/setup/setup_general.php:307 ../../include/functions_config.php:212 msgid "Enforce https" msgstr "httpsの利用" #: ../../enterprise/meta/advanced/metasetup.setup.php:153 #: ../../enterprise/meta/include/functions_meta.php:130 -#: ../../godmode/setup/setup_general.php:295 -#: ../../include/functions_config.php:223 +#: ../../godmode/setup/setup_general.php:295 ../../include/functions_config.php:223 msgid "Attachment store" msgstr "添付ファイル保存場所" @@ -8358,8 +8236,7 @@ msgstr "テンポラリデータの保存ディレクトリ" #: ../../enterprise/meta/advanced/metasetup.setup.php:168 #: ../../enterprise/meta/include/functions_meta.php:141 -#: ../../godmode/setup/setup_general.php:244 -#: ../../include/functions_config.php:188 +#: ../../godmode/setup/setup_general.php:244 ../../include/functions_config.php:188 msgid "Remote config directory" msgstr "リモート設定ディレクトリ" @@ -8480,8 +8357,7 @@ msgstr "タイムゾーン変更" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 #: ../../godmode/setup/setup_general.php:434 -#: ../../include/functions_register.php:164 -#: ../../include/functions_config.php:283 +#: ../../include/functions_register.php:164 ../../include/functions_config.php:283 msgid "Timezone setup" msgstr "タイムゾーン設定" @@ -8491,8 +8367,8 @@ msgid "" "Set this value when you need your %s to be accessible via a public URL (for " "example using Apache mod_proxy settings)." msgstr "" -"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、" -"Apache mod_proxy 設定を使用)、この値を設定します。" +"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache " +"mod_proxy 設定を使用)、この値を設定します。" #: ../../enterprise/meta/advanced/metasetup.setup.php:251 #, php-format @@ -8500,20 +8376,18 @@ msgid "" "If public URL is not properly configured, you will lose access to the %s " "Console. Do you want to continue?" msgstr "" -"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 " -"続けますか?" +"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続" +"けますか?" #: ../../enterprise/meta/advanced/metasetup.setup.php:266 #: ../../enterprise/meta/include/functions_meta.php:191 -#: ../../godmode/setup/setup_general.php:502 -#: ../../include/functions_config.php:322 +#: ../../godmode/setup/setup_general.php:502 ../../include/functions_config.php:322 msgid "Public URL host exclusions" msgstr "公開 URL 除外ホスト" #: ../../enterprise/meta/advanced/metasetup.setup.php:278 #: ../../enterprise/meta/include/functions_meta.php:181 -#: ../../godmode/setup/setup_general.php:492 -#: ../../include/functions_config.php:318 +#: ../../godmode/setup/setup_general.php:492 ../../include/functions_config.php:318 msgid "Force use Public URL" msgstr "公開 URL の強制利用" @@ -8522,20 +8396,18 @@ msgid "Force using defined public URL)." msgstr "定義された公開 URL を使用するように強制します)。" #: ../../enterprise/meta/advanced/metasetup.setup.php:306 -#: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_sflow.php:75 ../../godmode/setup/setup_netflow.php:75 +#: ../../include/functions_config.php:1560 ../../include/functions_config.php:1603 msgid "Disable custom live view filters" msgstr "カスタムライブビューフィルタの無効化" #: ../../enterprise/meta/advanced/metasetup.setup.php:307 msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." +"Disable the definition of custom filters in the live view. Only existing filters " +"can be used." msgstr "" -"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ" -"利用可能です。" +"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利" +"用可能です。" #: ../../enterprise/meta/advanced/metasetup.setup.php:329 msgid "Disabled sections" @@ -8559,8 +8431,7 @@ msgstr "セクションのカスタマイズ" #: ../../enterprise/meta/advanced/metasetup.setup.php:370 #: ../../enterprise/meta/include/functions_meta.php:211 -#: ../../godmode/setup/setup_general.php:542 -#: ../../include/functions_config.php:334 +#: ../../godmode/setup/setup_general.php:542 ../../include/functions_config.php:334 msgid "Command Snapshot" msgstr "コマンドスナップショット" @@ -8574,8 +8445,7 @@ msgstr "パスワードの設定には注意してください。httpsアクセ #: ../../enterprise/meta/advanced/metasetup.setup.php:402 #: ../../enterprise/meta/include/functions_meta.php:241 -#: ../../godmode/setup/setup_general.php:371 -#: ../../include/functions_config.php:236 +#: ../../godmode/setup/setup_general.php:371 ../../include/functions_config.php:236 msgid "IP list with API access" msgstr "APIアクセスを許可するIPアドレスリスト" @@ -8599,8 +8469,8 @@ msgid "" "Maximum allowed number of agents to be added in policy concurrently (adding a " "high number of agents at a time can lead to performance issues)" msgstr "" -"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを" -"追加すると、パフォーマンスの問題が発生する可能性があります)" +"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを追" +"加すると、パフォーマンスの問題が発生する可能性があります)" #: ../../enterprise/meta/advanced/metasetup.setup.php:464 msgid "Warning for synchronization queue" @@ -8644,8 +8514,7 @@ msgstr "ログの場所: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:597 #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 -#: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../godmode/setup/setup_general.php:698 ../../include/functions_config.php:386 msgid "Enable console report" msgstr "コンソールレポートの有効化" @@ -8660,8 +8529,8 @@ msgid "" "New event with that Extra ID is received, it will be created as "In " "process" instead." msgstr "" -"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイ" -"ベントを受け取った際に "処理中" として作成します。" +"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイベ" +"ントを受け取った際に "処理中" として作成します。" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 @@ -8737,8 +8606,7 @@ msgstr "%s ポリシーアラートを削除しました" #: ../../godmode/events/event_edit_filter.php:797 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4554 ../../include/functions_events.php:4636 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 @@ -8806,8 +8674,8 @@ msgid "" "Be aware that group synchronization can change the group configuration of the " "node" msgstr "" -"グループの同期により、ノードのグループ設定が変更される可能性があることに注意し" -"てください" +"グループの同期により、ノードのグループ設定が変更される可能性があることに注意して" +"ください" #: ../../enterprise/meta/advanced/metasetup.performance.php:88 #: ../../godmode/setup/performance.php:186 @@ -8815,16 +8683,15 @@ msgid "Pandora_db running in active database." msgstr "アクティブデータベースで pandora_db が動作しています。" #: ../../enterprise/meta/advanced/metasetup.performance.php:89 -#: ../../godmode/setup/performance.php:187 -#: ../../godmode/setup/performance.php:243 +#: ../../godmode/setup/performance.php:187 ../../godmode/setup/performance.php:243 msgid "Executed:" msgstr "実行済:" #: ../../enterprise/meta/advanced/metasetup.performance.php:95 #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 -#: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:193 ../../godmode/setup/performance.php:248 +#: ../../general/logon_ok.php:199 msgid "ago" msgstr "前" @@ -8836,8 +8703,7 @@ msgstr "パフォーマンス" #: ../../enterprise/meta/advanced/metasetup.performance.php:117 #: ../../enterprise/meta/include/functions_meta.php:2015 -#: ../../godmode/setup/performance.php:263 -#: ../../godmode/setup/performance.php:506 +#: ../../godmode/setup/performance.php:263 ../../godmode/setup/performance.php:506 msgid "Max. days before delete events" msgstr "イベントデータ保持日数" @@ -8898,8 +8764,8 @@ msgstr "クエリごとのイベント制限" #: ../../enterprise/meta/advanced/metasetup.performance.php:255 #: ../../enterprise/meta/include/functions_meta.php:2123 -#: ../../godmode/setup/performance.php:338 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:338 ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:850 msgid "Max. days before purge" msgstr "データ保持日数" @@ -9135,9 +9001,8 @@ msgstr "未完了" #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 #: ../../godmode/reporting/reporting_builder.item_editor.php:1120 -#: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 +#: ../../godmode/reporting/reporting_builder.php:766 ../../godmode/tag/tag.php:247 +#: ../../include/ajax/agent.php:652 ../../include/functions_ui.php:3697 #: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 @@ -9222,8 +9087,8 @@ msgstr "サーバ" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:470 ../../extensions/agents_modules.php:841 +#: ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 @@ -9239,9 +9104,8 @@ msgstr "サーバ" #: ../../godmode/reporting/reporting_builder.item_editor.php:1879 #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 -#: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 +#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204 +#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155 #: ../../include/functions_reporting_html.php:2094 #: ../../include/functions_reporting_html.php:2566 #: ../../include/functions_reporting_html.php:3349 @@ -9433,8 +9297,7 @@ msgstr "キューが空です" #: ../../include/functions_reporting_html.php:5371 #: ../../include/functions_reporting_html.php:5411 #: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 +#: ../../include/ajax/heatmap.ajax.php:252 ../../include/ajax/heatmap.ajax.php:291 #: ../../include/ajax/heatmap.ajax.php:326 #: ../../include/ajax/alert_list.ajax.php:459 #: ../../include/functions_inventory.php:393 @@ -9486,8 +9349,7 @@ msgstr "キューが空です" #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 -#: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 +#: ../../operation/search_alerts.php:34 ../../operation/inventory/inventory.php:628 #: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 msgid "Agent" msgstr "エージェント" @@ -9553,11 +9415,11 @@ msgstr "エージェントの状態" #: ../../godmode/setup/setup_visuals.php:1035 #: ../../godmode/reporting/reporting_builder.item_editor.php:3830 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 -#: ../../include/functions.php:1087 ../../include/functions.php:1327 -#: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842 +#: ../../include/functions_reporting_html.php:2573 ../../include/functions.php:1087 +#: ../../include/functions.php:1327 ../../include/functions.php:1334 +#: ../../include/functions.php:1367 ../../include/ajax/module.php:1933 +#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:3331 +#: ../../include/functions_graph.php:4842 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 @@ -9623,12 +9485,12 @@ msgstr "正常" #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 #: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 -#: ../../include/functions.php:1095 ../../include/functions.php:1331 -#: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 +#: ../../include/functions_reporting_html.php:4871 ../../include/functions.php:1095 +#: ../../include/functions.php:1331 ../../include/functions.php:1332 +#: ../../include/functions.php:1334 ../../include/functions.php:1375 +#: ../../include/ajax/module.php:1938 ../../include/functions_graph.php:3353 +#: ../../include/functions_graph.php:3355 ../../include/functions_graph.php:4850 +#: ../../include/functions_ui.php:2869 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 @@ -9857,8 +9719,7 @@ msgstr "警告状態エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 #: ../../include/functions_reporting_html.php:5852 -#: ../../include/functions_agents.php:3945 -#: ../../include/functions_agents.php:3999 +#: ../../include/functions_agents.php:3945 ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "正常状態エージェント" @@ -9915,8 +9776,7 @@ msgstr "状態ごとのエージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 #: ../../include/functions_reporting.php:12269 #: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_groups.php:2836 ../../include/functions_groups.php:2842 msgid "Monitors by status" msgstr "状態ごとの監視項目" @@ -10218,8 +10078,7 @@ msgstr "アラート作成" #: ../../operation/agentes/estado_monitores.php:125 #: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 +#: ../../operation/search_alerts.php:35 ../../operation/inventory/inventory.php:634 #: ../../operation/search_modules.php:32 msgid "Module" msgstr "モジュール" @@ -10241,8 +10100,7 @@ msgstr "モジュール" #: ../../mobile/operation/alerts.php:342 #: ../../include/functions_reporting_html.php:3449 #: ../../include/functions_reporting_html.php:3452 -#: ../../include/functions_cron.php:691 -#: ../../include/ajax/alert_list.ajax.php:293 +#: ../../include/functions_cron.php:691 ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 #: ../../include/functions_treeview.php:399 #: ../../include/functions_treeview.php:440 @@ -10392,8 +10250,7 @@ msgstr "モジュール名に不正な文字があります" #: ../../enterprise/include/functions_reporting.php:8008 #: ../../enterprise/include/functions_reporting.php:8034 #: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../include/functions_menu.php:589 ../../operation/visual_console/view.php:202 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "設定追加" @@ -10486,8 +10343,7 @@ msgstr "テンプレートを設定する必要があります" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:588 #: ../../godmode/users/configure_profile.php:302 -#: ../../godmode/alerts/alert_list.php:513 -#: ../../godmode/alerts/alert_list.php:532 +#: ../../godmode/alerts/alert_list.php:513 ../../godmode/alerts/alert_list.php:532 msgid "Manage alerts" msgstr "アラート管理" @@ -10542,8 +10398,7 @@ msgstr "ウェブチェック" #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 #: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 +#: ../../include/ajax/heatmap.ajax.php:193 ../../include/ajax/heatmap.ajax.php:263 #: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085 #: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 @@ -10627,8 +10482,7 @@ msgstr "説明なし" #: ../../godmode/modules/manage_network_components_form_plugin.php:54 #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1338 -#: ../../godmode/alerts/alert_list.builder.php:329 -#: ../../include/functions.php:2768 +#: ../../godmode/alerts/alert_list.builder.php:329 ../../include/functions.php:2768 #: ../../include/class/AgentWizard.class.php:2629 msgid "Empty" msgstr "空" @@ -10640,8 +10494,7 @@ msgstr "空" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3268 ../../include/functions_events.php:3542 msgid "New" msgstr "新規" @@ -10680,8 +10533,7 @@ msgstr "読み込み中" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 +#: ../../godmode/tag/edit_tag.php:212 ../../include/class/TipsWindow.class.php:726 #: ../../include/class/TipsWindow.class.php:893 #: ../../include/functions_reporting.php:7470 #: ../../include/lib/Dashboard/Widgets/url.php:216 @@ -10716,14 +10568,14 @@ msgstr "エージェント実行間隔 x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" "This feature will be removed in version 771 and its\n" -" functions transferred to different metaconsole tools " -"( bulk operations, agent alert editing, etc).\n" +" functions transferred to different metaconsole tools ( bulk " +"operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we do " "not recommend its use." msgstr "" "この機能はバージョン 771 で削除され、\n" -" 別のメタコンソールツール (一括操作、エージェントアラート編" -"集など) に移ります。\n" +" 別のメタコンソールツール (一括操作、エージェントアラート編集" +"など) に移ります。\n" " ウィザードの現在の機能は最小限で利用はお勧めしません。" #: ../../enterprise/meta/monitoring/group_view.php:59 @@ -10819,8 +10671,7 @@ msgstr "合計" #: ../../include/class/AgentsAlerts.class.php:956 #: ../../include/class/SnmpConsole.class.php:841 #: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 +#: ../../include/functions_events.php:2942 ../../include/functions_events.php:3142 #: ../../operation/agentes/group_view.php:252 msgid "Alert fired" msgstr "発生中アラート" @@ -10829,11 +10680,11 @@ msgstr "発生中アラート" #: ../../operation/agentes/group_view.php:343 #, php-format msgid "" -"This %s installation are using the secondary groups feature. For this reason, " -"an agent can be counted several times." +"This %s installation are using the secondary groups feature. For this reason, an " +"agent can be counted several times." msgstr "" -"この %s インストールはセカンダリグループ機能を使用しています。 このため、エー" -"ジェントは数回カウントされる可能性があります。" +"この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェ" +"ントは数回カウントされる可能性があります。" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 @@ -10843,8 +10694,8 @@ msgstr "" #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:472 -#: ../../operation/agentes/tactical.php:72 ../../operation/menu.php:173 +#: ../../operation/users/user_edit.php:472 ../../operation/agentes/tactical.php:72 +#: ../../operation/menu.php:173 msgid "Tactical view" msgstr "モニタリング概要" @@ -10868,8 +10719,7 @@ msgstr "状態レポート" #: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 #: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 #: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 -#: ../../include/functions_reports.php:876 -#: ../../include/functions_reports.php:880 +#: ../../include/functions_reports.php:876 ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 #: ../../operation/events/events.php:1613 msgid "Events" @@ -10894,8 +10744,7 @@ msgid "View events" msgstr "イベント参照" #: ../../enterprise/meta/event/custom_events.php:42 -#: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit.php:211 ../../godmode/netflow/nf_edit_form.php:69 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 @@ -10977,8 +10826,8 @@ msgstr "イベントフィールド表示" #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" -"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定" -"されます。" +"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定さ" +"れます。" #: ../../enterprise/meta/include/functions_autoprovision.php:391 msgid "Round Robin" @@ -10991,16 +10840,16 @@ msgstr "低負荷" #: ../../enterprise/meta/include/functions_autoprovision.php:435 msgid "" "It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new " -"Pandora software agents that reach the Metaconsole.\n" +" in an equitable way and in a rational order, all the new Pandora " +"software agents that reach the Metaconsole.\n" " The distribution of the agents will be done in a circular way, " "assigning the corresponding server to each new agent.\n" " " msgstr "" -"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウン" -"ドロビン方式で公平に配布します。\n" -" エージェントの配布は循環的に行われ、新しいエージェントは対応す" -"るサーバに割り当てられます。\n" +"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンド" +"ロビン方式で公平に配布します。\n" +" エージェントの配布は循環的に行われ、新しいエージェントは対応する" +"サーバに割り当てられます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:443 @@ -11017,8 +10866,8 @@ msgid "" " " msgstr "" "カスタム配布では、独自の配布ルールを定義できます。\n" -" エージェントから取得された情報(エージェント名とその IP アドレ" -"ス)に基づきます。\n" +" エージェントから取得された情報(エージェント名とその IP アドレス)" +"に基づきます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:494 @@ -11035,11 +10884,11 @@ msgstr "並べ替え" #: ../../enterprise/meta/include/functions_autoprovision.php:552 msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." +"There is no custom entries defined. Click on \"Create custom entry\" to add the " +"first." msgstr "" -"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックし" -"て、最初のエントリを追加します。" +"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、" +"最初のエントリを追加します。" #: ../../enterprise/meta/include/functions_autoprovision.php:557 msgid "Create custom entry" @@ -11058,8 +10907,8 @@ msgid "" "There is no rules configured for this custom entry. Click on Add button to " "create the first." msgstr "" -"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリッ" -"クして作成します。" +"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリック" +"して作成します。" #: ../../enterprise/meta/include/functions_autoprovision.php:699 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:502 @@ -11129,8 +10978,8 @@ msgstr "ユーザ管理" #: ../../enterprise/meta/include/functions_users_meta.php:214 #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 -#: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/user_list.php:262 ../../godmode/users/configure_user.php:256 +#: ../../godmode/menu.php:159 msgid "Profile management" msgstr "プロファイル管理" @@ -11167,8 +11016,8 @@ msgstr "ユーザ管理" #: ../../godmode/reporting/reporting_builder.item_editor.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:3993 #: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 +#: ../../include/functions_reporting_html.php:1756 ../../include/lib/Group.php:554 +#: ../../operation/inventory/inventory.php:999 #: ../../operation/inventory/inventory.php:1293 msgid "Alias" msgstr "別名" @@ -11184,8 +11033,8 @@ msgstr "別名" #: ../../include/functions_reporting_html.php:1596 #: ../../include/functions_reporting_html.php:4139 #: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_treeview.php:643 ../../include/functions_events.php:4372 +#: ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "IP アドレス" @@ -11280,11 +11129,10 @@ msgstr "プライマリを利用" #: ../../godmode/setup/setup_integria.php:292 #: ../../godmode/reporting/reporting_builder.item_editor.php:3525 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 -#: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../mobile/include/user.class.php:392 ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:6011 ../../include/functions.php:3109 +#: ../../include/functions_cron.php:498 ../../include/functions_config.php:731 +#: ../../include/functions_config.php:751 #: ../../include/class/CredentialStore.class.php:817 #: ../../include/class/CredentialStore.class.php:1300 #: ../../include/class/AuditLog.class.php:110 @@ -11339,9 +11187,8 @@ msgstr "ユーザ" #: ../../include/class/CredentialStore.class.php:1324 #: ../../include/class/CredentialStore.class.php:1346 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 -#: ../../general/login_page.php:351 +#: ../../operation/users/user_edit.php:863 ../../operation/users/user_edit.php:916 +#: ../../general/login_page.php:290 ../../general/login_page.php:351 msgid "Password" msgstr "パスワード" @@ -11726,8 +11573,7 @@ msgid "%s Modules deleted" msgstr "%s モジュールを削除しました" #: ../../enterprise/meta/include/functions_wizard_meta.php:2693 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." +msgid "There was an error creating the alerts, the operation has been cancelled ." msgstr "アラート作成エラーです。操作はキャンセルされました。" #: ../../enterprise/meta/include/functions_wizard_meta.php:2723 @@ -11877,10 +11723,9 @@ msgstr "イベント名" #: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 #: ../../include/functions_reporting_html.php:3659 #: ../../include/functions_treeview.php:607 -#: ../../include/class/SatelliteAgent.class.php:513 -#: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 -#: ../../include/functions_events.php:247 ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../include/class/SatelliteAgent.class.php:513 ../../include/lib/Group.php:550 +#: ../../include/functions_events.php:201 ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2534 ../../operation/events/events.php:2669 msgid "Agent name" msgstr "エージェント名" @@ -11916,8 +11761,7 @@ msgstr "エージェント名" #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 -#: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:2539 ../../include/functions_events.php:4914 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/status_monitor.php:1598 @@ -11957,9 +11801,8 @@ msgstr "イベントタイプ" #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../godmode/alerts/alert_list.list.php:104 #: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 -#: ../../include/ajax/custom_fields.php:411 +#: ../../include/ajax/heatmap.ajax.php:239 ../../include/ajax/heatmap.ajax.php:278 +#: ../../include/ajax/module.php:1001 ../../include/ajax/custom_fields.php:411 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 #: ../../operation/agentes/status_monitor.php:902 @@ -11995,10 +11838,9 @@ msgstr "アラート" #: ../../godmode/reporting/reporting_builder.item_editor.php:2998 #: ../../godmode/events/event_filter.php:148 #: ../../godmode/events/event_edit_filter.php:372 -#: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../godmode/events/custom_events.php:104 ../../mobile/operation/events.php:678 +#: ../../mobile/operation/events.php:679 ../../mobile/operation/events.php:820 +#: ../../mobile/operation/events.php:982 ../../mobile/operation/events.php:983 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 @@ -12044,12 +11886,10 @@ msgstr "コメント" #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 #: ../../godmode/reporting/reporting_builder.item_editor.php:3964 -#: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 +#: ../../godmode/events/custom_events.php:106 ../../mobile/operation/events.php:845 #: ../../include/functions_reporting_html.php:1772 #: ../../include/functions_reporting_html.php:3715 -#: ../../include/functions_treeview.php:152 -#: ../../include/functions_profile.php:205 +#: ../../include/functions_treeview.php:152 ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 #: ../../include/lib/Dashboard/Widgets/tree_view.php:342 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 @@ -12070,9 +11910,9 @@ msgstr "拡張 ID" #: ../../enterprise/meta/include/functions_events_meta.php:118 #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 -#: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 +#: ../../godmode/events/custom_events.php:109 ../../mobile/operation/events.php:808 +#: ../../include/functions_events.php:214 ../../include/functions_events.php:289 +#: ../../include/functions_events.php:4936 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 @@ -12116,8 +11956,7 @@ msgstr "モジュールの状態" #: ../../enterprise/meta/include/process_reset_pass.php:28 #: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/general/login_page.php:99 -#: ../../general/login_page.php:101 +#: ../../enterprise/meta/general/login_page.php:99 ../../general/login_page.php:101 msgid "Splash login" msgstr "スプラッシュログイン" @@ -12202,8 +12041,8 @@ msgstr "メタコンソール" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../include/functions_menu.php:955 +#: ../../general/login_page.php:460 msgid "Build" msgstr "ビルド" @@ -12708,8 +12547,7 @@ msgid "type mode zoom charts" msgstr "タイプモード拡大グラフ" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1270 ../../include/functions_config.php:1274 msgid "Random background" msgstr "ランダム背景" @@ -13006,9 +12844,8 @@ msgstr "%s - フレキシブルモニタリングシステム" #: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 #: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 +#: ../../include/functions_events.php:2966 ../../include/functions_events.php:3166 +#: ../../index.php:1555 ../../operation/users/user_edit.php:1241 #: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" @@ -13034,8 +12871,8 @@ msgid "User to reset password" msgstr "パスワードリセットするユーザ" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:757 ../../enterprise/include/reset_pass.php:195 +#: ../../index.php:928 msgid "Reset password" msgstr "パスワードをリセット" @@ -13045,9 +12882,8 @@ msgstr "パスワードをリセット" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 -#: ../../general/login_page.php:530 +#: ../../include/functions_config.php:2678 ../../include/functions_config.php:2730 +#: ../../general/login_page.php:527 ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "一つのツールですべてを管理" @@ -13115,8 +12951,8 @@ msgid "" "The relation type: %s to %s -> %s was not saved. This relationship already " "exists in the database" msgstr "" -"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既" -"に存在します" +"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に" +"存在します" #: ../../enterprise/meta/include/functions_relations.php:230 #, php-format @@ -13151,11 +12987,11 @@ msgstr "サーバとの接続が切断されました" #: ../../operation/gis_maps/public_console.php:278 #: ../../operation/events/sound_events.php:169 msgid "" -"Connection to the server has been lost. Please check your internet connection " -"or contact with administrator." +"Connection to the server has been lost. Please check your internet connection or " +"contact with administrator." msgstr "" -"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡して" -"ください。" +"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してく" +"ださい。" #: ../../enterprise/meta/index.php:345 ../../mobile/include/user.class.php:303 #: ../../include/ajax/double_auth.ajax.php:515 ../../index.php:380 @@ -13228,8 +13064,8 @@ msgstr "メール送信エラー" msgid "" "System is not centralised, please go to %s to perform a database merge process." msgstr "" -"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行っ" -"てください。" +"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行って" +"ください。" #: ../../enterprise/meta/index.php:1001 #, php-format @@ -13265,9 +13101,8 @@ msgstr "エージェントが見つかりました" #: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 #: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 #: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 -#: ../../operation/search_agents.php:58 +#: ../../include/functions_treeview.php:671 ../../include/functions_events.php:4389 +#: ../../operation/search_users.php:46 ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 #: ../../operation/agentes/estado_agente.php:1055 #: ../../operation/agentes/ver_agente.php:1046 @@ -13344,8 +13179,8 @@ msgid "" "Metaconsole needs previous activation from regular console, please contact " "system administrator if you need assistance.
" msgstr "" -"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが" -"必要であればシステム管理者へ問い合わせてください。
" +"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必" +"要であればシステム管理者へ問い合わせてください。
" #: ../../enterprise/meta/general/header.php:69 #: ../../enterprise/meta/general/header.php:75 @@ -13386,10 +13221,9 @@ msgstr "自動更新の無効化" #: ../../enterprise/meta/general/header.php:264 #: ../../enterprise/meta/general/header.php:266 #: ../../enterprise/meta/general/main_header.php:535 -#: ../../mobile/include/functions_web.php:34 -#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 -#: ../../mobile/operation/home.php:148 ../../general/header.php:443 -#: ../../general/header.php:445 +#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:460 ../../mobile/operation/home.php:148 +#: ../../general/header.php:443 ../../general/header.php:445 msgid "Logout" msgstr "ログアウト" @@ -13528,10 +13362,8 @@ msgstr "ビジュアルコンソールウィザード" #: ../../enterprise/include/functions_enterprise.php:439 #: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 -#: ../../include/functions_reports.php:925 -#: ../../include/functions_reports.php:929 -#: ../../include/functions_reports.php:933 -#: ../../include/functions_reports.php:937 +#: ../../include/functions_reports.php:925 ../../include/functions_reports.php:929 +#: ../../include/functions_reports.php:933 ../../include/functions_reports.php:937 msgid "Netflow" msgstr "Netflow" @@ -13606,10 +13438,9 @@ msgstr "リンク" #: ../../enterprise/meta/general/main_menu.php:806 #: ../../enterprise/meta/general/main_menu.php:807 #: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../extensions/extension_uploader.php:30 -#: ../../extensions/api_checker.php:200 ../../extensions/files_repo.php:132 -#: ../../extensions/dbmanager.php:102 ../../extensions/pandora_logs.php:86 -#: ../../godmode/extensions.php:29 +#: ../../extensions/extension_uploader.php:30 ../../extensions/api_checker.php:200 +#: ../../extensions/files_repo.php:132 ../../extensions/dbmanager.php:102 +#: ../../extensions/pandora_logs.php:86 ../../godmode/extensions.php:29 msgid "Extensions" msgstr "拡張" @@ -13647,11 +13478,11 @@ msgstr "レポート" #: ../../enterprise/meta/general/noaccesssaml.php:135 #: ../../general/noaccesssaml.php:135 msgid "" -"Access to this page is restricted to authorized users SAML only, please " -"contact system administrator if you need assistance." +"Access to this page is restricted to authorized users SAML only, please contact " +"system administrator if you need assistance." msgstr "" -"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が" -"必要な場合はシステム管理者に連絡してください。" +"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必" +"要な場合はシステム管理者に連絡してください。" #: ../../enterprise/meta/general/noaccesssaml.php:137 #: ../../general/noaccesssaml.php:137 @@ -13661,26 +13492,26 @@ msgid "" "information the error to access this page are recorded in security logs of %s " "System Database" msgstr "" -"SAML 認証が適切に構成されていることを確認してください。 詳細については、この" -"ページへのアクセスエラーが %s システムデータベースのセキュリティログに記録され" -"ています。" +"SAML 認証が適切に構成されていることを確認してください。 詳細については、このペー" +"ジへのアクセスエラーが %s システムデータベースのセキュリティログに記録されていま" +"す。" #: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" -"な場合はシステム管理者に連絡してください。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な" +"場合はシステム管理者に連絡してください。" #: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 #, php-format msgid "" -"Please know that all attempts to access this page are recorded in security " -"logs of %s System Database" +"Please know that all attempts to access this page are recorded in security logs " +"of %s System Database" msgstr "" -"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに" -"記録されます。" +"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記" +"録されます。" #: ../../enterprise/meta/general/main_menu.php:240 #: ../../enterprise/godmode/policies/policies.php:611 @@ -13690,10 +13521,8 @@ msgstr "" #: ../../godmode/agentes/configurar_agente.php:468 #: ../../godmode/agentes/configurar_agente.php:725 #: ../../godmode/setup/setup_integria.php:366 -#: ../../include/functions_reports.php:890 -#: ../../include/functions_reports.php:897 -#: ../../include/functions_reports.php:904 -#: ../../include/functions_reports.php:905 +#: ../../include/functions_reports.php:890 ../../include/functions_reports.php:897 +#: ../../include/functions_reports.php:904 ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 #: ../../operation/agentes/ver_agente.php:1450 @@ -13716,9 +13545,8 @@ msgstr "サウンドコンソール" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 #: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 #: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493 -#: ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../operation/users/user_edit.php:874 ../../operation/users/user_edit.php:927 +#: ../../operation/menu.php:571 ../../operation/events/events.php:1517 msgid "Start" msgstr "開始" @@ -13885,8 +13713,8 @@ msgid "" "Your session has ended. Please close your browser window to close this %s " "session." msgstr "" -"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを" -"閉じてください。" +"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉" +"じてください。" #: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:111 msgid "License updated" @@ -13942,8 +13770,8 @@ msgid "" "node has a metaconsole license and cannot contact with the metaconsole." msgstr "" "メタコンソールに到達できません " -"

このノードはメタコンソールライセンスを持っていますがメタコンソールに接" -"続できません。" +"

このノードはメタコンソールライセンスを持っていますがメタコンソールに接続" +"できません。" #: ../../enterprise/load_enterprise.php:874 #: ../../enterprise/load_enterprise.php:880 @@ -13953,8 +13781,8 @@ msgid "" "License exceeded

This " "license allows %d agents and you have %d agents configured." msgstr "" -"ライセンス超過

このライセン" -"スは %d エージェントまでですが、%d エージェントが設定されています。" +"ライセンス超過

このライセンス" +"は %d エージェントまでですが、%d エージェントが設定されています。" #: ../../enterprise/load_enterprise.php:875 #: ../../enterprise/load_enterprise.php:882 @@ -13971,8 +13799,7 @@ msgstr "ライセンスを拡張するには %s へ連絡してください。" #: ../../enterprise/load_enterprise.php:899 #: ../../enterprise/load_enterprise.php:926 #: ../../enterprise/load_enterprise.php:934 -msgid "" -"This console will work in limited mode. Enterprise features will not work." +msgid "This console will work in limited mode. Enterprise features will not work." msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。" #: ../../enterprise/load_enterprise.php:890 @@ -13981,8 +13808,8 @@ msgid "" "License exceeded

This " "license allows %d agents and you have %d agents configured." msgstr "" -"ライセンス超過

このライセ" -"ンスは %d エージェントまでですが、%d エージェントが設定されています。" +"ライセンス超過

このライセン" +"スは %d エージェントまでですが、%d エージェントが設定されています。" #: ../../enterprise/load_enterprise.php:909 #, php-format @@ -13990,14 +13817,14 @@ msgid "" "License exceeded

This " "license allows %d modules and you have %d modules configured." msgstr "" -"ライセンス超過

このラインセ" -"ンスは %d モジュールまでですが、%d モジュールが設定されています。" +"ライセンス超過

このラインセン" +"スは %d モジュールまでですが、%d モジュールが設定されています。" #: ../../enterprise/load_enterprise.php:919 #: ../../enterprise/load_enterprise.php:925 msgid "" -"This license has expired. " -"

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

You " +"can not get updates until you renew the license." msgstr "" "このライセンスは期限切れです。 " "

ライセンスを更新するまでアップデートの入手はできません。" @@ -14022,8 +13849,8 @@ msgid "" "limitations, but without support or updates." msgstr "" "このライセンスはサポート外です。 " -"

この %s インストールは引き続き制限なく動作しますが、サポートや更新はあ" -"りません。" +"

この %s インストールは引き続き制限なく動作しますが、サポートや更新はあり" +"ません。" #: ../../enterprise/extensions/disabled/check_acls.php:16 msgid "ACL users for this agent" @@ -14136,22 +13963,22 @@ msgstr "VMware 表示" #: ../../enterprise/include/class/Omnishell.class.php:341 #: ../../enterprise/operation/log/elasticsearch_interface.php:46 #: ../../enterprise/tools/ipam/ipam.php:449 -#: ../../extensions/extension_uploader.php:39 -#: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 -#: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 -#: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 -#: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 +#: ../../extensions/extension_uploader.php:39 ../../extensions/api_checker.php:209 +#: ../../extensions/db_status.php:34 ../../extensions/files_repo.php:141 +#: ../../extensions/files_repo.php:253 ../../extensions/pandora_logs.php:95 +#: ../../godmode/extensions.php:38 ../../godmode/menu.php:417 +#: ../../godmode/setup/news.php:39 ../../godmode/setup/links.php:29 +#: ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 msgid "Admin tools" msgstr "管理ツール" #: ../../enterprise/extensions/csv_import_group/main.php:36 -#: ../../extensions/extension_uploader.php:43 -#: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 -#: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../extensions/extension_uploader.php:43 ../../extensions/api_checker.php:213 +#: ../../extensions/files_repo.php:145 ../../extensions/files_repo.php:257 +#: ../../extensions/pandora_logs.php:99 ../../godmode/extensions.php:42 +#: ../../godmode/menu.php:537 msgid "Extension manager" msgstr "拡張マネージャ" @@ -14590,8 +14417,8 @@ msgid "" "Looking for VMware configuration? You can configure several tasks using " "Discovery Applications." msgstr "" -"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設" -"定できます。" +"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定" +"できます。" #: ../../enterprise/extensions/vmware/vmware_view.php:1299 #: ../../enterprise/extensions/vmware/vmware_view.php:1586 @@ -14708,13 +14535,13 @@ msgstr "こちら" #: ../../enterprise/extensions/vmware/vmware_view.php:1872 #, php-format msgid "" -"This map is a quick representation of all your VMware entities detected. You " -"can create a custom VMware map by defining a network map based on your VMware " +"This map is a quick representation of all your VMware entities detected. You can " +"create a custom VMware map by defining a network map based on your VMware " "discovery task %s" msgstr "" "このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 " -"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタ" -"ム VMware マップを作成できます。" +"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタム " +"VMware マップを作成できます。" #: ../../enterprise/extensions/vmware/vmware_manager.php:227 msgid "Power Status: " @@ -14747,8 +14574,8 @@ msgid "" "This node is configured with centralized mode. All group information is read " "only. Go to %s to import the CSV." msgstr "" -"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専" -"用です。CSV をインポートするには %s に移動します。" +"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用" +"です。CSV をインポートするには %s に移動します。" #: ../../enterprise/extensions/csv_import_group.php:75 msgid "CSV group import" @@ -14768,8 +14595,8 @@ msgid "" "You can activate it manually
here or " "automatically filling the form below:" msgstr "" -"ここから手動で有効化するか、以下のフォーム" -"から自動入力できます:" +"ここから手動で有効化するか、以下のフォームか" +"ら自動入力できます:" #: ../../enterprise/load_html_extra.php:213 msgid "Auth Key:" @@ -14860,8 +14687,7 @@ msgstr "警告状態" #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 #: ../../include/functions_reporting_html.php:5528 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:103 +#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 #: ../../include/lib/Dashboard/Widgets/top_n.php:282 msgid "Min." @@ -14884,8 +14710,7 @@ msgstr "最小" #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 #: ../../include/functions_reporting_html.php:5529 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:103 +#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 #: ../../include/lib/Dashboard/Widgets/top_n.php:281 msgid "Max." @@ -14903,8 +14728,7 @@ msgstr "最大" #: ../../godmode/agentes/module_manager_editor_common.php:596 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 -#: ../../include/functions_treeview.php:89 -#: ../../include/functions_treeview.php:101 +#: ../../include/functions_treeview.php:89 ../../include/functions_treeview.php:101 msgid "Str." msgstr "文字列" @@ -14946,8 +14770,7 @@ msgstr "警告状態の期間。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 #: ../../godmode/modules/manage_network_components_form_common.php:216 #: ../../godmode/massive/massive_edit_modules.php:667 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_alerts.php:680 +#: ../../include/functions_treeview.php:107 ../../include/functions_alerts.php:680 #: ../../include/class/TreeService.class.php:432 #: ../../include/class/TreeService.class.php:641 msgid "Critical status" @@ -15041,8 +14864,8 @@ msgstr "連続抑制タイムアウト" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 #: ../../godmode/massive/massive_edit_modules.php:1053 msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, " -"FF counter is reset. Set to 0 for no timeout." +"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " +"counter is reset. Set to 0 for no timeout." msgstr "" "連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリ" "セットされます。0に設定するとタイムアウトしません。" @@ -15121,8 +14944,8 @@ msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" msgstr "" -"名前がありません。データ設定に \"module_name モジュール名\" という行を追加して" -"ください。" +"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してく" +"ださい。" #: ../../enterprise/godmode/modules/configure_local_component.php:522 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 @@ -15130,8 +14953,8 @@ msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" msgstr "" -"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追" -"加してください。" +"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加" +"してください。" #: ../../enterprise/godmode/modules/configure_local_component.php:523 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 @@ -15334,8 +15157,8 @@ msgid "" "This node is configured with centralized mode. All local components are read " "only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは" -"読み取り専用です。それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読" +"み取り専用です。それらを管理するには、%s に移動します。" #: ../../enterprise/godmode/modules/local_components.php:339 #: ../../godmode/modules/manage_network_components.php:447 @@ -15429,16 +15252,15 @@ msgstr "エージェント自動設定情報" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 msgid "You must click the Create or Update buttom for a correct configuration!!!" msgstr "" -"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要がありま" -"す!!!" +"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 msgid "" "Cannot create autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成して" -"ください(中央管理)" +"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してく" +"ださい(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 msgid "Cannot create autoconfiguration in metaconsole" @@ -15453,8 +15275,8 @@ msgid "" "Cannot udpate autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成して" -"ください(中央管理)" +"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してく" +"ださい(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 msgid "Cannot update autoconfiguration" @@ -15466,8 +15288,8 @@ msgid "" "Cannot modify autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールか" -"ら作成してください(中央管理)" +"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから" +"作成してください(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:304 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:93 @@ -15480,11 +15302,11 @@ msgstr "エージェント自動設定一覧" #: ../../godmode/modules/manage_inventory_modules.php:74 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console. Go to %s to manage it." +"This console is not manager of this environment, please manage this feature from " +"centralized manager console. Go to %s to manage it." msgstr "" -"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールから" -"この機能を管理してください。管理するには %s に移動します。" +"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこ" +"の機能を管理してください。管理するには %s に移動します。" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:373 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:146 @@ -15690,8 +15512,8 @@ msgid "" "Put here any extra configuration you want to be applied to any new agent " "matching previously defined rules" msgstr "" -"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入" -"力します" +"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入力" +"します" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:910 @@ -15976,11 +15798,11 @@ msgstr "コレクションを更新しました" #: ../../enterprise/godmode/agentes/collections.php:176 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature " -"from %s." +"This console is not manager of this environment, please manage this feature from " +"%s." msgstr "" -"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理し" -"てください。" +"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理して" +"ください。" #: ../../enterprise/godmode/agentes/collections.data.php:463 msgid "Please go to the metaconsole and apply this collection" @@ -16104,8 +15926,8 @@ msgid "" "Delete this conf file implies that for restore you must reactive remote config " "in the local agent.

Are you sure?" msgstr "" -"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効" -"化する必要があります。

よろしいですか?" +"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化" +"する必要があります。

よろしいですか?" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:339 msgid "Add Modules" @@ -16141,8 +15963,8 @@ msgid "" "Support for IE and Edge browsers is experimental. Tests might not work as " "expected." msgstr "" -"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能" -"しない可能性があります。" +"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能し" +"ない可能性があります。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:210 msgid "User data dir" @@ -16152,23 +15974,20 @@ msgstr "ユーザデータディレクトリ" #, php-format msgid "Google Chrome only. Set user data dir, specify the full path %s." msgstr "" -"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定しま" -"す。" +"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定します。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 #: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 -#: ../../operation/search_users.php:47 +#: ../../include/class/TipsWindow.class.php:885 ../../operation/search_users.php:47 msgid "Profile" msgstr "プロファイル" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 #, php-format -msgid "" -"Google Chrome only. Use a custom profile, specify the full folder name %s." +msgid "Google Chrome only. Use a custom profile, specify the full folder name %s." msgstr "" -"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定" -"します。" +"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定し" +"ます。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 msgid "Accept insecure certificates" @@ -16214,11 +16033,11 @@ msgstr "カスタムID" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 #: ../../godmode/agentes/module_manager.php:902 msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." +"The policy modules of data type will only update their intervals when policy is " +"applied." msgstr "" -"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔" -"でのみ更新されます。" +"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔で" +"のみ更新されます。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 @@ -16394,8 +16213,7 @@ msgstr "設定の複製" #: ../../enterprise/godmode/agentes/manage_config_remote.php:345 msgid "The action to be performed cannot be reversed. Are you sure to continue?" -msgstr "" -"実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" +msgstr "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" #: ../../enterprise/godmode/agentes/module_manager.php:48 msgid "Create a new web analysis module" @@ -16421,16 +16239,16 @@ msgstr "新規ウェブ分析モジュールの作成" #: ../../enterprise/operation/agentes/policy_view.php:58 #, php-format msgid "" -"This node is configured with centralized mode. All policies information is " -"read only. Go to %s to manage it." +"This node is configured with centralized mode. All policies information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専" -"用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用" +"です。管理するには %s に移動します。" #: ../../enterprise/godmode/policies/policy_plugins.php:56 msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." +"Successfully added to delete pending plugins. Will be deleted in the next policy " +"application." msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_plugins.php:57 @@ -16529,8 +16347,8 @@ msgstr " の作成ができませんでした" #: ../../enterprise/godmode/policies/policy_alerts.php:266 #: ../../enterprise/godmode/policies/policy_external_alerts.php:157 msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." +"Successfully added to delete pending alerts. Will be deleted in the next policy " +"application." msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_alerts.php:291 @@ -16647,8 +16465,8 @@ msgid "" "Force the creation of modules even if the software agent does not have remote " "configuration" msgstr "" -"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制し" -"ます" +"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制しま" +"す" #: ../../enterprise/godmode/policies/configure_policy.php:151 msgid "Use secondary groups" @@ -16659,8 +16477,8 @@ msgid "" "Policy will be applied to those agents belonging to groups or secondary groups " "that have been selected" msgstr "" -"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適" -"用されます" +"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適用" +"されます" #: ../../enterprise/godmode/policies/policy_modules.php:300 msgid "" @@ -16707,15 +16525,14 @@ msgstr "データ設定内のモジュールタイプが空です。フォーム #: ../../enterprise/godmode/policies/policy_modules.php:1285 msgid "" "The module name in Data configuration is empty, take from text field of form." -msgstr "" -"データ設定内のモジュール名が空です。テキストフィールドに入力してください。" +msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" #: ../../enterprise/godmode/policies/policy_modules.php:1315 #: ../../enterprise/godmode/policies/policy_modules.php:1328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." +"Successfully added to delete pending modules. Will be deleted in the next policy " +"application." msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_modules.php:1319 @@ -16812,8 +16629,8 @@ msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " "will apply it automatically to all the new agents added to that group." msgstr "" -"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグ" -"ループに追加されたすべての新しいエージェントに自動的に適用されます。" +"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグルー" +"プに追加されたすべての新しいエージェントに自動的に適用されます。" #: ../../enterprise/godmode/policies/policy_queue.php:146 #, php-format @@ -17037,8 +16854,7 @@ msgstr "ポリシーを削除するにはエージェントがあってはいけ #: ../../enterprise/godmode/policies/policies.php:672 msgid "A policy with agents cannot be deleted. Purge it first" msgstr "" -"エージェントのあるポリシーは削除できません。先にエージェントを削除してくださ" -"い。" +"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" #: ../../enterprise/godmode/policies/policies.php:682 msgid "Deleting all policy agents" @@ -17161,8 +16977,8 @@ msgstr "インベントリモジュール" #: ../../enterprise/godmode/policies/policy_collections.php:118 msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." +"Successfully added to delete the collection. Will be deleted in the next policy " +"application." msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_collections.php:295 @@ -17188,14 +17004,14 @@ msgstr "追加するコレクションがありません" #: ../../enterprise/godmode/policies/policy_agents.php:101 msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." +"Successfully added to delete pending agents. Will be deleted in the next policy " +"application." msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:123 msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." +"Successfully added to delete pending groups. Will be deleted in the next policy " +"application." msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:147 @@ -17221,11 +17037,11 @@ msgstr "追加しました %d" #: ../../enterprise/godmode/policies/policy_agents.php:281 msgid "" -"Number of agents added to the policy concurrently is too large. This might " -"cause the operation to fail or lead to performance issues." +"Number of agents added to the policy concurrently is too large. This might cause " +"the operation to fail or lead to performance issues." msgstr "" -"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗" -"したり、パフォーマンスの問題が発生したりする可能性があります。" +"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗し" +"たり、パフォーマンスの問題が発生したりする可能性があります。" #: ../../enterprise/godmode/policies/policy_agents.php:288 msgid "Successfully added to policy" @@ -17284,8 +17100,7 @@ msgstr "ポリシー内エージェント" #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 #: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 -#: ../../include/functions_networkmap.php:1299 +#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1299 #: ../../include/functions_maps.php:46 #: ../../include/lib/Dashboard/Widgets/groups_status.php:231 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 @@ -17338,8 +17153,7 @@ msgstr "R." #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 -#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../mobile/operation/agents.php:406 ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 msgid "S." @@ -17357,8 +17171,7 @@ msgstr "U." #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 -#: ../../include/class/AuditLog.class.php:130 +#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17426,8 +17239,8 @@ msgid "" "Some features of policy management are disabled because an instance of DB Tool " "is running on a node." msgstr "" -"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能" -"が無効になっています。" +"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能が" +"無効になっています。" #: ../../enterprise/godmode/policies/policy.php:115 #: ../../enterprise/include/functions_policies.php:3805 @@ -17445,8 +17258,7 @@ msgstr "エージェントウィザード" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 -#: ../../operation/snmpconsole/snmp_statistics.php:104 -#: ../../operation/menu.php:259 +#: ../../operation/snmpconsole/snmp_statistics.php:104 ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" @@ -17546,8 +17358,8 @@ msgid "" "MIB files will be loaded and searched for SNMP trap definitions. They will not " "be installed on the system! You can use the MIB uploader for that purpose." msgstr "" -"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストー" -"ルされません。MIB アップローダはこの目的の範囲で利用できます。" +"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストール" +"されません。MIB アップローダはこの目的の範囲で利用できます。" #: ../../enterprise/godmode/menu.php:16 msgid "Manage Satellite Server" @@ -17950,8 +17762,7 @@ msgid "When select agents" msgstr "エージェント選択時の動作" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:489 ../../extensions/agents_modules.php:493 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18084,8 +17895,8 @@ msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." msgstr "" -"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/" -"データ フィールドで検索します。" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/デー" +"タ フィールドで検索します。" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 @@ -18835,8 +18646,7 @@ msgstr "ランダムな名前" #: ../../enterprise/godmode/services/services.service.php:612 #: ../../enterprise/operation/services/massive/services.create.php:679 msgid "" -"This group will be used also to control access to this service and its " -"elements." +"This group will be used also to control access to this service and its elements." msgstr "" "このグループは、このサービスとその要素へのアクセスを制御するためにも使用されま" "す。" @@ -18940,12 +18750,12 @@ msgstr "SLA" #: ../../enterprise/godmode/services/services.service.php:869 msgid "" "Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." +"\t\tYou can modify the default behaviour editing alerts in the agent who stores " +"data and alert definitions about the service and the SLA status." msgstr "" "アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" -"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントで" -"アラートを編集することによりデフォルトの動作を変更できます。" +"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでア" +"ラートを編集することによりデフォルトの動作を変更できます。" #: ../../enterprise/godmode/services/services.service.php:895 #: ../../enterprise/operation/services/massive/services.create.php:916 @@ -19007,8 +18817,7 @@ msgstr "SLA 障害サービスアラート" #: ../../include/functions_reporting_html.php:862 #: ../../include/functions_reporting_html.php:3569 #: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/functions_db.php:1974 ../../include/class/ConfigPEN.class.php:674 #: ../../include/class/ConfigPEN.class.php:698 #: ../../include/class/SatelliteAgent.class.php:1105 #: ../../include/class/HelpFeedBack.class.php:370 @@ -19024,16 +18833,16 @@ msgstr "OK" #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" -"This change in the service configuration will delete the history of the " -"service modules. Do you wish to continue?" +"This change in the service configuration will delete the history of the service " +"modules. Do you wish to continue?" msgstr "" -"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しま" -"すか?" +"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行します" +"か?" #: ../../enterprise/godmode/services/services.service.php:1030 msgid "" -"This change in the service configuration will prevent the SLA modules from " -"being created. Do you wish to continue?" +"This change in the service configuration will prevent the SLA modules from being " +"created. Do you wish to continue?" msgstr "" "このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行します" "か?" @@ -19069,8 +18878,8 @@ msgstr "カスタムフィールド値" #: ../../enterprise/godmode/services/services.elements.php:260 msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." msgstr "" -"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視" -"します。" +"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視し" +"ます。" #: ../../enterprise/godmode/services/services.elements.php:265 msgid "MySQL Regular expressions case sensitive." @@ -19180,12 +18989,12 @@ msgstr "ヒストリ設定有効化" #, php-format msgid "" "Data will be available in active database as time as days you specify here. " -"Older information will be sent to historical database. Note data will be " -"purged from active database after %d days." +"Older information will be sent to historical database. Note data will be purged " +"from active database after %d days." msgstr "" -"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" -"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" -"されることに注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト" +"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:300 msgid "Data days old to keep in active database" @@ -19198,9 +19007,9 @@ msgid "" "here. Older information will be sent to historical database. Note data will be " "purged from active database after %d days." msgstr "" -"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" -"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" -"されることに注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト" +"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:324 msgid "String data days old to keep in active database" @@ -19211,8 +19020,8 @@ msgid "" "Number of rows to be sent to historical database each 'delay' seconds. If you " "experience issues running pandora_db, try decreasing this value." msgstr "" -"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題" -"が発生した場合は、この値を減らしてみてください。" +"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が" +"発生した場合は、この値を減らしてみてください。" #: ../../enterprise/godmode/setup/setup_history.php:345 msgid "Transference block size (Step)" @@ -19244,8 +19053,8 @@ msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " "tagente_datos_string, tevento). Monthly partitions." msgstr "" -"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)" -"にパーティションを自動的に作成します。 月次のパーティションです。" +"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)に" +"パーティションを自動的に作成します。 月次のパーティションです。" #: ../../enterprise/godmode/setup/setup_history.php:420 msgid "Automatic partition of big tables." @@ -19263,8 +19072,8 @@ msgid "" "active database after %d days." msgstr "" "イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" -"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除さ" -"れることに注意してください。" +"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:448 msgid "Events days old to keep in active database" @@ -19294,13 +19103,13 @@ msgstr "ヒストリトラップ設定" #: ../../enterprise/godmode/setup/setup_history.php:516 #, php-format msgid "" -"Traps will remain in active database a maximum of specified days, then they " -"will be transferred to historical database. Note traps will be purged from " -"active database after %d days." +"Traps will remain in active database a maximum of specified days, then they will " +"be transferred to historical database. Note traps will be purged from active " +"database after %d days." msgstr "" "トラップは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" -"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除さ" -"れることに注意してください。" +"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:523 msgid "Days old to keep in active database" @@ -19376,11 +19185,10 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:746 msgid "" "By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to " -"proceed?" +"database schema will be applied on your selected target, do you want to proceed?" msgstr "" -"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応" -"じて、データベーススキーマが選択した対象に適用されます。続行しますか?" +"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じ" +"て、データベーススキーマが選択した対象に適用されます。続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:747 msgid "" @@ -19388,9 +19196,9 @@ msgid "" "old data will remain in previous node, unlinked from this console and not " "maintained, do you want to proceed?" msgstr "" -"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されます" -"が、古いデータは前のノードに残り、このコンソールからリンク解除され、維持されま" -"せん。続行しますか?" +"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されますが、" +"古いデータは前のノードに残り、このコンソールからリンク解除され、維持されません。" +"続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:749 #, php-format @@ -19398,17 +19206,17 @@ msgid "" "Disabling historical database, you will not keep any data older than %d days. " "Are you sure?" msgstr "" -"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろ" -"しいですか?" +"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろし" +"いですか?" #: ../../enterprise/godmode/setup/setup_history.php:753 #, php-format msgid "" -"Historical database allows you to keep data older than %d days. This action " -"will produce no changes. Historical database will remain disabled." +"Historical database allows you to keep data older than %d days. This action will " +"produce no changes. Historical database will remain disabled." msgstr "" -"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクショ" -"ンでは変更は行われません。ヒストリデータベースは無効のままになります。" +"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクション" +"では変更は行われません。ヒストリデータベースは無効のままになります。" #: ../../enterprise/godmode/setup/setup_history.php:758 msgid "" @@ -19416,9 +19224,9 @@ msgid "" "needed, database schema will be applied on your selected target. Information " "stored in previous configuration will be IGNORED, do you want to proceed?" msgstr "" -"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必" -"要に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存" -"された情報は無視されます。続行しますか?" +"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必要" +"に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存され" +"た情報は無視されます。続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:761 msgid "Please ensure all fields matches your needs." @@ -19432,14 +19240,14 @@ msgstr "更新が予定されています。" msgid "" " If you are replicating events, events validated or deleted on the metaconsole " "WILL NOT be deleted or validated here. This option is just to allow local " -"pandora users to see events, but not to operate with them. Operation, when " -"event replication is enabled, should be done only in metaconsole" +"pandora users to see events, but not to operate with them. Operation, when event " +"replication is enabled, should be done only in metaconsole" msgstr "" -" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここで" -"は削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベ" -"ントを表示できるようにするためだけのものであり、イベントを操作するためのもので" -"はありません。イベントの複製が有効になっている場合の操作は、メタコンソールでの" -"み実行する必要があります。" +" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここでは" +"削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベント" +"を表示できるようにするためだけのものであり、イベントを操作するためのものではあり" +"ません。イベントの複製が有効になっている場合の操作は、メタコンソールでのみ実行す" +"る必要があります。" #: ../../enterprise/godmode/setup/setup.php:45 msgid "Yes and change status" @@ -19590,8 +19398,8 @@ msgid "" "Token previously configured on the destination Pandora console in order to use " "delegated authentification." msgstr "" -"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークン" -"です。" +"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンで" +"す。" #: ../../enterprise/godmode/setup/setup_metaconsole.php:274 msgid "Console URLxxxxxx" @@ -19690,12 +19498,11 @@ msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:1411 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:377 -#: ../../godmode/users/profile_list.php:92 +#: ../../godmode/groups/group_list.php:377 ../../godmode/users/profile_list.php:92 #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 -#: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/user_list.php:297 ../../godmode/users/configure_user.php:276 +#: ../../godmode/menu.php:165 msgid "Profiles" msgstr "プロファイル" @@ -19775,8 +19582,8 @@ msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" msgstr "" -"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっ" -"ている場合)" +"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になって" +"いる場合)" #: ../../enterprise/godmode/setup/setup_auth.php:1203 msgid "SAML group name attribute" @@ -19787,8 +19594,8 @@ msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" msgstr "" -"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になって" -"いる場合)" +"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になってい" +"る場合)" #: ../../enterprise/godmode/setup/setup_auth.php:1211 msgid "Simple attribute / Multivalue attribute" @@ -19883,8 +19690,7 @@ msgstr "プロファイルへカスタム要素を追加" #: ../../godmode/users/configure_profile.php:276 #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../include/functions_profile.php:203 ../../operation/users/user_edit.php:998 msgid "Profile name" msgstr "プロファイル名" @@ -19968,9 +19774,9 @@ msgid "" "max_input_time = -1" msgstr "" "一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。" -"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タ" -"イムアウトパラメータを次のように設定してください。
max_execution_time = " -"0max_input_time = -1" +"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイ" +"ムアウトパラメータを次のように設定してください。
max_execution_time = 0max_input_time = -1" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:205 @@ -19998,8 +19804,8 @@ msgid "" "Left in blank if you want to use default name: Template name - agents (num " "agents) - Date" msgstr "" -"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利" -"用したい場合は、空白にしてください。" +"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用" +"したい場合は、空白にしてください。" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:377 @@ -20011,8 +19817,7 @@ msgstr "対象グループ" #: ../../godmode/reporting/create_container.php:746 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../include/ajax/heatmap.ajax.php:129 ../../include/ajax/heatmap.ajax.php:310 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 #: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 msgid "Tag" @@ -20156,14 +19961,14 @@ msgstr "クラウド監視自動検出タスク作成" msgid "" "Within this view you will find information collected using Discovery Cloud AWS " "task. You will be able to see the most relevant information about your " -"infrastructure, such as the current cost of your contracted services, the " -"number of instances per region or resource usage metrics. In order to collect " -"this information you must create a Cloud Monitoring Discovery task." +"infrastructure, such as the current cost of your contracted services, the number " +"of instances per region or resource usage metrics. In order to collect this " +"information you must create a Cloud Monitoring Discovery task." msgstr "" -"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 " -"契約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指" -"標など、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集する" -"には、クラウド監視自動検出タスクを作成する必要があります。" +"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契" +"約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標な" +"ど、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集するには、" +"クラウド監視自動検出タスクを作成する必要があります。" #: ../../enterprise/godmode/reporting/aws_view.php:192 msgid "Press the create button to begin." @@ -20230,14 +20035,14 @@ msgid "" "You can use macro _agentalias_ here. Left in blank if you want to use default " "name: Template name - agent alias" msgstr "" -"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白" -"のままにします: テンプレート名 - エージェントの別名" +"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白の" +"ままにします: テンプレート名 - エージェントの別名" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:895 msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* " -"will match with the following agent alias: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent alias. For example: Network.* will " +"match with the following agent alias: network_agent1, NetworK CHECKS" msgstr "" "エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次の" "エージェント別名と一致します: network_agent1, NetworK CHECKS" @@ -20386,8 +20191,7 @@ msgstr "12時間" #: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:422 #: ../../include/functions.php:2758 ../../include/ajax/module.php:224 -#: ../../include/ajax/graph.ajax.php:150 -#: ../../include/class/AuditLog.class.php:211 +#: ../../include/ajax/graph.ajax.php:150 ../../include/class/AuditLog.class.php:211 msgid "1 day" msgstr "1日" @@ -20409,8 +20213,7 @@ msgstr "先週" #: ../../enterprise/operation/log/log_viewer.php:680 #: ../../godmode/reporting/create_container.php:426 #: ../../include/functions.php:2760 ../../include/ajax/module.php:226 -#: ../../include/ajax/graph.ajax.php:154 -#: ../../include/class/AuditLog.class.php:213 +#: ../../include/ajax/graph.ajax.php:154 ../../include/class/AuditLog.class.php:213 msgid "15 days" msgstr "15日" @@ -20544,11 +20347,11 @@ msgstr "最新の値" #: ../../godmode/reporting/reporting_builder.item_editor.php:7472 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the " -"most recent information" +"Information contained in this kind of reports will be always reporting the most " +"recent information" msgstr "" -"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれ" -"るのは、最新の情報のみとなります。" +"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれる" +"のは、最新の情報のみとなります。" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:217 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:211 @@ -20697,8 +20500,7 @@ msgstr "復旧を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2741 msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" +"Show a resume table with max, min, average of total modules on the report bottom" msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:462 @@ -20760,8 +20562,7 @@ msgstr "並び順:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:338 msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" +"Show a resume table with max, min, average of total modules on the report bottom:" msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 @@ -20799,8 +20600,8 @@ msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" msgstr "" -"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを" -"考慮して実行する必要があります" +"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考" +"慮して実行する必要があります" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 @@ -20872,8 +20673,8 @@ msgstr "詳細グラフ (TIP)" #: ../../operation/agentes/stat_win.php:397 #: ../../operation/agentes/interface_traffic_graph_win.php:242 msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can " -"only enable TIP or average, maximum or minimum series" +"TIP mode charts do not support average - maximum - minimum series, you can only " +"enable TIP or average, maximum or minimum series" msgstr "" "詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最" "大、最小を有効にできます" @@ -20895,11 +20696,11 @@ msgstr "パーセント値" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." +"If this option was checked, only adding in elements that type of modules support " +"this option." msgstr "" -"このオプションをチェックすると、このオプションをサポートするモジュールタイプの" -"要素のみ追加できます。" +"このオプションをチェックすると、このオプションをサポートするモジュールタイプの要" +"素のみ追加できます。" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 @@ -21180,8 +20981,7 @@ msgstr "JSON" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:473 #: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../extensions/insert_data.php:231 -#: ../../operation/agentes/exportdata.php:309 +#: ../../extensions/insert_data.php:231 ../../operation/agentes/exportdata.php:309 msgid "CSV" msgstr "CSVファイル" @@ -21437,8 +21237,8 @@ msgstr "ローカルメタコンソール" #: ../../godmode/reporting/reporting_builder.item_editor.php:1169 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" -"Case insensitive regular expression for agent name. For example: Network.* " -"will match with the following agent names: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent name. For example: Network.* will " +"match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" "network_agent1, NetworKCHECKS というエージェント名にマッチします。" @@ -21449,14 +21249,14 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1192 msgid "" "Case insensitive regular expression or string for module name. For example: if " -"you use this field with \"Module exact match\" enabled then this field has to " -"be fulfilled with the literally string of the module name, if not you can use " -"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " +"you use this field with \"Module exact match\" enabled then this field has to be " +"fulfilled with the literally string of the module name, if not you can use a " +"regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " "matchine 1." msgstr "" "モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モ" -"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字" -"列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" +"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列" +"そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" "cpu_usage、vram usage in machine 1 にマッチします。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 @@ -21497,8 +21297,7 @@ msgstr "データのないアイテムを表示したくない場合はチェッ #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:573 ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 #: ../../include/functions_reporting.php:10655 msgid "Custom graph" @@ -21517,8 +21316,8 @@ msgstr "カスタム SQL テンプレート" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 #: ../../godmode/reporting/reporting_builder.item_editor.php:2386 msgid "" -"The entities of the fields that contain them must be included. Also is " -"possible use macros like `_start_date_` or `_end_date_`." +"The entities of the fields that contain them must be included. Also is possible " +"use macros like `_start_date_` or `_end_date_`." msgstr "" "それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や " "`_end_date_` などのマクロを使用することもできます。" @@ -21708,8 +21507,8 @@ msgid "" "If it is checked, the regexp or name of modules match only each to each to " "agent, instead create a big graph with all modules from all agents." msgstr "" -"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチし" -"ます。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" +"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチしま" +"す。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 #: ../../godmode/reporting/reporting_builder.item_editor.php:3367 @@ -22001,8 +21800,7 @@ msgid "Updating console task" msgstr "コンソールタスクの更新中" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:524 -#: ../../godmode/menu.php:55 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +#: ../../godmode/menu.php:55 ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "タスク一覧" @@ -22053,8 +21851,8 @@ msgid "" "All company names used here are for identification purposes only. Use of these " "names, logos, and brands does not imply endorsement." msgstr "" -"ここで使用されているすべての会社名は、識別することのみを目的としています。 これ" -"らの名前、ロゴ、およびブランドの使用の承認を意味するものではありません。" +"ここで使用されているすべての会社名は、識別することのみを目的としています。 これら" +"の名前、ロゴ、およびブランドの使用の承認を意味するものではありません。" #: ../../enterprise/godmode/wizards/Cloud.class.php:240 #: ../../enterprise/godmode/wizards/Cloud.class.php:248 @@ -22065,11 +21863,10 @@ msgstr "%s 認証情報" #: ../../enterprise/godmode/wizards/Cloud.class.php:264 msgid "" "If a task with the selected credentials is already running, it will be edited. " -"To create a new one, another account from the credential store must be " -"selected." +"To create a new one, another account from the credential store must be selected." msgstr "" -"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 " -"新規作成するには、認証情報ストアから別のアカウントを選択する必要があります。" +"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新" +"規作成するには、認証情報ストアから別のアカウントを選択する必要があります。" #: ../../enterprise/godmode/wizards/Cloud.class.php:284 msgid "Manage accounts" @@ -22304,15 +22101,15 @@ msgid "" "Successfully deleted export target. All the linked modules will be " "automatically unattached" msgstr "" -"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは" -"自動的に接続解除されます" +"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは自" +"動的に接続解除されます" #: ../../enterprise/godmode/servers/manage_export.php:135 msgid "" "Can't be created export target: User and password must be filled with FTP mode" msgstr "" -"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力" -"する必要があります" +"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力す" +"る必要があります" #: ../../enterprise/godmode/servers/manage_export.php:155 msgid "There are no defined export targets" @@ -22365,21 +22162,20 @@ msgid "Default value: " msgstr "デフォルト値" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:556 ../../include/functions_servers.php:1221 +#: ../../include/functions_ui.php:7271 msgid "Data server" msgstr "データサーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1224 +#: ../../include/functions_ui.php:7276 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "ネットワークサーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1269 msgid "Alert server" msgstr "アラートサーバ" @@ -22398,8 +22194,7 @@ msgstr "アラートサーバ" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 #: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1257 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" @@ -22412,8 +22207,8 @@ msgid "Prediction server" msgstr "予測サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1236 +#: ../../include/functions_ui.php:7281 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "プラグインサーバ" @@ -22429,27 +22224,23 @@ msgid "SNMP server" msgstr "SNNP サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1245 msgid "Web server" msgstr "ウェブサーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:660 ../../include/functions_servers.php:1251 msgid "Inventory server" msgstr "インベントリサーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:647 ../../include/functions_servers.php:1248 msgid "Export server" msgstr "エクスポートサーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:686 ../../include/functions_servers.php:1254 msgid "Event server" msgstr "イベントサーバ" @@ -22463,14 +22254,13 @@ msgid "WUX server" msgstr "WUX サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1272 msgid "NCM server" msgstr "NCM サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1242 +#: ../../include/functions_ui.php:7291 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "WMI サーバ" @@ -22614,8 +22404,8 @@ msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" msgstr "" -"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモー" -"ト エージェントの設定に干渉しないようにするには、1 に設定します。" +"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモート " +"エージェントの設定に干渉しないようにするには、1 に設定します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Exec interval" @@ -22644,9 +22434,9 @@ msgid "" "in /usr/bin/fping and update this field with the new path" msgstr "" "Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデ" -"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールす" -"る場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストー" -"ル先のパスを設定します。" +"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールする" +"場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストール先" +"のパスを設定します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "Path to Pandora Fast SNMP binary" @@ -22669,16 +22459,14 @@ msgid "General GIS exec" msgstr "一般的な GIS 実行" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 -msgid "" -"Path to general GIS coordinates generator. It should be an executable file" +msgid "Path to general GIS coordinates generator. It should be an executable file" msgstr "" "一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" -"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要がありま" -"す)" +"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要があります)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Host file" @@ -22871,8 +22659,8 @@ msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" msgstr "" -"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表" -"記) (例: 192.168.0.0/24,192.168.1.0/24)" +"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表記) " +"(例: 192.168.0.0/24,192.168.1.0/24)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 msgid "Recon timing template" @@ -22894,8 +22682,7 @@ msgstr "サーバ IP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" -"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してくださ" -"い" +"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してください" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Name of the Satellite server (the hostname is used by default)" @@ -22909,8 +22696,8 @@ msgstr "サーバパス" msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" -"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用" -"されます)" +"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用さ" +"れます)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "Server port" @@ -22950,8 +22737,8 @@ msgstr "キープアライブ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "" -"Interval of the main server loop in seconds. Status updates are sent to " -"Pandora every keepalive seconds" +"Interval of the main server loop in seconds. Status updates are sent to Pandora " +"every keepalive seconds" msgstr "" "メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに " "Pandora に送信されます" @@ -23015,9 +22802,9 @@ msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" msgstr "" -"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョ" -"ンを明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しな" -"くなる可能性があります" +"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョン" +"を明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しなくな" +"る可能性があります" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c block" @@ -23175,8 +22962,7 @@ msgid "Startup delay" msgstr "開始遅延" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 -msgid "" -"Wait startup_delay seconds before sending XML data files for the first time" +msgid "Wait startup_delay seconds before sending XML data files for the first time" msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 @@ -23216,8 +23002,7 @@ msgid "Temporal minimum size" msgstr "一時的な最小サイズ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 -msgid "" -"Minimum available bytes in the temporal directory to enable the XML buffer" +msgid "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 @@ -23315,11 +23100,11 @@ msgstr "timeout バイナリ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 msgid "" -"If defined, the timeout program (usually /usr/bin/timeout) will be used to " -"call the Tentacle client" +"If defined, the timeout program (usually /usr/bin/timeout) will be used to call " +"the Tentacle client" msgstr "" -"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle ク" -"ライアントの呼び出しに使用されます。" +"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle クラ" +"イアントの呼び出しに使用されます。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 msgid "IPAM interval" @@ -23336,12 +23121,12 @@ msgstr "セカンダリモード" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1270 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " -"server only if the primary server fails. If set to always, data files are " -"always copied to the secondary server" +"server only if the primary server fails. If set to always, data files are always " +"copied to the secondary server" msgstr "" -"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生し" -"た場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定" -"すると、データ ファイルは常にセカンダリサーバにコピーされます。" +"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生した" +"場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定する" +"と、データ ファイルは常にセカンダリサーバにコピーされます。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1276 msgid "Secondary server IP" @@ -23374,11 +23159,10 @@ msgstr "リモート設定ファイル削除" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 msgid "" -"Delete this conf file implies that server will send back local config to " -"console" +"Delete this conf file implies that server will send back local config to console" msgstr "" -"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すこと" -"を意味します" +"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを" +"意味します" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1432 msgid "General server configuration" @@ -23426,8 +23210,7 @@ msgstr "サテライトサーバ" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 -#: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 +#: ../../godmode/servers/modificar_server.php:75 ../../include/functions_ui.php:961 #: ../../include/class/Diagnostics.class.php:1207 msgid "Satellite" msgstr "サテライト" @@ -23568,8 +23351,7 @@ msgstr "スケジュールされたレポートは、添付ファイルなしで #: ../../enterprise/include/functions_cron.php:1558 msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" -"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しまし" -"た。" +"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しました。" #: ../../enterprise/include/functions_cron.php:1801 #: ../../include/functions_reporting.php:15834 @@ -23581,8 +23363,7 @@ msgid "Attached to this email there's a CSV file of the logs" msgstr "このメールに添付されているのは、ログの CSV ファイルです。" #: ../../enterprise/include/functions_cron.php:1805 -#: ../../mobile/include/functions_web.php:84 -#: ../../mobile/include/ui.class.php:327 +#: ../../mobile/include/functions_web.php:84 ../../mobile/include/ui.class.php:327 #: ../../include/functions_reporting.php:15840 msgid "Generated at" msgstr "更新日時:" @@ -23626,8 +23407,8 @@ msgstr "自動検出コンソールタスクが正しく動作していません msgid "" "Discovery relies on a proper setup of cron, the time-based scheduling service" msgstr "" -"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存" -"しています" +"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存し" +"ています" #: ../../enterprise/include/functions_tasklist.php:59 #: ../../include/class/ConsoleSupervisor.php:2536 @@ -23794,14 +23575,13 @@ msgstr "開始ネットワーク" #: ../../enterprise/include/ajax/ipam.ajax.php:316 msgid "" -"The networks will be created/added starting from this address in the " -"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " -"If no value was provided, it uses the starting address of the supernet by " -"default." +"The networks will be created/added starting from this address in the subnetting " +"range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value " +"was provided, it uses the starting address of the supernet by default." msgstr "" "ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されま" -"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デ" -"フォルトでスーパーネットの開始アドレスが使用されます。" +"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォ" +"ルトでスーパーネットの開始アドレスが使用されます。" #: ../../enterprise/include/ajax/ipam.ajax.php:320 msgid "Max. number" @@ -24374,8 +24154,7 @@ msgstr "mysqldump の実行で問題が発生しました。" msgid "" "In order to make backups it is necessary to check if the configuration is " "correct." -msgstr "" -"バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" +msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" #: ../../enterprise/include/functions_backup.php:256 msgid "No description" @@ -24643,16 +24422,15 @@ msgstr "定義済みアラート" #: ../../enterprise/operation/services/services.treeview_services.php:296 #: ../../godmode/groups/group_list.php:1087 #: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 +#: ../../godmode/groups/group_list.php:1089 ../../include/functions_graph.php:2608 #: ../../include/functions_reporting.php:12171 #: ../../include/functions_reporting.php:12192 #: ../../include/lib/Dashboard/Widgets/tree_view.php:702 #: ../../include/lib/Dashboard/Widgets/tree_view.php:703 #: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../include/functions_groups.php:2718 ../../include/functions_groups.php:2741 +#: ../../operation/tree.php:506 ../../operation/tree.php:507 +#: ../../operation/tree.php:508 msgid "Fired alerts" msgstr "発生したアラート" @@ -24661,8 +24439,7 @@ msgid "Last 8 hours events" msgstr "直近 8時間のイベント" #: ../../enterprise/include/functions_reporting_csv.php:1036 -#: ../../include/functions_reports.php:789 -#: ../../include/functions_reports.php:795 +#: ../../include/functions_reports.php:789 ../../include/functions_reports.php:795 msgid "Group report" msgstr "グループレポート" @@ -24884,8 +24661,7 @@ msgstr "状態 " #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1337 ../../include/functions_config.php:3541 msgid "Fail" msgstr "失敗" @@ -25170,8 +24946,8 @@ msgstr "IPAM ネットワーク" #: ../../enterprise/include/functions_reporting_csv.php:1984 #: ../../enterprise/include/functions_reporting.php:2336 -#: ../../godmode/events/custom_events.php:94 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 +#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2665 msgid "Agent ID" msgstr "エージェント ID" @@ -25186,9 +24962,8 @@ msgstr "エージェント ID" #: ../../godmode/users/configure_user.php:1218 #: ../../godmode/users/user_management.php:684 #: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 -#: ../../include/class/AuditLog.class.php:114 +#: ../../include/functions_reporting_html.php:6016 ../../include/functions.php:3109 +#: ../../include/ajax/events.php:1763 ../../include/class/AuditLog.class.php:114 #: ../../operation/users/user_edit.php:743 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 @@ -25282,10 +25057,8 @@ msgstr "未初期化数" #: ../../enterprise/include/functions_reporting_csv.php:2041 #: ../../enterprise/operation/services/services.service.php:119 #: ../../enterprise/operation/services/services.list.php:546 -#: ../../include/functions_reports.php:710 -#: ../../include/functions_reports.php:715 -#: ../../include/functions_reports.php:719 -#: ../../include/functions_reports.php:723 +#: ../../include/functions_reports.php:710 ../../include/functions_reports.php:715 +#: ../../include/functions_reports.php:719 ../../include/functions_reports.php:723 #: ../../include/functions_reports.php:729 msgid "SLA" msgstr "SLA" @@ -25454,8 +25227,7 @@ msgid "Event Report Log" msgstr "イベントレポートログ" #: ../../enterprise/include/functions_reporting_csv.php:2581 -#: ../../include/functions_reports.php:951 -#: ../../include/functions_reports.php:952 +#: ../../include/functions_reports.php:951 ../../include/functions_reports.php:952 #: ../../include/functions_reporting.php:5108 msgid "Permissions report" msgstr "権限レポート" @@ -25551,8 +25323,8 @@ msgstr "Netflow トップ N 接続" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 -#: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 +#: ../../include/functions_reporting_html.php:6015 ../../include/functions.php:3109 +#: ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 #: ../../general/logon_ok.php:258 @@ -25565,8 +25337,7 @@ msgid "Destination IP" msgstr "宛先 IP" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1024 ../../include/functions_config.php:3453 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25798,8 +25569,8 @@ msgid "" "This VMware configuration has been already defined. Please edit it or create a " "new one." msgstr "" -"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくだ" -"さい。" +"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくださ" +"い。" #: ../../enterprise/include/class/VMware.app.php:264 #: ../../enterprise/include/class/DB2.app.php:197 @@ -25906,8 +25677,8 @@ msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " "will never run" msgstr "" -"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検" -"出タスクは実行されません。" +"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出" +"タスクは実行されません。" #: ../../enterprise/include/class/VMware.app.php:656 msgid "Datacenter user" @@ -25925,8 +25696,8 @@ msgid "" "Manual interval means that it will be executed only On-demand, The minimum " "recomended interval is 5 minutes" msgstr "" -"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は " -"5分です。" +"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は 5" +"分です。" #: ../../enterprise/include/class/VMware.app.php:677 #: ../../enterprise/include/class/VMware.app.php:894 @@ -25956,8 +25727,8 @@ msgid "" "This name must match with the name wich appears when you log in you VMware " "manager" msgstr "" -"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があ" -"ります" +"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があり" +"ます" #: ../../enterprise/include/class/VMware.app.php:748 msgid "Encrypt passwords" @@ -26103,8 +25874,8 @@ msgid "" "Sofware agent version with id %s does not exist, please, add it to your " "repository %s " msgstr "" -"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加" -"してください " +"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加し" +"てください " #: ../../enterprise/include/class/DeploymentCenter.class.php:526 msgid "No target could be added. " @@ -26439,8 +26210,8 @@ msgstr "再同期データディレクトリ" #: ../../enterprise/include/class/DatabaseHA.class.php:847 msgid "Directory where mysql files are stored (must be common to all nodes)" msgstr "" -"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があ" -"ります)" +"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があり" +"ます)" #: ../../enterprise/include/class/DatabaseHA.class.php:857 msgid "Resync tmp directory" @@ -26451,8 +26222,7 @@ msgid "" "Temporary working directory where to store the backups that will be used to re-" "synchronize a slave node" msgstr "" -"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクト" -"リ" +"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクトリ" #: ../../enterprise/include/class/DatabaseHA.class.php:868 msgid "Resync MySQL user" @@ -26463,8 +26233,8 @@ msgid "" "User of the system that owns the MySQL files, necessary for the adjustment of " "permissions (by default mysql)" msgstr "" -"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトで" -"は mysql)" +"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは " +"mysql)" #: ../../enterprise/include/class/DatabaseHA.class.php:879 msgid "Resync MySQL group" @@ -26472,11 +26242,10 @@ msgstr "再同期 MySQL グループ" #: ../../enterprise/include/class/DatabaseHA.class.php:880 msgid "" -"System group that owns the MySQL files, needed for permissions setting " -"(default mysql)" -msgstr "" -"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは " +"System group that owns the MySQL files, needed for permissions setting (default " "mysql)" +msgstr "" +"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)" #: ../../enterprise/include/class/DatabaseHA.class.php:941 #: ../../enterprise/include/class/NewDatabaseHA.class.php:261 @@ -26686,8 +26455,8 @@ msgid "" "Upload only official binary files from your device provide in raw format (not " "compressed)" msgstr "" -"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロード" -"してください" +"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードし" +"てください" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2206 #: ../../godmode/modules/manage_network_templates.php:83 @@ -26733,16 +26502,16 @@ msgstr "ファームウエアを削除しました" msgid "" "Not executed yet, no content to display, define your own in following textarea." msgstr "" -"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定" -"義してください。" +"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義" +"してください。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2489 msgid "" "Following content is already queued to be executed! You must wait until " "execution is finished before being able to modify this." msgstr "" -"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了" -"するまで待つ必要があります。" +"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了す" +"るまで待つ必要があります。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2581 msgid "Check progress" @@ -26790,17 +26559,17 @@ msgstr "不正な ID 指定です" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2820 msgid "" -"Is highly recommendable to execute this kind of operation from agent details " -"to preview the script content" +"Is highly recommendable to execute this kind of operation from agent details to " +"preview the script content" msgstr "" -"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューする" -"ことを強くお勧めします" +"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューするこ" +"とを強くお勧めします" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2829 msgid "This operation is not ready yet! Keep up to date with latest updates" msgstr "" -"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくだ" -"さい" +"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくださ" +"い" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2838 msgid "Invalid action" @@ -26959,8 +26728,8 @@ msgstr "前提条件 " #: ../../enterprise/include/class/Omnishell.class.php:892 msgid "All commands defined line per line must success to execute main commands" msgstr "" -"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要" -"があります" +"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要が" +"あります" #: ../../enterprise/include/class/Omnishell.class.php:904 msgid "Execute commands " @@ -26975,11 +26744,10 @@ msgid "Postconditions " msgstr "前提条件 " #: ../../enterprise/include/class/Omnishell.class.php:918 -msgid "" -"All commands defined line per line must success to consider command success" +msgid "All commands defined line per line must success to consider command success" msgstr "" -"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要が" -"あります" +"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要があ" +"ります" #: ../../enterprise/include/class/Omnishell.class.php:1347 msgid "Show agent list" @@ -27074,8 +26842,8 @@ msgstr "ログソース更新" #: ../../enterprise/include/class/DB2.app.php:165 msgid "" -"This DB2 configuration has been already defined. Please edit it or create a " -"new one." +"This DB2 configuration has been already defined. Please edit it or create a new " +"one." msgstr "" "この DB2 設定はすでに定義済です。 編集するか、新しいものを作成してください。" @@ -27124,9 +26892,9 @@ msgid "" "defined multiple targets, define a comma separated list of names here or leave " "in blank to use target as name." msgstr "" -"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を" -"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象" -"を名前として使用します。" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定" +"義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象を名" +"前として使用します。" #: ../../enterprise/include/class/DB2.app.php:666 #: ../../enterprise/include/class/MySQL.app.php:688 @@ -27140,11 +26908,11 @@ msgstr "カスタムモジュールプレフィックス" #: ../../enterprise/include/class/Oracle.app.php:674 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:678 msgid "" -"Defines a custom prefix to be concatenated before module names generated by " -"this task." +"Defines a custom prefix to be concatenated before module names generated by this " +"task." msgstr "" -"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックス" -"を定義します。" +"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを" +"定義します。" #: ../../enterprise/include/class/DB2.app.php:685 msgid "Get database summary" @@ -27253,8 +27021,8 @@ msgid "" "empty agents with the name, IP, OS type, description and group provided in the " "CSV." msgstr "" -"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、" -"IP、OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" +"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、IP、" +"OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" #: ../../enterprise/include/class/CSVImportAgents.class.php:182 msgid "Alias as name" @@ -27328,8 +27096,8 @@ msgid "" "yet, please visit" msgstr "" "SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモ" -"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にア" -"クセスしてください:" +"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアク" +"セスしてください:" #: ../../enterprise/include/class/SAPView.class.php:626 msgid "to start monitoring your SAP infrastructure." @@ -27341,8 +27109,8 @@ msgstr "自動検出 SAP" #: ../../enterprise/include/class/SAP.app.php:155 msgid "" -"This SAP configuration has been already defined. Please edit it or create a " -"new one." +"This SAP configuration has been already defined. Please edit it or create a new " +"one." msgstr "" "この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。" @@ -27465,11 +27233,11 @@ msgstr "エラーアップデート WP 数" #: ../../enterprise/include/class/SAP.app.php:784 #, php-format msgid "" -"Module 180 must be customized before being used, please use advanced options " -"to define the module following the documentation:
%s" +"Module 180 must be customized before being used, please use advanced options to " +"define the module following the documentation:
%s" msgstr "" -"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを" -"使用して、ドキュメントに従ってモジュールを定義してください。
%s" +"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使" +"用して、ドキュメントに従ってモジュールを定義してください。
%s" #: ../../enterprise/include/class/SAP.app.php:805 #: ../../godmode/agentes/planned_downtime.editor.php:1257 @@ -27509,8 +27277,8 @@ msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." msgstr "" -"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイ" -"プ ; SAPチェック定義" +"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; " +"SAPチェック定義" #: ../../enterprise/include/class/Aws.cloud.php:118 #: ../../include/class/CredentialStore.class.php:960 @@ -27583,8 +27351,8 @@ msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." msgstr "" -"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対" -"してそれぞれのタスクを定義してください。" +"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対し" +"てそれぞれのタスクを定義してください。" #: ../../enterprise/include/class/Aws.cloud.php:1008 msgid "Discovery.Cloud.AWS.RDS" @@ -27666,9 +27434,9 @@ msgid "" "defined multiple targets, define a comma separated list of names here or leave " "in blank to use server IP address/ FQDN." msgstr "" -"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を" -"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレ" -"ス/ FQDN を使用するために空白のままにします。" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定" +"義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレス/ " +"FQDN を使用するために空白のままにします。" #: ../../enterprise/include/class/MySQL.app.php:710 msgid "Scan databases" @@ -27684,11 +27452,11 @@ msgstr "カスタムデータベースエージェントプレフィックス" #: ../../enterprise/include/class/MySQL.app.php:748 msgid "" -"Defines a custom prefix to be concatenated before database agent names " -"generated by this task." +"Defines a custom prefix to be concatenated before database agent names generated " +"by this task." msgstr "" -"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタム" -"プレフィックスを定義します。" +"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプ" +"レフィックスを定義します。" #: ../../enterprise/include/class/MySQL.app.php:769 #: ../../enterprise/include/class/Oracle.app.php:692 @@ -27779,11 +27547,11 @@ msgstr "テーブルスペース監視" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit " -"it or create a new one." +"This Microsoft SQL Server configuration has been already defined. Please edit it " +"or create a new one." msgstr "" -"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成" -"してください。" +"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成し" +"てください。" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." @@ -27801,8 +27569,7 @@ msgstr "対象の Microsoft SQL Server" msgid "" "SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " "need." -msgstr "" -"SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" +msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:499 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:560 @@ -27882,8 +27649,8 @@ msgstr "ルール評価モード" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1074 msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." msgstr "" -"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止し" -"ます。" +"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止しま" +"す。" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1091 msgid "Grouped by" @@ -28078,16 +27845,14 @@ msgstr "復旧アラート" #: ../../godmode/alerts/alert_commands.php:123 #: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:991 -#: ../../godmode/alerts/alert_view.php:490 -#: ../../godmode/alerts/alert_view.php:609 +#: ../../godmode/alerts/alert_view.php:490 ../../godmode/alerts/alert_view.php:609 #, php-format msgid "Field %s" msgstr "フィールド %s" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 msgid "Agent and module event recovery macros are not available in this section" -msgstr "" -"ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" +msgstr "ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 #, php-format @@ -28126,8 +27891,7 @@ msgstr "リカバリ中" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2655 msgid "" -"Select the desired action and mode to view the Triggering fields for this " -"action" +"Select the desired action and mode to view the Triggering fields for this action" msgstr "" "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" @@ -28138,8 +27902,7 @@ msgstr "アクションを選択" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2731 #: ../../godmode/alerts/configure_alert_template.php:938 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:575 +#: ../../godmode/alerts/alert_view.php:441 ../../godmode/alerts/alert_view.php:575 msgid "Firing fields" msgstr "発報フィールド" @@ -28153,15 +27916,13 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2737 #: ../../godmode/agentes/fields_manager.php:153 -#: ../../godmode/alerts/alert_view.php:447 -#: ../../godmode/alerts/alert_view.php:570 +#: ../../godmode/alerts/alert_view.php:447 ../../godmode/alerts/alert_view.php:570 #: ../../operation/agentes/custom_fields.php:65 msgid "Field" msgstr "フィールド" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2739 -#: ../../godmode/alerts/alert_view.php:449 -#: ../../godmode/alerts/alert_view.php:572 +#: ../../godmode/alerts/alert_view.php:449 ../../godmode/alerts/alert_view.php:572 msgid "Fields configured on the command associated to the action" msgstr "アクションに関連付けられたコマンドで設定されたフィールド" @@ -28189,8 +27950,7 @@ msgid "Executed on firing" msgstr "発報時の実行" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2754 -#: ../../godmode/alerts/alert_view.php:465 -#: ../../godmode/alerts/alert_view.php:577 +#: ../../godmode/alerts/alert_view.php:465 ../../godmode/alerts/alert_view.php:577 msgid "Fields used on execution when the alert is fired" msgstr "アラートが発報したときに実行に使われるフィールド" @@ -28353,8 +28113,8 @@ msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " "php.ini." msgstr "" -"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に" -"設定してください。" +"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設" +"定してください。" #: ../../enterprise/include/class/CommandCenter.class.php:314 msgid "Nodes priority order" @@ -28422,9 +28182,8 @@ msgid "" "System is not unified yet, something is wrong, please troubleshoot the errors " "and retry the merge process. Your data have not been modified." msgstr "" -"システムはまだ統合されていません。何らかの問題があります。エラーのトラブル" -"シューティングを行い、マージ処理を再試行してください。 データは変更されていませ" -"ん。" +"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシュー" +"ティングを行い、マージ処理を再試行してください。 データは変更されていません。" #: ../../enterprise/include/class/CommandCenter.class.php:461 msgid "Errors while merging" @@ -28491,11 +28250,11 @@ msgstr "優先ノードの更新ができませんでした" #: ../../enterprise/include/class/CommandCenter.class.php:567 msgid "" -"By unifying databases all information across your infrastructure will be " -"merged to gain integrity" +"By unifying databases all information across your infrastructure will be merged " +"to gain integrity" msgstr "" -"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマー" -"ジされ、整合性が得られます" +"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージ" +"され、整合性が得られます" #: ../../enterprise/include/class/CommandCenter.class.php:580 #: ../../enterprise/include/class/CommandCenter.class.php:590 @@ -28520,9 +28279,9 @@ msgid "" "overwrite those backups? Press OK button to ignore this message and start the " "process." msgstr "" -"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書き" -"してもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタ" -"ンを押してください。" +"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きし" +"てもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを" +"押してください。" #: ../../enterprise/include/class/CommandCenter.class.php:648 msgid "System is merging events..." @@ -28600,8 +28359,7 @@ msgstr "DB バックアップ管理" #: ../../enterprise/include/class/ManageBackups.class.php:129 #, php-format -msgid "" -"To schedule a periodic (or one-time) backup task you can do it through %s." +msgid "To schedule a periodic (or one-time) backup task you can do it through %s." msgstr "" "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" @@ -28659,11 +28417,11 @@ msgstr "表示する追加情報がありません:" #: ../../enterprise/include/class/ManageBackups.class.php:446 msgid "" -"Are you sure you want to delete this database backup file? Once deleted you " -"will not be able to recover it." +"Are you sure you want to delete this database backup file? Once deleted you will " +"not be able to recover it." msgstr "" -"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に" -"戻すことはできません。" +"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻" +"すことはできません。" #: ../../enterprise/include/class/ManageBackups.class.php:448 msgid "Do you like perform a database restoration?" @@ -28675,16 +28433,15 @@ msgstr "タグごとのツリー表示" #: ../../enterprise/include/functions_enterprise.php:481 msgid "" -"If the interval of days until events data purge is shorter than the events " -"data history storage interval, data will be lost. It is recommended that the " -"storage frequency is higher than the purge frequency." +"If the interval of days until events data purge is shorter than the events data " +"history storage interval, data will be lost. It is recommended that the storage " +"frequency is higher than the purge frequency." msgstr "" "イベントデータの削除までの日数がヒストリイベントデータの保存間隔よりも短い場合" "データは失われます。 保存頻度は削除頻度よりも大きくすることをお勧めします。" #: ../../enterprise/include/functions_enterprise.php:483 -msgid "" -"Problems with event days purge and event days that pass data to history DB." +msgid "Problems with event days purge and event days that pass data to history DB." msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" #: ../../enterprise/include/functions_enterprise.php:494 @@ -28693,9 +28450,9 @@ msgid "" "problems and you lost data. Recommended that days purge will more taller than " "days to history DB" msgstr "" -"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失" -"します。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくだ" -"さい。" +"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失し" +"ます。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくださ" +"い。" #: ../../enterprise/include/functions_enterprise.php:496 msgid "Problems with days purge and days that pass data to history DB" @@ -29041,24 +28798,23 @@ msgid "" "Error adding web analysis module to policy. Id_module_type is not correct for " "web analysis modules." msgstr "" -"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 " -"Id_module_type が、ウェブ分析モジュールに対して正しくありません。" +"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type " +"が、ウェブ分析モジュールに対して正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4070 msgid "" "Network Module could not be added to policy. Id_module_type is not correct for " "network modules." msgstr "" -"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネッ" -"トワークモジュールに対して正しくありません。" +"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネット" +"ワークモジュールに対して正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4079 msgid "" -"Error adding web module to policy. Id_module_type is not correct for web " -"modules." +"Error adding web module to policy. Id_module_type is not correct for web modules." msgstr "" -"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対し" -"て正しくありません。" +"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して" +"正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4100 msgid "Error adding module to policy configuration_data is not a valid base64." @@ -29377,8 +29133,7 @@ msgstr "不正なプラグイン定義" #: ../../enterprise/include/lib/NetworkManager.php:82 #: ../../godmode/setup/setup_ehorus.php:139 #: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../operation/users/user_edit.php:872 ../../operation/users/user_edit.php:925 msgid "Test" msgstr "テスト" @@ -29517,8 +29272,8 @@ msgstr "現在選択されているテンプレートが、設定されている #, php-format msgid "No %s script available for this agent, check template %s" msgstr "" -"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認" -"してください" +"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認し" +"てください" #: ../../enterprise/include/lib/NetworkManager/Template.php:192 msgid "Error linking script: " @@ -29566,8 +29321,8 @@ msgid "" " Cannot switch from SMART to MANUAL if there are dynamic elements attached to " "the service. Please erase dynamic elements before change to MANUAL" msgstr "" -" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 " -"手動に変更する前に、動的要素を消去してください" +" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手" +"動に変更する前に、動的要素を消去してください" #: ../../enterprise/include/lib/Service.php:397 #: ../../enterprise/include/lib/Service.php:740 @@ -29686,11 +29441,10 @@ msgstr "ノードが見つかりません" #: ../../enterprise/include/lib/Metaconsole/Node.php:396 #, php-format -msgid "" -"There are %d queries pending to be applied, click in the eye to see results" +msgid "There are %d queries pending to be applied, click in the eye to see results" msgstr "" -"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認" -"してください" +"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認し" +"てください" #: ../../enterprise/include/lib/Metaconsole/Node.php:405 msgid "Database synchronization state and pending tasks" @@ -29706,16 +29460,16 @@ msgid "" "Failed synchronizing %s, please check node PHP configuration issues and " "collection max sizes" msgstr "" -"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確" -"認してください" +"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認" +"してください" #: ../../enterprise/include/lib/Metaconsole/Node.php:1174 msgid "" "The elimination of this node will lead to the suppression of its agents from " "metaconsole and all the configuration assigned to them. " msgstr "" -"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てら" -"れているすべての設定が抑制されます。" +"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられ" +"ているすべての設定が抑制されます。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1178 msgid "The rules for this node may stop working. " @@ -29723,11 +29477,10 @@ msgstr "このノードのルールが機能しなくなる可能性がありま #: ../../enterprise/include/lib/Metaconsole/Node.php:1182 msgid "" -"The deleted node will lose its license, and you must license it manually " -"again. " +"The deleted node will lose its license, and you must license it manually again. " msgstr "" -"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があ" -"ります。" +"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があり" +"ます。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1686 #, php-format @@ -29800,14 +29553,14 @@ msgstr "memory_limit 現在値" msgid "" "Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" -"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンで" -"はありません。" +"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンでは" +"ありません。" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:979 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" -"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではあり" -"ません。" +"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありま" +"せん。" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 msgid "Max size collection, all nodes and metaconsole, are not equal" @@ -29815,20 +29568,17 @@ msgstr "全ノードとメタコンソールで最大コレクションサイズ #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1016 #, php-format -msgid "" -"Post max size, nodes cannot be smaller than the size of the metaconsole %s" +msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできませ" -"ん" +"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1031 #, php-format msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole " -"%s" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより" -"小さくすることはできません" +"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小" +"さくすることはできません" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1093 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1109 @@ -30301,10 +30051,8 @@ msgid "Agent plugins does not exist in target node" msgstr "エージェントプラグインが対象ノードに存在しません" #: ../../enterprise/include/functions_metaconsole.php:2906 -msgid "" -"Agent policies definitions does not match with defined ones in target node" -msgstr "" -"エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" +msgid "Agent policies definitions does not match with defined ones in target node" +msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" #: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" @@ -30353,8 +30101,7 @@ msgid "Next available IP" msgstr "次の空き IP" #: ../../enterprise/include/functions_ipam.php:1343 -#: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../enterprise/tools/ipam/ipam_ajax.php:486 ../../include/ajax/events.php:1753 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30727,8 +30474,8 @@ msgid "" "Error uploading resource. Check if the selected file is a valid resource " "template in .ptr format" msgstr "" -"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の" -"有効なリソーステンプレートであるかどうかを確認してください" +"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有" +"効なリソーステンプレートであるかどうかを確認してください" #: ../../enterprise/include/functions_policies.php:4508 msgid "Policy does not exist" @@ -30846,8 +30593,8 @@ msgstr "回" #: ../../enterprise/operation/agentes/policy_view.php:352 #: ../../godmode/alerts/alert_list.list.php:651 #: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330 -#: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 +#: ../../include/functions_agents.php:3000 ../../include/functions_agents.php:3011 +#: ../../include/functions_ui.php:1423 #: ../../include/class/AgentsAlerts.class.php:962 #: ../../include/class/SnmpConsole.class.php:843 #: ../../include/functions_reporting.php:13066 @@ -31260,12 +31007,11 @@ msgid "" "This is a view to interface with Elasticsearch directly from WEB console. \n" "Please note that you can damage your Elasticsearch if you don`t know exactly " "what are you are doing. \n" -"This view is intended to be used only by users with a knowledge of " -"Elasticsearch" +"This view is intended to be used only by users with a knowledge of Elasticsearch" msgstr "" "これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n" -"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意" -"してください。\n" +"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意し" +"てください。\n" "この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としていま" "す。" @@ -31342,8 +31088,7 @@ msgstr "1週間" #: ../../enterprise/operation/log/log_viewer.php:681 #: ../../godmode/reporting/create_container.php:427 #: ../../include/functions.php:2761 ../../include/ajax/module.php:227 -#: ../../include/ajax/graph.ajax.php:155 -#: ../../include/class/AuditLog.class.php:214 +#: ../../include/ajax/graph.ajax.php:155 ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1ヵ月" @@ -31422,8 +31167,8 @@ msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." msgstr "" -"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファ" -"イルフォルダに保存されます。" +"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファイ" +"ルフォルダに保存されます。" #: ../../enterprise/operation/log/log_viewer.php:1239 msgid "The start date cannot be greater than the end date" @@ -31463,8 +31208,7 @@ msgstr "AWS 表示" msgid "SAP view" msgstr "SAP 表示" -#: ../../enterprise/operation/menu.php:117 -#: ../../enterprise/operation/menu.php:118 +#: ../../enterprise/operation/menu.php:117 ../../enterprise/operation/menu.php:118 #: ../../enterprise/operation/services/services.php:244 msgid "Service tree view" msgstr "サービスツリー表示" @@ -31597,8 +31341,8 @@ msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." msgstr "" -"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらを" -"カスタマイズする場合は、サービスを編集してください。" +"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらをカ" +"スタマイズする場合は、サービスを編集してください。" #: ../../enterprise/operation/services/massive/services.create.php:1174 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 @@ -31731,8 +31475,8 @@ msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit each element at service element editor." msgstr "" -"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらを" -"カスタマイズする場合は、サービス要素エディタで各要素を編集してください。" +"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカ" +"スタマイズする場合は、サービス要素エディタで各要素を編集してください。" #: ../../enterprise/operation/services/massive/service.create.elements.php:646 msgid "Item type to be added" @@ -31764,8 +31508,7 @@ msgid "Show sunburst" msgstr "サンバースト表示" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 -#: ../../extensions/module_groups.php:464 +#: ../../extensions/agents_modules.php:1043 ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 #: ../../include/functions_reporting_html.php:2281 #: ../../include/class/SnmpConsole.class.php:522 @@ -31871,8 +31614,7 @@ msgstr "表形式表示" msgid "Operation view" msgstr "操作画面" -#: ../../enterprise/tools/ipam/ipam.php:78 -#: ../../enterprise/tools/ipam/ipam.php:356 +#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 msgid "Subnetworks calculator" msgstr "サブネット計算" @@ -32111,8 +31853,7 @@ msgstr "スーパーネットへ追加されるネットワークがありませ #: ../../enterprise/tools/ipam/ipam_supernet_config.php:446 msgid "supernet name could not be added, please select supernet" -msgstr "" -"スーパーネット名を追加できませんでした。スーパーネットを選択してください。" +msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:475 msgid "Could not be deleted, please select supernet and network" @@ -32707,12 +32448,12 @@ msgstr "パッケージをアップロードしました。" #: ../../update_manager_client/views/offline.php:68 #, php-format msgid "" -"Please keep in mind that this package is going to override your actual %s " -"files and that it's recommended to conduct a backup before continuing the " -"updating process." +"Please keep in mind that this package is going to override your actual %s files " +"and that it's recommended to conduct a backup before continuing the updating " +"process." msgstr "" -"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバッ" -"クアップを取ることをお勧めします。" +"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバック" +"アップを取ることをお勧めします。" #: ../../update_manager_client/views/offline.php:69 msgid "Click on the file below to begin." @@ -32763,8 +32504,8 @@ msgid "" "This update does not correspond with next version of %s. Are you sure you want " "to install it?" msgstr "" -"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしい" -"ですか?" +"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいで" +"すか?" #: ../../update_manager_client/views/offline.php:82 msgid "" @@ -32777,12 +32518,12 @@ msgstr "" #: ../../update_manager_client/views/offline.php:83 msgid "" "File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " -"numbers with decimals." +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers " +"with decimals." msgstr "" "ファイル名が所定の形式と一致しません: package_数字.oum または " -"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含む" -"ことがあります。" +"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むこ" +"とがあります。" #: ../../update_manager_client/views/offline.php:84 msgid "Files included in this package" @@ -32800,11 +32541,10 @@ msgstr "パッケージの署名を確認" #, php-format msgid "" "Copy into the textarea the signature validation token you can retrieve from %s " -"and press OK to verify the package, press ignore to avoid signature " -"verification" +"and press OK to verify the package, press ignore to avoid signature verification" msgstr "" -"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケー" -"ジを確認します。'無視する' を押すと署名の確認を回避します。" +"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージ" +"を確認します。'無視する' を押すと署名の確認を回避します。" #: ../../update_manager_client/views/offline.php:88 msgid "" @@ -32812,9 +32552,9 @@ msgid "" "going to be installed unless patches are allowed. Please enable patches in " "update manager settings." msgstr "" -"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ" -"適用が許可されていない限りインストールされません。 アップデートマネージャの設定" -"でパッチを有効にしてください。" +"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適" +"用が許可されていない限りインストールされません。 アップデートマネージャの設定で" +"パッチを有効にしてください。" #: ../../update_manager_client/views/offline.php:89 #, php-format @@ -32823,9 +32563,9 @@ msgid "" "installed unless patches are allowed. Please enable patches in update manager " "settings." msgstr "" -"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されて" -"いない限りインストールされません。 アップデートマネージャの設定でパッチを有効に" -"してください。" +"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されてい" +"ない限りインストールされません。 アップデートマネージャの設定でパッチを有効にして" +"ください。" #: ../../update_manager_client/views/register.php:47 msgid "Register to Warp Update" @@ -32849,8 +32589,8 @@ msgstr "" "%s ワープアップデートサーバを購読すると、\n" " %s インスタンスを %s が所有するデータベースの識別子として登録しま" "す。 このデータは、\n" -" %s に関する情報提供のために利用され、第三者に提供されることはありま" -"せん。 登録は\n" +" %s に関する情報提供のために利用され、第三者に提供されることはありませ" +"ん。 登録は\n" " ワープアップデートオプションからいつでも解除できます。" #: ../../update_manager_client/views/register.php:74 @@ -33029,8 +32769,7 @@ msgstr "Matrix イベント" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 msgid "WebService engine has not been started, please check documentation." -msgstr "" -"ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" +msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" #: ../../extensions/quick_shell.php:153 msgid "Retry" @@ -33051,8 +32790,7 @@ msgstr "SSH または Telnet を利用してください。" #: ../../extensions/quick_shell.php:273 msgid "WebService engine is not working properly, please check documentation." msgstr "" -"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してくださ" -"い。" +"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" #: ../../extensions/quick_shell.php:432 #, php-format @@ -33143,8 +32881,8 @@ msgstr "レポート '%s' でエラーです。指定の名前はすでに使わ #, php-format msgid "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" -"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は " -"%s です。" +"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s " +"です。" #: ../../extensions/resource_registration.php:114 msgid "Error the report haven't name." @@ -33193,11 +32931,10 @@ msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前が #: ../../extensions/resource_registration.php:521 #, php-format -msgid "" -"Warning create '%s' visual map, the name exist, the report have a name %s." +msgid "Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "" -"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s " -"です。" +"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s で" +"す。" #: ../../extensions/resource_registration.php:533 #, php-format @@ -33268,8 +33005,7 @@ msgstr "リソース" #: ../../extensions/resource_registration.php:1112 #, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to create a policy." +msgid "This node is configured with centralized mode. Go to %s to create a policy." msgstr "" "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" @@ -33284,8 +33020,8 @@ msgstr "ここに、.ptr フォーマットでリソーステンプレートを #: ../../extensions/resource_registration.php:1121 #, php-format msgid "" -"Please refer to our documentation for more information on how to obtain and " -"use %s resources." +"Please refer to our documentation for more information on how to obtain and use " +"%s resources." msgstr "" "%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してくださ" "い。" @@ -33295,8 +33031,8 @@ msgid "" "You can get more resurces in our Public Resource Library" msgstr "" -"公開リソースライブラリか" -"ら追加のリソースを入手できます。" +"公開リソースライブラリから" +"追加のリソースを入手できます。" #: ../../extensions/resource_registration.php:1131 msgid "File to upload" @@ -33316,11 +33052,9 @@ msgstr "API チェッカ" msgid "%s Console URL" msgstr "%s コンソールURL" -#: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 +#: ../../extensions/api_checker.php:243 ../../godmode/users/configure_user.php:1006 #: ../../godmode/users/configure_user.php:1029 -#: ../../operation/users/user_edit.php:299 -#: ../../operation/users/user_edit.php:338 +#: ../../operation/users/user_edit.php:299 ../../operation/users/user_edit.php:338 msgid "API Token" msgstr "API トークン" @@ -33391,9 +33125,8 @@ msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." msgstr "" -"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーション" -"でテーブルのフィールドが不足していたりデータが変更されていなかったりするためで" -"す。" +"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションで" +"テーブルのフィールドが不足していたりデータが変更されていなかったりするためです。" #: ../../extensions/db_status.php:56 msgid "At the moment the checks is for MySQL/MariaDB." @@ -33515,8 +33248,8 @@ msgid "" "Warning, you are accessing the database directly. You can leave the system " "inoperative if you run an inappropriate SQL statement" msgstr "" -"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行す" -"ると、システムが動作しなくなる可能性があります" +"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行する" +"と、システムが動作しなくなる可能性があります" #: ../../extensions/dbmanager.php:137 #, php-format @@ -33528,16 +33261,15 @@ msgid "" " if you don't know
exactly what are you are doing,\n" " this means that you can severily damage your setup using this " "extension.\n" -" This extension is intended to be used only by experienced " -"users\n" +" This extension is intended to be used only by experienced users\n" " with a depth knowledge of %s internals." msgstr "" "これは、WEB コンソールから %s データベースと直接接続するための高度な拡張機能で" "す。\n" "\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n" "\t\t破壊する可能性があることに注意してください。\n" -"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性がありま" -"す。\n" +"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性があります。\n" "\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n" "\t\t利用いただくことを想定しています。" @@ -33579,8 +33311,7 @@ msgstr "モジュールの値表示" msgid "Information to be shown" msgstr "表示情報" -#: ../../extensions/agents_modules.php:543 -#: ../../include/functions_reports.php:807 +#: ../../extensions/agents_modules.php:543 ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "エージェント/モジュール" @@ -33669,8 +33400,8 @@ msgstr "コンソールで %s ログファイルを直接参照するために #: ../../extensions/pandora_logs.php:110 msgid "" -"You can choose the amount of information shown in general setup (Log size " -"limit in system logs viewer extension), " +"You can choose the amount of information shown in general setup (Log size limit " +"in system logs viewer extension), " msgstr "" "一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できま" "す。 " @@ -33771,41 +33502,40 @@ msgid "Search by module group" msgstr "モジュールグループでの検索" #: ../../extensions/module_groups.php:455 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." +msgid "Orange cell when the module group and agent have at least one alarm fired." msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが" -"発生している時にオレンジになります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発" +"生している時にオレンジになります。" #: ../../extensions/module_groups.php:456 msgid "" "Red cell when the module group and agent have at least one module in critical " "status and the others in any status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の" -"時に赤になります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時" +"に赤になります。" #: ../../extensions/module_groups.php:457 msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" +"Yellow cell when the module group and agent have at least one in warning status " +"and the others in grey or green status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態" -"で、その他のモジュールが不明か正常状態の時にに黄色なります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、" +"その他のモジュールが不明か正常状態の時にに黄色なります。" #: ../../extensions/module_groups.php:458 msgid "" "Grey cell when the module group and agent have at least one in unknown status " "and the others in green status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態" -"で、その他のモジュールが正常状態の時にグレーになります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、" +"その他のモジュールが正常状態の時にグレーになります。" #: ../../extensions/module_groups.php:459 msgid "Green cell when the module group and agent have all modules in OK status" msgstr "" -"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑にな" -"ります。" +"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になり" +"ます。" #: ../../extensions/module_groups.php:460 msgid "" @@ -33814,8 +33544,8 @@ msgstr "青のセルは、全モジュールが未初期化状態であること #: ../../extensions/module_groups.php:466 msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" +"This table shows in columns the modules group and in rows agents group. The cell " +"shows all modules" msgstr "" "列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モ" "ジュールの状態を表示しています。" @@ -33854,8 +33584,7 @@ msgstr "エージェント(%s)、モジュール(%s) のデータを保存でき msgid "Save agent (%s), module (%s) data xml." msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。" -#: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:295 msgid "Realtime graphs" msgstr "リアルタイムグラフ" @@ -33922,8 +33651,7 @@ msgstr "接続ユーザ一覧" msgid "Workspace" msgstr "ワークスペース" -#: ../../extensions/users_connected.php:68 -#: ../../extensions/users_connected.php:243 +#: ../../extensions/users_connected.php:68 ../../extensions/users_connected.php:243 msgid "Users connected" msgstr "接続ユーザ" @@ -34011,8 +33739,8 @@ msgid "" "This node is configured with centralized mode. Component groups are read only. " "Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り" -"専用です。管理は %s にて行います。" +"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専" +"用です。管理は %s にて行います。" #: ../../godmode/modules/manage_nc_groups.php:334 msgid "There are no defined component groups" @@ -34111,8 +33839,8 @@ msgid "" "This node is configured with centralized mode. All remote components are read " "only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは" -"読み取り専用です。 それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読" +"み取り専用です。 それらを管理するには、%s に移動します。" #: ../../godmode/modules/manage_network_components.php:433 msgid "Could not be created because the component exists" @@ -34387,9 +34115,9 @@ msgid "" "maintenance daemon is running. It's very important to keep your database up to " "date in order to get the best performance and results from %s." msgstr "" -"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されて" -"いることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データ" -"ベースを最新の状態に保つことが非常に重要です。" +"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されてい" +"ることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベー" +"スを最新の状態に保つことが非常に重要です。" #: ../../godmode/groups/configure_group.php:95 msgid "Update group" @@ -34472,8 +34200,8 @@ msgid "" "This node is configured with centralized mode. All groups information is read " "only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専" -"用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用" +"です。管理するには %s に移動します。" #: ../../godmode/groups/group_list.php:465 #: ../../godmode/groups/modu_group_list.php:129 @@ -34485,13 +34213,11 @@ msgstr "グループを作成しました。" msgid "There was a problem creating group" msgstr "グループの作成に失敗しました。" -#: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:470 ../../godmode/groups/group_list.php:542 msgid "Each group must have a different name" msgstr "各グループは異なる名前でなければいけません" -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:473 ../../godmode/groups/group_list.php:545 msgid "Group must have a name" msgstr "グループには名前が必要です" @@ -34537,8 +34263,7 @@ msgstr "グループの削除に失敗しました。" msgid "The group is not empty. It is use in %s." msgstr "グループが空ではありません。%s で利用されています。" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:774 ../../godmode/groups/group_list.php:994 msgid "There are no defined groups" msgstr "グループが定義されていません" @@ -34551,8 +34276,7 @@ msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "よろしいですか? このグループはすべてのノードで削除されます。" #: ../../godmode/groups/group_list.php:964 -msgid "" -"The child groups will be updated to use the parent id of the deleted group" +msgid "The child groups will be updated to use the parent id of the deleted group" msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます" #: ../../godmode/groups/configure_modu_group.php:30 @@ -34570,11 +34294,11 @@ msgstr "モジュールグループ一覧" #: ../../godmode/groups/modu_group_list.php:102 #, php-format msgid "" -"This node is configured with centralized mode. All module groups information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All module groups information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../godmode/groups/modu_group_list.php:137 #: ../../godmode/groups/modu_group_list.php:173 @@ -34716,11 +34440,11 @@ msgstr "%s コミュニティリマインダ" #: ../../godmode/update_manager/update_manager.setup.php:393 #, php-format msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this %s instance" +"Every 8 days, a message is displayed to admin users to remember to register this " +"%s instance" msgstr "" -"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに" -"表示します。" +"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに表" +"示します。" #: ../../godmode/update_manager/update_manager.history.php:42 msgid "Origin" @@ -34759,19 +34483,18 @@ msgstr "ユーザプロファイル管理" #: ../../godmode/users/profile_list.php:96 #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 -#: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/user_list.php:301 ../../godmode/users/configure_user.php:280 msgid "Manage users" msgstr "ユーザ管理" #: ../../godmode/users/profile_list.php:124 #, php-format msgid "" -"This node is configured with centralized mode. All profiles information is " -"read only. Go to %s to manage it." +"This node is configured with centralized mode. All profiles information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取" -"り専用です。管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り" +"専用です。管理には %s に移動します。" #: ../../godmode/users/profile_list.php:136 ../../godmode/users/user_list.php:412 msgid "There was a problem deleting the profile" @@ -34992,8 +34715,7 @@ msgstr "%s 管理" msgid "Profile name already on use, please, change the name before save" msgstr "プロファイルが既に存在します。保存する前に名前を変更してください。" -#: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/user_list.php:351 ../../godmode/users/configure_user.php:115 #, php-format msgid "Deleted user %s" msgstr "ユーザ %s を削除しました" @@ -35003,26 +34725,22 @@ msgstr "ユーザ %s を削除しました" msgid "There was a problem deleting the user" msgstr "ユーザの削除に失敗しました。" -#: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/user_list.php:376 ../../godmode/users/configure_user.php:137 #, php-format msgid "Deleted user %s from metaconsole" msgstr "メタコンソールから、ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/user_list.php:388 ../../godmode/users/configure_user.php:149 #, php-format msgid "Deleted user %s from %s" msgstr "ユーザ %s を %s から削除しました" -#: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/user_list.php:394 ../../godmode/users/configure_user.php:158 #, php-format msgid "Successfully deleted from %s" msgstr "%s から削除しました" -#: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/user_list.php:395 ../../godmode/users/configure_user.php:159 #, php-format msgid "There was a problem deleting the user from %s" msgstr "%s からのユーザ削除で問題が発生しました" @@ -35045,8 +34763,8 @@ msgid "" "This node is configured with centralized mode. All users information is read " "only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用" -"です。管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用で" +"す。管理には %s に移動します。" #: ../../godmode/users/user_list.php:580 msgid "Profile / Group" @@ -35069,11 +34787,10 @@ msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." msgstr "" -"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示" -"されていません。このユーザを有効/無効または削除することはできません。" +"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示さ" +"れていません。このユーザを有効/無効または削除することはできません。" -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 +#: ../../godmode/users/user_list.php:823 ../../include/functions_reporting.php:5140 #: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" @@ -35148,8 +34865,7 @@ msgstr "プロファイルの追加に失敗しました。" #: ../../godmode/users/configure_user.php:852 #: ../../godmode/users/configure_user.php:859 #: ../../godmode/users/configure_user.php:891 -#: ../../operation/users/user_edit.php:216 -#: ../../operation/users/user_edit.php:262 +#: ../../operation/users/user_edit.php:216 ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "ユーザ情報を更新しました。" @@ -35179,15 +34895,14 @@ msgid "You have generated a new API Token." msgstr "新たな API トークンを生成しました。" #: ../../godmode/users/configure_user.php:881 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." +msgid "Strict ACL is not recommended for this user. Performance could be affected." msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" #: ../../godmode/users/configure_user.php:1014 #: ../../operation/users/user_edit.php:306 msgid "" -"The API token will be renewed. After this action, the last token you were " -"using will not work. Are you sure?" +"The API token will be renewed. After this action, the last token you were using " +"will not work. Are you sure?" msgstr "" "API トークンが更新されます。 これの実行後は以前のトークンは利用できなくなりま" "す。 よろしいですか?" @@ -35258,8 +34973,8 @@ msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." msgstr "" -"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る" -"必要があります。* はすべてを許可します。" +"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る必" +"要があります。* はすべてを許可します。" #: ../../godmode/users/configure_user.php:1269 msgid "Skin" @@ -35293,9 +35008,8 @@ msgid "" "ver_agente&id_agente=1 to show agent detail view" msgstr "" "ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳" -"細' が表示されます。 例: 'その他' を選択し、index.php?" -"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 と入力すると、エージェ" -"ントの詳細を表示します。" +"細' が表示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/" +"agentes/ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。" #: ../../godmode/users/configure_user.php:1410 msgid "Metaconsole access" @@ -35338,8 +35052,7 @@ msgstr "ノードアクセスを有効にする" #: ../../godmode/users/configure_user.php:1617 msgid "With this option enabled, the user will can access to nodes console" -msgstr "" -"このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" +msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" #: ../../godmode/users/configure_user.php:1849 msgid "yes" @@ -35364,11 +35077,11 @@ msgstr "最後のプロファイルを削除すると、このユーザが削除 #: ../../godmode/users/configure_user.php:1975 msgid "" -"User will be created without profiles assigned and won't be able to log in, " -"are you sure?" +"User will be created without profiles assigned and won't be able to log in, are " +"you sure?" msgstr "" -"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなり" -"ます。よろしいですか?" +"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなりま" +"す。よろしいですか?" #: ../../godmode/users/configure_user.php:2082 #: ../../operation/users/user_edit.php:1256 @@ -35443,8 +35156,7 @@ msgstr "ローカルユーザ" #: ../../godmode/users/user_management.php:372 msgid "" -"The user with local authentication enabled will always use local " -"authentication." +"The user with local authentication enabled will always use local authentication." msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" #: ../../godmode/users/user_management.php:384 @@ -35453,8 +35165,8 @@ msgstr "セッション時間" #: ../../godmode/users/user_management.php:394 msgid "" -"This is defined in minutes, If you wish a permanent session should putting -1 " -"in this field." +"This is defined in minutes, If you wish a permanent session should putting -1 in " +"this field." msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" #: ../../godmode/users/user_management.php:399 @@ -35478,8 +35190,7 @@ msgstr "自動更新ページ" #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 #: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../operation/users/user_edit.php:690 ../../operation/users/user_edit.php:691 msgid "Push selected pages into autorefresh list" msgstr "選択したページを自動更新にする" @@ -35488,8 +35199,7 @@ msgstr "選択したページを自動更新にする" #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 #: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../operation/users/user_edit.php:699 ../../operation/users/user_edit.php:700 msgid "Pop selected pages out of autorefresh list" msgstr "選択したページを自動更新から外す" @@ -35505,11 +35215,11 @@ msgstr "自動更新時間" #: ../../godmode/massive/massive_edit_users.php:454 #: ../../operation/users/user_edit.php:716 msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" +"Interval of autorefresh of the elements, by default they are 30 seconds, needing " +"to enable the autorefresh first" msgstr "" -"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要" -"があります。" +"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要が" +"あります。" #: ../../godmode/users/user_management.php:554 msgid "Language and Appearance" @@ -35585,11 +35295,11 @@ msgstr "オプション。WMI 名前空間。不明な場合は空白のまま #: ../../godmode/agentes/module_manager_editor_wmi.php:193 msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 " -"if found, 0 if not." +"Optional. Substring to look for in the WQL query result. The module returns 1 if " +"found, 0 if not." msgstr "" -"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は " -"1 を返し、見つからない場合は 0 を返します。" +"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 " +"を返し、見つからない場合は 0 を返します。" #: ../../godmode/agentes/module_manager_editor_wmi.php:217 msgid "Column number to retrieve from the WQL query result (starting from zero)." @@ -35771,8 +35481,8 @@ msgstr "エージェントのロードに失敗しました。" #: ../../godmode/agentes/configurar_agente.php:1736 msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." +"There was a problem updating module. Another module already exists with the same " +"name." msgstr "" "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" @@ -35780,8 +35490,7 @@ msgstr "" msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" -"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名" -"前)" +"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:1744 msgid "There was a problem updating module. \"No change\"" @@ -35803,11 +35512,9 @@ msgstr "" "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" #: ../../godmode/agentes/configurar_agente.php:1917 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" +msgid "There was a problem adding module. Some required fields are missed : (name)" msgstr "" -"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名" -"前)" +"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:1923 msgid "There was a problem adding module. Processing error" @@ -35916,8 +35623,7 @@ msgstr "ファイル入力要素がみつかりません。" #: ../../godmode/agentes/module_manager_editor.php:989 msgid "This browser doesn`t seem to support the files property of file inputs." msgstr "" -"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていませ" -"ん。" +"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" #: ../../godmode/agentes/module_manager_editor.php:990 msgid "Please select a file before clicking Load" @@ -35943,11 +35649,10 @@ msgstr "%s で定義されたエージェント" #: ../../godmode/agentes/modificar_agente.php:125 #, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to delete an agent" +msgid "This node is configured with centralized mode. Go to %s to delete an agent" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に" -"移動します" +"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移" +"動します" #: ../../godmode/agentes/modificar_agente.php:170 msgid "Success deleted agent." @@ -36036,8 +35741,8 @@ msgid "" "There is no GIS data for this agent, so it's positioned in default position of " "map." msgstr "" -"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に" -"配置します。" +"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配" +"置します。" #: ../../godmode/agentes/agent_conf_gis.php:58 msgid "" @@ -36184,8 +35889,8 @@ msgid "" "Not created. Error inserting data. Start time must be higher than the current " "time" msgstr "" -"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなけれ" -"ばいけません。" +"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければ" +"いけません。" #: ../../godmode/agentes/planned_downtime.editor.php:266 #: ../../godmode/agentes/planned_downtime.editor.php:270 @@ -36405,8 +36110,8 @@ msgstr "モジュールを選択してください。" #: ../../godmode/agentes/planned_downtime.editor.php:2046 msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports " -"may be altered" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports may " +"be altered" msgstr "" "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" @@ -36453,8 +36158,7 @@ msgstr "前面に表示" #: ../../godmode/agentes/configure_field.php:128 #: ../../operation/agentes/custom_fields.php:67 msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" +"The fields with display on front enabled will be displayed into the agent details" msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" #: ../../godmode/agentes/fields_manager.php:228 @@ -36475,8 +36179,8 @@ msgid "" msgstr "" "必要であれば、シングルクォーテーションを使ってください。\n" "\n" -"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープし" -"てください。" +"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープして" +"ください。" #: ../../godmode/agentes/module_manager_editor_network.php:536 msgid "Windows remote" @@ -36493,8 +36197,7 @@ msgid "Use alias as name" msgstr "名前に別名を利用" #: ../../godmode/agentes/agent_manager.php:407 -#: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../godmode/setup/setup_general.php:649 ../../include/functions_config.php:390 msgid "Unique IP" msgstr "ユニーク IP" @@ -36586,11 +36289,11 @@ msgstr "セカンダリグループはプライマリにできません。" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 #: ../../operation/incidents/list_integriaims_incidents.php:44 msgid "" -"In order to access ticket management system, integration with Integria IMS " -"must be enabled and properly configured" +"In order to access ticket management system, integration with Integria IMS must " +"be enabled and properly configured" msgstr "" -"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正" -"しく設定されている必要があります" +"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正し" +"く設定されている必要があります" #: ../../godmode/agentes/agent_incidents.php:65 msgid "No incidents associated to this agent" @@ -36620,16 +36323,16 @@ msgid "" "You cannot set the Password type until you clear the combo values and click on " "update button." msgstr "" -"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定するこ" -"とはできません。" +"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定すること" +"はできません。" #: ../../godmode/agentes/configure_field.php:93 msgid "" -"You cannot unset the enable combo until you clear the combo values and click " -"on update." +"You cannot unset the enable combo until you clear the combo values and click on " +"update." msgstr "" -"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできま" -"せん。" +"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできませ" +"ん。" #: ../../godmode/agentes/configure_field.php:97 msgid "If you select Enabled combo the Password type will be disabled." @@ -36649,8 +36352,8 @@ msgstr "パスタイプ" #: ../../godmode/agentes/configure_field.php:154 msgid "" -"The fields with pass type enabled will be displayed like html input type pass " -"in html" +"The fields with pass type enabled will be displayed like html input type pass in " +"html" msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" #: ../../godmode/agentes/configure_field.php:166 @@ -36791,8 +36494,8 @@ msgid "S" msgstr "S" #: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:844 ../../include/ajax/module.php:1064 +#: ../../include/ajax/module.php:1072 msgid "Adopted" msgstr "適用" @@ -36874,8 +36577,7 @@ msgstr "フィルタ管理" msgid "Netflow filters" msgstr "Netflow フィルタ" -#: ../../godmode/netflow/nf_edit.php:225 -#: ../../godmode/events/event_filter.php:224 +#: ../../godmode/netflow/nf_edit.php:225 ../../godmode/events/event_filter.php:224 msgid "There are no defined filters" msgstr "定義済のフィルタがありません" @@ -36923,12 +36625,11 @@ msgstr "宛先 IP" #: ../../godmode/netflow/nf_edit_form.php:286 #: ../../operation/netflow/nf_live_view.php:294 msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the " -"field blank, will show all ip. Example filter by ip:" -"
25.46.157.214,160.253.135.249" +"Destination IP. A comma separated list of destination ip. If we leave the field " +"blank, will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" msgstr "" -"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によ" -"るフィルタ例:
25.46.157.214,160.253.135.249" +"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP による" +"フィルタ例:
25.46.157.214,160.253.135.249" #: ../../godmode/netflow/nf_edit_form.php:290 #: ../../operation/netflow/nf_live_view.php:302 @@ -36941,8 +36642,8 @@ msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" msgstr "" -"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IP" -"によるフィルタ例:
25.46.157.214,160.253.135.249" +"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPに" +"よるフィルタ例:
25.46.157.214,160.253.135.249" #: ../../godmode/netflow/nf_edit_form.php:310 #: ../../operation/netflow/nf_live_view.php:313 @@ -36950,8 +36651,8 @@ msgid "" "Destination port. A comma separated list of destination ports. If we leave the " "field blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" -"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。" -"ポート 80 および 22 のフィルタ例:
80,22" +"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポー" +"ト 80 および 22 のフィルタ例:
80,22" #: ../../godmode/netflow/nf_edit_form.php:322 #: ../../operation/netflow/nf_live_view.php:321 @@ -37109,7 +36810,7 @@ msgstr "SNMPアラートID" #: ../../godmode/snmpconsole/snmp_alert.php:2225 msgid "Do you want delete this alert?" -msgstr "このエージェントを削除しますか?" +msgstr "このアラートを削除しますか?" #: ../../godmode/snmpconsole/snmp_alert.php:2240 msgid "Do you want delete the selected alerts?" @@ -37598,15 +37299,15 @@ msgid "" "No changes have been made because they exceed the maximum allowed (%d). Make " "fewer changes or contact the administrator." msgstr "" -"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理" -"者に連絡してください。" +"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者" +"に連絡してください。" #: ../../godmode/massive/massive_operations.php:440 #, php-format msgid "This node is configured with centralized mode. To delete agents go to %s" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s " -"に移動します" +"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に" +"移動します" #: ../../godmode/massive/massive_operations.php:448 msgid "The blank fields will not be updated" @@ -37739,11 +37440,11 @@ msgstr "エージェントを先に選択してください" #: ../../godmode/massive/massive_add_profiles.php:52 #, php-format msgid "" -"This node is configured with centralized mode. All profiles user information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All profiles user information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報" -"は読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は" +"読み取り専用です。管理するには %s に移動します。" #: ../../godmode/massive/massive_edit_users.php:153 #, php-format @@ -37791,8 +37492,8 @@ msgid "" "There was an error deleting the agent, the operation has been cancelled Could " "not delete agent %s" msgstr "" -"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェ" -"ント %s は削除できません。" +"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェン" +"ト %s は削除できません。" #: ../../godmode/massive/massive_delete_agents.php:132 #, php-format @@ -38019,8 +37720,8 @@ msgid "" "config.php in each individual console and wait for cron to run in order to be " "registered." msgstr "" -"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを" -"定義し、登録のための cron が実行されるまで待つ必要があります。" +"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを定" +"義し、登録のための cron が実行されるまで待つ必要があります。" #: ../../godmode/alerts/configure_alert_command.php:67 msgid "Configure alert command" @@ -38030,11 +37731,11 @@ msgstr "コマンドの作成" #: ../../godmode/alerts/alert_commands.php:737 #, php-format msgid "" -"This node is configured with centralized mode. All alert commands information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert commands information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読" -"み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み" +"取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/configure_alert_command.php:304 #, php-format @@ -38063,11 +37764,11 @@ msgstr "アクション" #: ../../godmode/alerts/configure_alert_action.php:132 #, php-format msgid "" -"This node is configured with centralized mode. All alert actions information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert actions information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/alert_actions.php:421 msgid "" @@ -38077,11 +37778,11 @@ msgstr "" #: ../../godmode/alerts/alert_actions.php:432 msgid "" -"The action and the command associated with it do not have the same group. " -"Please contact an administrator to fix it." +"The action and the command associated with it do not have the same group. Please " +"contact an administrator to fix it." msgstr "" -"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連" -"絡して修正してください。" +"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡" +"して修正してください。" #: ../../godmode/alerts/alert_actions.php:496 msgid "No alert actions configured" @@ -38131,8 +37832,8 @@ msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
"
 msgstr ""
-"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキ"
-"ストを使いたい場合は、ラベル 
 の間に入力してください。"
+"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキス"
+"トを使いたい場合は、ラベル 
 の間に入力してください。"
 
 #: ../../godmode/alerts/alert_commands.php:221
 #: ../../godmode/alerts/alert_commands.php:252
@@ -38158,8 +37859,8 @@ msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
 msgstr ""
-"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられた"
-"ユーザに制限されています"
+"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユー"
+"ザに制限されています"
 
 #: ../../godmode/alerts/alert_commands.php:590
 msgid "Alert commands"
@@ -38189,16 +37890,16 @@ msgid ""
 "This node is configured with centralized mode. All alert templates information "
 "is read only. Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。管理するには %s に移動します。"
 
 #: ../../godmode/alerts/alert_templates.php:438
 msgid ""
 "You cannot edit this alert template, You don't have the permission to edit All "
 "group."
 msgstr ""
-"このアラートテンプレートを編集することはできません。'全て' グループを編集する権"
-"限がありません。"
+"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限"
+"がありません。"
 
 #: ../../godmode/alerts/alert_templates.php:505
 msgid "No alert templates defined"
@@ -38226,8 +37927,8 @@ msgid "Recovery"
 msgstr "復旧通知"
 
 #: ../../godmode/alerts/configure_alert_action.php:330
-#: ../../godmode/alerts/alert_view.php:533
-#: ../../godmode/alerts/alert_view.php:660 ../../godmode/servers/plugin.php:513
+#: ../../godmode/alerts/alert_view.php:533 ../../godmode/alerts/alert_view.php:660
+#: ../../godmode/servers/plugin.php:513
 msgid "Command preview"
 msgstr "実行されるコマンドのプレビュー"
 
@@ -38240,8 +37941,8 @@ msgid ""
 "If closed status is set on recovery, a workunit will be added to the ticket in "
 "Integria IMS rather that closing the ticket."
 msgstr ""
-"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットを"
-"クローズするのではなく、Integria IMS のチケットに追加されます。"
+"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをク"
+"ローズするのではなく、Integria IMS のチケットに追加されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:104
 #: ../../godmode/alerts/configure_alert_template.php:135
@@ -38263,11 +37964,11 @@ msgstr "拡張フィールド"
 #: ../../godmode/alerts/configure_alert_template.php:436
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All alerts templates "
-"information is read only. Go to Go to %s to manage it."
+"This node is configured with centralized mode. All alerts templates information "
+"is read only. Go to Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。 管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。 管理するには、%s に移動します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:548
 msgid "No template name specified"
@@ -38275,11 +37976,11 @@ msgstr "テンプレート名が指定されていません"
 
 #: ../../godmode/alerts/configure_alert_template.php:722
 msgid ""
-"Unless they're left blank, the fields from the action will override those set "
-"on the template."
+"Unless they're left blank, the fields from the action will override those set on "
+"the template."
 msgstr ""
-"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が"
-"優先されます。"
+"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優"
+"先されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:767
 msgid "Reset counter for non-sustained alerts"
@@ -38290,8 +37991,8 @@ msgid ""
 "Enable this option if you want the counter to be reset when the alert is not "
 "being fired consecutively, even if it's within the time threshold"
 msgstr ""
-"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタ"
-"をリセットしたい場合にこのオプションを有効化します。"
+"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタを"
+"リセットしたい場合にこのオプションを有効化します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:818
 msgid "Condition type"
@@ -38354,8 +38055,8 @@ msgid ""
 "The alert would fire when the value is not between  and "
 ""
 msgstr ""
-"値が  の間にない場合、アラートが発"
-"生します。"
+"値が  の間にない場合、アラートが発生"
+"します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1272
 #: ../../godmode/alerts/alert_view.php:206
@@ -38406,8 +38107,8 @@ msgid ""
 "The alert would fire when the module is in unknown status. Warning: "
 "unknown_updates of pandora_server.conf must be equal to 1"
 msgstr ""
-"モジュールのステータスが不明の場合、アラートが発生します。 警告: "
-"pandora_server.conf の unknown_updates を 1 にする必要があります"
+"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server."
+"conf の unknown_updates を 1 にする必要があります"
 
 #: ../../godmode/alerts/alert_view.php:89 ../../godmode/alerts/alert_view.php:90
 #: ../../godmode/alerts/alert_list.php:487
@@ -38424,13 +38125,13 @@ msgstr "スタンバイ"
 msgid ""
 "The alert would fire when the value doesn't match "
 msgstr ""
-"取得した値が  にマッチしない場合、アラートを発生させ"
-"ます。"
+"取得した値が  にマッチしない場合、アラートを発生させま"
+"す。"
 
 #: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
 msgid ""
-"The alert would fire when the value is not between  "
-"and "
+"The alert would fire when the value is not between  and "
+""
 msgstr ""
 "取得した値が  の間を外れた"
 "ら、アラートを発生させます。"
@@ -38439,8 +38140,7 @@ msgstr ""
 msgid "Firing conditions"
 msgstr "発報条件"
 
-#: ../../godmode/alerts/alert_view.php:311
-#: ../../godmode/alerts/alert_view.php:345
+#: ../../godmode/alerts/alert_view.php:311 ../../godmode/alerts/alert_view.php:345
 msgid "Every time that the alert is fired"
 msgstr "アラート発生のたび"
 
@@ -38449,8 +38149,8 @@ msgid ""
 "Select the desired action and mode to see the Firing/Recovery fields for this "
 "action"
 msgstr ""
-"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを"
-"選択してください。"
+"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選"
+"択してください。"
 
 #: ../../godmode/alerts/alert_view.php:452
 msgid "Template fields"
@@ -38470,8 +38170,7 @@ msgstr "復旧フィールド"
 
 #: ../../godmode/alerts/alert_view.php:566
 msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
+"Fields passed to the command executed by this action when the alert is recovered"
 msgstr ""
 "アラートが復旧したときに、このアクションによって実行されるコマンドに渡される"
 "フィールド"
@@ -38605,8 +38304,8 @@ msgid ""
 "This key is used to encrypt your Pandora FMS license when it is shared with "
 "other Pandora FMS components"
 msgstr ""
-"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセン"
-"スを暗号化するために使用されます。"
+"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセンス"
+"を暗号化するために使用されます。"
 
 #: ../../godmode/setup/license.php:317 ../../godmode/setup/license.php:345
 msgid "Request new license"
@@ -38628,8 +38327,7 @@ msgstr "auth key と次の  request key を入力してくださ
 
 #: ../../godmode/setup/license.php:361
 msgid "Enter your name (or a company name) and a contact email address."
-msgstr ""
-"あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
+msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
 
 #: ../../godmode/setup/license.php:364
 msgid "Click on Generate."
@@ -38640,8 +38338,8 @@ msgid ""
 "Click here, enter the "
 "generated license key and click on Validate."
 msgstr ""
-"ここをクリックし、生成"
-"されたライセンスキーを入力し有効化をクリックします。"
+"ここをクリックし、生成さ"
+"れたライセンスキーを入力し有効化をクリックします。"
 
 #: ../../godmode/setup/news.php:30
 msgid "Site news management"
@@ -38724,8 +38422,7 @@ msgstr "パスワードポリシー"
 msgid "Correct update the setup options"
 msgstr "設定オプションを更新しました"
 
-#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../godmode/setup/setup_ehorus.php:67 ../../include/functions_config.php:1812
 msgid "Enable eHorus"
 msgstr "eHorus の有効化"
 
@@ -38764,8 +38461,7 @@ msgstr "eHorus には独自のエージェント識別があります"
 
 #: ../../godmode/setup/setup_ehorus.php:188
 msgid "To store them, it will be necessary to use an agent custom field"
-msgstr ""
-"それを保存するために、エージェントのカスタムフィールドを使う必要があります"
+msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります"
 
 #: ../../godmode/setup/setup_ehorus.php:189
 msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
@@ -38808,43 +38504,32 @@ msgstr "ユーザが見つかりません"
 msgid "Invalid password"
 msgstr "パスワードが正しくありません"
 
-#: ../../godmode/setup/setup_sflow.php:45
-#: ../../godmode/setup/setup_netflow.php:45
+#: ../../godmode/setup/setup_sflow.php:45 ../../godmode/setup/setup_netflow.php:45
 msgid "Data storage path"
 msgstr "データストアのパス"
 
-#: ../../godmode/setup/setup_sflow.php:50
-#: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1540
-#: ../../include/functions_config.php:1583
+#: ../../godmode/setup/setup_sflow.php:50 ../../godmode/setup/setup_netflow.php:50
+#: ../../include/functions_config.php:1540 ../../include/functions_config.php:1583
 msgid "Daemon interval"
 msgstr "デーモン間隔"
 
-#: ../../godmode/setup/setup_sflow.php:55
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1544
-#: ../../include/functions_config.php:1587
+#: ../../godmode/setup/setup_sflow.php:55 ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1544 ../../include/functions_config.php:1587
 msgid "Daemon binary path"
 msgstr "デーモンのバイナリパス"
 
-#: ../../godmode/setup/setup_sflow.php:60
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1548
-#: ../../include/functions_config.php:1591
+#: ../../godmode/setup/setup_sflow.php:60 ../../godmode/setup/setup_netflow.php:60
+#: ../../include/functions_config.php:1548 ../../include/functions_config.php:1591
 msgid "Nfdump binary path"
 msgstr "nfdump バイナリのパス"
 
-#: ../../godmode/setup/setup_sflow.php:65
-#: ../../godmode/setup/setup_netflow.php:65
-#: ../../include/functions_config.php:1552
-#: ../../include/functions_config.php:1595
+#: ../../godmode/setup/setup_sflow.php:65 ../../godmode/setup/setup_netflow.php:65
+#: ../../include/functions_config.php:1552 ../../include/functions_config.php:1595
 msgid "Nfexpire binary path"
 msgstr "nfexpire バイナリのパス"
 
-#: ../../godmode/setup/setup_sflow.php:70
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1556
-#: ../../include/functions_config.php:1599
+#: ../../godmode/setup/setup_sflow.php:70 ../../godmode/setup/setup_netflow.php:70
+#: ../../include/functions_config.php:1556 ../../include/functions_config.php:1599
 msgid "Maximum chart resolution"
 msgstr "最大グラフ解像度"
 
@@ -38852,16 +38537,13 @@ msgstr "最大グラフ解像度"
 msgid "Sflow max lifetime"
 msgstr "Sflow 最大保持期間"
 
-#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
+#: ../../godmode/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84
 #: ../../operation/netflow/nf_live_view.php:339
 msgid "IP address resolution can take a lot of time"
 msgstr "IP アドレスの解決には多くの時間がかかります"
 
-#: ../../godmode/setup/setup_sflow.php:86
-#: ../../godmode/setup/setup_netflow.php:86
-#: ../../include/functions_config.php:1568
-#: ../../include/functions_config.php:1611
+#: ../../godmode/setup/setup_sflow.php:86 ../../godmode/setup/setup_netflow.php:86
+#: ../../include/functions_config.php:1568 ../../include/functions_config.php:1611
 msgid "Name resolution for IP address"
 msgstr "IP アドレスの名前解決"
 
@@ -38885,8 +38567,8 @@ msgstr "Websocket プロキシ URL"
 #: ../../godmode/setup/os.list.php:56
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All OS definitions are read "
-"only. Go to %s to manage them."
+"This node is configured with centralized mode. All OS definitions are read only. "
+"Go to %s to manage them."
 msgstr ""
 "このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用で"
 "す。 それらを管理するには、%s に移動します。"
@@ -39084,18 +38766,15 @@ msgstr "GIS データが無い場合のエージェントのデフォルト位
 msgid "Change in the map"
 msgstr "マップ内での変更"
 
-#: ../../godmode/setup/gis_step_2.php:486
-#: ../../operation/agentes/gis_view.php:218
+#: ../../godmode/setup/gis_step_2.php:486 ../../operation/agentes/gis_view.php:218
 msgid "Latitude"
 msgstr "緯度"
 
-#: ../../godmode/setup/gis_step_2.php:504
-#: ../../operation/agentes/gis_view.php:217
+#: ../../godmode/setup/gis_step_2.php:504 ../../operation/agentes/gis_view.php:217
 msgid "Longitude"
 msgstr "経度"
 
-#: ../../godmode/setup/gis_step_2.php:522
-#: ../../operation/agentes/gis_view.php:219
+#: ../../godmode/setup/gis_step_2.php:522 ../../operation/agentes/gis_view.php:219
 msgid "Altitude"
 msgstr "高度"
 
@@ -39158,11 +38837,11 @@ msgstr "Integria IMS セットアップ URL"
 
 #: ../../godmode/setup/setup_integria.php:322
 msgid ""
-"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
-"https://support.mycompany.com)."
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://"
+"support.mycompany.com)."
 msgstr ""
-"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, "
-"https://support.mycompany.com)"
+"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://"
+"support.mycompany.com)"
 
 #: ../../godmode/setup/setup_integria.php:336
 msgid "API Password"
@@ -39217,8 +38896,7 @@ msgstr "SNMP翻訳の保存に失敗しました"
 msgid "Unsucessful save the snmp translation."
 msgstr "SNMP翻訳の保存に失敗しました。"
 
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:80 ../../include/functions_config.php:1564
 msgid "Netflow max lifetime"
 msgstr "Netflow 最大保持期間"
 
@@ -39272,8 +38950,7 @@ msgid "Custom support logo"
 msgstr "カスタムサポートロゴ"
 
 #: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../include/functions_config.php:1102 ../../include/functions_config.php:1106
 msgid "Custom networkmap center logo"
 msgstr "カスタムネットワークマップセンターロゴ"
 
@@ -39321,8 +38998,7 @@ msgid "Show unit along with value in reports"
 msgstr "レポート内に値に加えて単位を表示する"
 
 #: ../../godmode/setup/setup_visuals.php:1000
-#: ../../include/functions_config.php:1226
-#: ../../include/functions_config.php:1230
+#: ../../include/functions_config.php:1226 ../../include/functions_config.php:1230
 msgid "Agent size text"
 msgstr "エージェント名の表示長さ"
 
@@ -39337,8 +39013,7 @@ msgid "Module size text"
 msgstr "モジュール名の表示長さ"
 
 #: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1238 ../../include/functions_config.php:1242
 msgid "Description size text"
 msgstr "説明の表示長さ"
 
@@ -39395,8 +39070,8 @@ msgstr "メニューに表示するお気に入りのサービスの数"
 
 #: ../../godmode/setup/setup_visuals.php:1535
 msgid ""
-"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
-"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
+"The dir of custom logos is in your www Console in 'images/custom_logo'. You can "
+"upload more files (ONLY JPEG AND PNG) in upload tool in console."
 msgstr ""
 "カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にありま"
 "す。 コンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップ"
@@ -39504,8 +39179,7 @@ msgstr " コンソール"
 
 #: ../../godmode/setup/setup_general.php:115
 msgid "If public URL is not properly configured you will lose access to "
-msgstr ""
-"公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
+msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
 
 #: ../../godmode/setup/setup_general.php:181
 msgid "Out of black list"
@@ -39536,8 +39210,7 @@ msgstr "上級者"
 msgid "Language code"
 msgstr "言語"
 
-#: ../../godmode/setup/setup_general.php:320
-#: ../../include/functions_config.php:204
+#: ../../godmode/setup/setup_general.php:320 ../../include/functions_config.php:204
 msgid "Automatic check for updates"
 msgstr "更新の自動チェック"
 
@@ -39549,38 +39222,31 @@ msgstr "SSL証明書の利用"
 msgid "Path of SSL Cert."
 msgstr "SSL証明書のパス"
 
-#: ../../godmode/setup/setup_general.php:384
-#: ../../include/functions_config.php:244
+#: ../../godmode/setup/setup_general.php:384 ../../include/functions_config.php:244
 msgid "Enable GIS features"
 msgstr "GIS 機能の有効化"
 
-#: ../../godmode/setup/setup_general.php:394
-#: ../../include/functions_config.php:260
+#: ../../godmode/setup/setup_general.php:394 ../../include/functions_config.php:260
 msgid "Enable Netflow"
 msgstr "Netflow を利用する"
 
-#: ../../godmode/setup/setup_general.php:408
-#: ../../include/functions_config.php:264
+#: ../../godmode/setup/setup_general.php:408 ../../include/functions_config.php:264
 msgid "Enable Sflow"
 msgstr "Sflow を利用する"
 
-#: ../../godmode/setup/setup_general.php:421
-#: ../../include/functions_config.php:268
+#: ../../godmode/setup/setup_general.php:421 ../../include/functions_config.php:268
 msgid "General network path"
 msgstr "一般ネットワークパス"
 
-#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../godmode/setup/setup_general.php:515 ../../include/functions_config.php:423
 msgid "Inventory changes blacklist"
 msgstr "インベントリブラックリスト変更"
 
-#: ../../godmode/setup/setup_general.php:520
-#: ../../include/functions_config.php:342
+#: ../../godmode/setup/setup_general.php:520 ../../include/functions_config.php:342
 msgid "Server logs directory"
 msgstr "サーバログディレクトリ"
 
-#: ../../godmode/setup/setup_general.php:532
-#: ../../include/functions_config.php:330
+#: ../../godmode/setup/setup_general.php:532 ../../include/functions_config.php:330
 msgid "Event storm protection"
 msgstr "イベントストーム保護"
 
@@ -39588,23 +39254,19 @@ msgstr "イベントストーム保護"
 msgid "Change remote config encoding"
 msgstr "リモートコンフィグのエンコーディング自動調整"
 
-#: ../../godmode/setup/setup_general.php:561
-#: ../../include/functions_config.php:326
+#: ../../godmode/setup/setup_general.php:561 ../../include/functions_config.php:326
 msgid "Referer security"
 msgstr "リファラーセキュリティ"
 
-#: ../../godmode/setup/setup_general.php:571
-#: ../../include/functions_config.php:346
+#: ../../godmode/setup/setup_general.php:571 ../../include/functions_config.php:346
 msgid "Log size limit in system logs viewer extension"
 msgstr "システムログビューワ拡張でのログサイズ制限"
 
-#: ../../godmode/setup/setup_general.php:592
-#: ../../include/functions_config.php:350
+#: ../../godmode/setup/setup_general.php:592 ../../include/functions_config.php:350
 msgid "Tutorial mode"
 msgstr "チュートリアルモード"
 
-#: ../../godmode/setup/setup_general.php:605
-#: ../../include/functions_config.php:354
+#: ../../godmode/setup/setup_general.php:605 ../../include/functions_config.php:354
 msgid "Allow create scheduled downtimes in the past"
 msgstr "過去の計画停止の作成を許可する"
 
@@ -39646,9 +39308,9 @@ msgid ""
 "    If you have manual settings in your pandora_server.conf, please note these "
 "settings will ignore this console setup."
 msgstr ""
-"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有"
-"効化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してく"
-"ださい。"
+"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有効"
+"化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してくださ"
+"い。"
 
 #: ../../godmode/setup/setup_general.php:744
 msgid "From address"
@@ -39688,8 +39350,8 @@ msgstr "未実行"
 msgid "Max. days before delete traps"
 msgstr "トラップデータ保持日数"
 
-#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:308 ../../godmode/setup/performance.php:518
+#: ../../include/functions_config.php:838
 msgid "Max. days before delete string data"
 msgstr "文字列データ保持日数"
 
@@ -39697,8 +39359,8 @@ msgstr "文字列データ保持日数"
 msgid "Max. days before delete GIS data"
 msgstr "GIS データ保持日数"
 
-#: ../../godmode/setup/performance.php:353
-#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:353 ../../godmode/setup/performance.php:482
+#: ../../include/functions_config.php:862
 msgid "Max. days before compact data"
 msgstr "データ保持日数(丸め込みなし)"
 
@@ -39718,8 +39380,8 @@ msgstr "自動無効化エージェントを削除せず保持する日数"
 msgid "Retention period of past special days"
 msgstr "過去の特別日の保存期間"
 
-#: ../../godmode/setup/performance.php:494
-#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:494 ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:878
 msgid "Compact interpolation in hours (1 Fine-20 bad)"
 msgstr "データ縮小時の丸め込み単位時間 (1〜20)"
 
@@ -39785,11 +39447,11 @@ msgstr "snmpwalk バイナリ"
 
 #: ../../godmode/setup/performance.php:788
 msgid ""
-"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
-"instead (by default snmpwalk, slower)."
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead "
+"(by default snmpwalk, slower)."
 msgstr ""
-"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されま"
-"す。(デフォルトで snmpwalk で遅くなります)"
+"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。"
+"(デフォルトで snmpwalk で遅くなります)"
 
 #: ../../godmode/setup/performance.php:793
 msgid "SNMP walk binary (fallback)"
@@ -39801,8 +39463,8 @@ msgid ""
 "%s web2image cache system cleanup. It is always cleaned up after perform an "
 "upgrade"
 msgstr ""
-"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は"
-"常にクリーンアップされます"
+"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常"
+"にクリーンアップされます"
 
 #: ../../godmode/setup/performance.php:813
 msgid "WMI binary"
@@ -40091,8 +39753,8 @@ msgid ""
 "This is the interval or period of time with which the graph data will be "
 "obtained. For example, a week means data from a week ago from now. "
 msgstr ""
-"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味し"
-"ます。 "
+"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味しま"
+"す。 "
 
 #: ../../godmode/reporting/create_container.php:498
 #: ../../godmode/reporting/create_container.php:686
@@ -40223,14 +39885,13 @@ msgstr "レポート名または説明で検索したリスト。"
 msgid "Show Option"
 msgstr "オプション表示"
 
-#: ../../godmode/reporting/graphs.php:362
-#: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30
+#: ../../godmode/reporting/graphs.php:362 ../../include/functions_container.php:146
+#: ../../operation/search_graphs.php:30
 #: ../../operation/reporting/graph_viewer.php:567
 msgid "Graph name"
 msgstr "グラフ名"
 
-#: ../../godmode/reporting/graphs.php:364
-#: ../../include/functions_container.php:148
+#: ../../godmode/reporting/graphs.php:364 ../../include/functions_container.php:148
 msgid "Number of Graphs"
 msgstr "グラフ数"
 
@@ -40248,8 +39909,8 @@ msgid ""
 "The maximum number of items in a chart is %d. You have %d elements, only first "
 "%d will be displayed."
 msgstr ""
-"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムの"
-"み表示されます。"
+"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ"
+"表示されます。"
 
 #: ../../godmode/reporting/graph_builder.graph_editor.php:315
 msgid "Sort selected items"
@@ -40288,19 +39949,18 @@ msgstr "警告: このパラメータはログの内容を制限しパフォー
 #: ../../godmode/reporting/reporting_builder.item_editor.php:1396
 msgid ""
 "This is the range, or period of time over which the report renders the "
-"information for this report type. For example, a week means data from a week "
-"ago from now. "
+"information for this report type. For example, a week means data from a week ago "
+"from now. "
 msgstr ""
-"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間で"
-"す。 たとえば、1週間は、今から1週間前のデータを意味します。 "
+"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 "
+"たとえば、1週間は、今から1週間前のデータを意味します。 "
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:1919
 msgid "Show modules"
 msgstr "モジュール表示"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../include/functions_ui.php:2494 ../../operation/inventory/inventory.php:687
 msgid "Last"
 msgstr "最新"
 
@@ -40319,8 +39979,8 @@ msgstr "描画定義"
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2630
 msgid "Please note that not all CSS styles are supported by PDF reports."
 msgstr ""
-"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意して"
-"ください。"
+"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してく"
+"ださい。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2728
 msgid "Greater or equal (>=)"
@@ -40351,8 +40011,8 @@ msgid ""
 "Show a summary chart with max, min and average number of total modules at the "
 "end of the report and Checks."
 msgstr ""
-"最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラ"
-"フを表示します。"
+"最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラフ"
+"を表示します。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2913
 msgid "Checks in Warning status"
@@ -40388,11 +40048,11 @@ msgstr "承諾済 / 未承諾 "
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3162
 msgid ""
-"With the token enabled the query will affect the Historical Database, which "
-"may mean a small drop in performance."
+"With the token enabled the query will affect the Historical Database, which may "
+"mean a small drop in performance."
 msgstr ""
-"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、"
-"パフォーマンスのわずかな低下を発生させる場合があります。"
+"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、パ"
+"フォーマンスのわずかな低下を発生させる場合があります。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3347
 msgid "Include filter"
@@ -40409,11 +40069,11 @@ msgstr "除外フィルタ"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3464
 msgid ""
-"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
-"full value will be displayed (example: 20.742 bytes/sec)"
+"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise full "
+"value will be displayed (example: 20.742 bytes/sec)"
 msgstr ""
-"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完"
-"全な値が表示されます (例: 20.742 bytes/sec)。"
+"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完全"
+"な値が表示されます (例: 20.742 bytes/sec)。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3502
 #: ../../include/functions_reporting.php:5163
@@ -40500,8 +40160,8 @@ msgid ""
 "Please be careful, when the module have diferent intervals in their life, the "
 "summatory maybe get bad result."
 msgstr ""
-"モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意して"
-"ください。"
+"モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意してく"
+"ださい。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:4664
 msgid "Please save the report to start adding items into the list."
@@ -40667,11 +40327,11 @@ msgstr "書き込みアクセス"
 
 #: ../../godmode/reporting/reporting_builder.main.php:163
 msgid ""
-"For example, you want a report that the people of \"All\" groups can see but "
-"you want to edit only for you or your group."
+"For example, you want a report that the people of \"All\" groups can see but you "
+"want to edit only for you or your group."
 msgstr ""
-"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分"
-"のグループのみが編集できるようにしたい場合等に利用します。"
+"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分の"
+"グループのみが編集できるようにしたい場合等に利用します。"
 
 #: ../../godmode/reporting/reporting_builder.main.php:207
 msgid "Non interactive report"
@@ -40680,8 +40340,7 @@ msgstr "非対話型レポート"
 #: ../../godmode/reporting/reporting_builder.php:190
 #: ../../operation/reporting/reporting_viewer.php:100
 msgid "Your report has been planned, and the system will email you a "
-msgstr ""
-"レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
+msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
 
 #: ../../godmode/reporting/reporting_builder.php:191
 #: ../../operation/reporting/reporting_viewer.php:101
@@ -40696,8 +40355,8 @@ msgid "Reports list"
 msgstr "レポート一覧"
 
 #: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
-#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23
+#: ../../godmode/reporting/reporting_builder.php:3571 ../../operation/menu.php:457
+#: ../../operation/reporting/custom_reporting.php:23
 msgid "Custom reporting"
 msgstr "カスタムレポート"
 
@@ -40923,36 +40582,35 @@ msgid ""
 "elements. Please update your license or disable enterprise section by moving "
 "enterprise directory to another location and try again."
 msgstr ""
-"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライ"
-"センスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の"
-"機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセ"
+"ンスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能"
+"を無効にして、再試行してください。"
 
 #: ../../godmode/um_client/index.php:107
 #, php-format
 msgid ""
 "You cannot use update manager %s. This license has expired %d days ago. Please "
-"update your license or disable enterprise section by moving enterprise "
-"directory to another location and try again."
+"update your license or disable enterprise section by moving enterprise directory "
+"to another location and try again."
 msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れ"
-"になりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動"
-"して Enterprise 版の機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れに"
+"なりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して "
+"Enterprise 版の機能を無効にして、再試行してください。"
 
 #: ../../godmode/um_client/index.php:120
 #, php-format
 msgid ""
-"You cannot use update manager %s. This license is a trial license to test all "
-"%s features. Please update your license to unlock all %s features."
+"You cannot use update manager %s. This license is a trial license to test all %s "
+"features. Please update your license to unlock all %s features."
 msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能"
-"をテストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能の"
-"ロックを解除してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能を"
+"テストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロッ"
+"クを解除してください。"
 
 #: ../../godmode/um_client/index.php:216
 #, php-format
 msgid "Master server version %s does not match console version %s."
-msgstr ""
-"マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
+msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
 
 #: ../../godmode/um_client/index.php:229
 #, php-format
@@ -40960,8 +40618,8 @@ msgid ""
 "'%s' recommended value is %s or greater. Please, change it on your PHP "
 "configuration file (php.ini) or contact with administrator"
 msgstr ""
-"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連"
-"絡してください 。"
+"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡"
+"してください 。"
 
 #: ../../godmode/um_client/index.php:318
 msgid "Update online requires registration."
@@ -40972,8 +40630,8 @@ msgid ""
 "Applying offline patches may make your console unusable, we recommend to "
 "completely backup your files before applying any patch."
 msgstr ""
-"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。"
-"パッチを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
+"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッ"
+"チを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
 
 #: ../../godmode/events/event_responses.editor.php:156
 msgid "Modal window"
@@ -41008,19 +40666,17 @@ msgstr "表示コマンド"
 
 #: ../../godmode/events/event_responses.editor.php:315
 msgid ""
-"If enabled the command will be displayed to any user that can execute this "
-"event response"
+"If enabled the command will be displayed to any user that can execute this event "
+"response"
 msgstr ""
-"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されま"
-"す"
+"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます"
 
 #: ../../godmode/events/event_edit_filter.php:304
 msgid "Save in group"
 msgstr "保存グループ"
 
 #: ../../godmode/events/event_edit_filter.php:304
-msgid ""
-"This group will be use to restrict the visibility of this filter with ACLs"
+msgid "This group will be use to restrict the visibility of this filter with ACLs"
 msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます"
 
 #: ../../godmode/events/event_edit_filter.php:502
@@ -41117,13 +40773,12 @@ msgstr "前のイベントからフィールドをロード"
 msgid "Event fields will be loaded. Do you want to continue?"
 msgstr "イベントフィールドが読み込まれます。続けますか?"
 
-#: ../../godmode/events/custom_events.php:92
-#: ../../include/functions_events.php:238
+#: ../../godmode/events/custom_events.php:92 ../../include/functions_events.php:238
 msgid "Event Id"
 msgstr "イベント ID"
 
-#: ../../godmode/events/custom_events.php:93
-#: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241
+#: ../../godmode/events/custom_events.php:93 ../../mobile/operation/events.php:237
+#: ../../include/functions_events.php:241
 msgid "Event Name"
 msgstr "イベント名"
 
@@ -41132,8 +40787,7 @@ msgstr "イベント名"
 msgid "Agent Name"
 msgstr "エージェント名"
 
-#: ../../godmode/events/custom_events.php:96
-#: ../../include/functions_events.php:320
+#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:320
 msgid "Agent IP"
 msgstr "エージェント IP"
 
@@ -41226,11 +40880,11 @@ msgstr "CSV ファイルから読み込んだ内容が不正です: %s"
 
 #: ../../godmode/wizards/HostDevices.class.php:391
 msgid ""
-"This network scan task has been already defined. Please edit it or create a "
-"new one."
+"This network scan task has been already defined. Please edit it or create a new "
+"one."
 msgstr ""
-"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに"
-"作成してください。"
+"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作"
+"成してください。"
 
 #: ../../godmode/wizards/HostDevices.class.php:433
 msgid "You must provide a valid network."
@@ -41279,8 +40933,8 @@ msgid ""
 "You can upload a CSV file. Each line must contain a network in IP/MASK format. "
 "For instance: 192.168.1.1/32"
 msgstr ""
-"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含ま"
-"れている必要があります。例: 192.168.1.1/32"
+"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれ"
+"ている必要があります。例: 192.168.1.1/32"
 
 #: ../../godmode/wizards/HostDevices.class.php:901
 msgid "Networks (current)"
@@ -41308,8 +40962,8 @@ msgid ""
 "Targets will be scanned if at least one of defined ports (comma separated) is "
 "open."
 msgstr ""
-"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャン"
-"されます。"
+"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンさ"
+"れます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1083
 msgid "Auto discover known hardware"
@@ -41320,14 +40974,13 @@ msgid ""
 "Targets will be monitorized based on its Private Enterprise Number. "
 "Requires SNMP."
 msgstr ""
-"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP "
-"が必要です。"
+"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP が"
+"必要です。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1100
 msgid "Module Host Alive will be added to discovered agents by default."
 msgstr ""
-"モジュール Host Alive が検出されたエージェントにデフォルトで追加されま"
-"す。"
+"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1148
 #, php-format
@@ -41335,8 +40988,8 @@ msgid ""
 "Configured networks could generate %d agents, your license only allows %d, "
 "'review results' is mandatory."
 msgstr ""
-"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセン"
-"スは %d までです。'結果の確認' は必須です。"
+"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンス"
+"は %d までです。'結果の確認' は必須です。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1156
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917
@@ -41356,8 +41009,8 @@ msgid ""
 "System is able to auto configure detected host & devices by applying your "
 "defined configuration rules."
 msgstr ""
-"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイ"
-"スを自動設定できます。"
+"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイス"
+"を自動設定できます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1202
 msgid "SNMP enabled"
@@ -41646,8 +41299,8 @@ msgid ""
 "Please ensure instances or regions are being monitorized and 'scan and general "
 "monitoring' is enabled."
 msgstr ""
-"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有"
-"効になっていることを確認してください。"
+"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効"
+"になっていることを確認してください。"
 
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1550
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1692
@@ -41831,11 +41484,11 @@ msgstr "プラグインの登録"
 #: ../../godmode/servers/plugin_registration.php:86
 #, php-format
 msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from feature from %s."
+"This console is not manager of this environment, please manage this feature from "
+"feature from %s."
 msgstr ""
-"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理"
-"してください。"
+"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理し"
+"てください。"
 
 #: ../../godmode/servers/plugin_registration.php:105
 msgid "Plugin Registration"
@@ -41932,8 +41585,7 @@ msgstr "プラグインタイプ"
 msgid ""
 "This value only will be applied if is minor than the server general "
 "configuration plugin timeout"
-msgstr ""
-"全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
+msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
 
 #: ../../godmode/servers/plugin.php:433
 msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
@@ -42034,8 +41686,8 @@ msgid ""
 "The modules or components should be updated manually or using the bulk "
 "operations for plugins after this change"
 msgstr ""
-"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作"
-"を使う必要があります。"
+"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を"
+"使う必要があります。"
 
 #: ../../godmode/servers/plugin.php:1224
 msgid "Are you sure you want to perform this action?"
@@ -42043,11 +41695,11 @@ msgstr "この処理を実行してもよろしいですか。"
 
 #: ../../godmode/servers/plugin.php:1233
 msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
+"The plugin macros cannot be updated because some modules or components are using "
+"the plugin"
 msgstr ""
-"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ"
-"インマクロは更新できません。"
+"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグイ"
+"ンマクロは更新できません。"
 
 #: ../../godmode/servers/discovery.php:190
 msgid "You must create a task first"
@@ -42168,8 +41820,8 @@ msgid ""
 "This node is configured with centralized mode. All categories information is "
 "read only. Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専"
-"用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用"
+"です。管理するには %s に移動します。"
 
 #: ../../godmode/category/category.php:118
 msgid "Error deleting category"
@@ -42263,17 +41915,17 @@ msgstr "Pandora FMS %s - ビルド %s"
 
 #: ../../mobile/include/system.class.php:156
 msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"your system administrator if you should need help."
+"Access to this page is restricted to authorized users only, please contact your "
+"system administrator if you should need help."
 msgstr ""
-"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要"
-"な場合は、システム管理者に連絡してください。"
+"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な"
+"場合は、システム管理者に連絡してください。"
 
 #: ../../mobile/include/system.class.php:156
 #, php-format
 msgid ""
-"Please remember that any attempts to access this page will be recorded on the "
-"%s System Database."
+"Please remember that any attempts to access this page will be recorded on the %s "
+"System Database."
 msgstr "このページへのアクセスは、%s システムデータベースに記録されます。"
 
 #: ../../mobile/include/ui.class.php:120
@@ -42323,8 +41975,7 @@ msgstr "折り返しが不正です"
 msgid "User cannot log in into this console, please contact administrator"
 msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。"
 
-#: ../../mobile/include/user.class.php:287
-#: ../../mobile/include/user.class.php:302
+#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302
 #: ../../mobile/include/user.class.php:309
 msgid "Double authentication failed"
 msgstr "二段階認証に失敗しました"
@@ -42361,8 +42012,7 @@ msgstr "ユーザ"
 msgid "password"
 msgstr "パスワード"
 
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:488 ../../mobile/include/user.class.php:489
 msgid "Authenticator code"
 msgstr "認証コード"
 
@@ -42534,8 +42184,8 @@ msgstr "グラフ生成エラー"
 #: ../../include/functions_reporting_html.php:1095
 #: ../../include/functions_reporting_html.php:1337
 #: ../../include/functions_reporting_html.php:2658
-#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779
+#: ../../include/functions_events.php:2571 ../../include/functions_events.php:4742
+#: ../../operation/events/events.php:779
 msgid "New event"
 msgstr "新規イベント"
 
@@ -42543,8 +42193,8 @@ msgstr "新規イベント"
 #: ../../include/functions_reporting_html.php:1084
 #: ../../include/functions_reporting_html.php:1342
 #: ../../include/functions_reporting_html.php:2663
-#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792
+#: ../../include/functions_events.php:2576 ../../include/functions_events.php:4748
+#: ../../operation/events/events.php:792
 msgid "Event validated"
 msgstr "承諾済"
 
@@ -42552,8 +42202,8 @@ msgstr "承諾済"
 #: ../../include/functions_reporting_html.php:1089
 #: ../../include/functions_reporting_html.php:1347
 #: ../../include/functions_reporting_html.php:2668
-#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804
+#: ../../include/functions_events.php:2581 ../../include/functions_events.php:4754
+#: ../../operation/events/events.php:804
 msgid "Event in process"
 msgstr "処理中イベント"
 
@@ -42599,8 +42249,7 @@ msgstr "定義済フィルタ"
 #: ../../include/functions_reporting_html.php:6335
 #: ../../include/functions_reporting.php:2189
 #: ../../include/functions_reporting.php:2564
-#: ../../include/functions_events.php:2497
-#: ../../include/functions_events.php:2500
+#: ../../include/functions_events.php:2497 ../../include/functions_events.php:2500
 msgid "No events"
 msgstr "イベントがありません。"
 
@@ -42648,8 +42297,7 @@ msgid ""
 "printed at the end."
 msgstr ""
 "'ラベル' フィールドを利用するには、'(_VALUE_)'を\n"
-"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されま"
-"す。"
+"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。"
 
 #: ../../include/functions_visual_map_editor.php:107
 #: ../../include/functions_visual_map_editor.php:133
@@ -42668,8 +42316,7 @@ msgid "Fill color"
 msgstr "塗りつぶしの色"
 
 #: ../../include/functions_visual_map_editor.php:239
-msgid ""
-"Scroll the mouse wheel over the label editor to change the background color"
+msgid "Scroll the mouse wheel over the label editor to change the background color"
 msgstr ""
 "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします"
 
@@ -42818,12 +42465,12 @@ msgstr "デフォルト色"
 
 #: ../../include/functions_visual_map_editor.php:810
 msgid ""
-"The color of the element will be the one selected in the first range created "
-"in which the value of the module is found (with the initial and final values "
-"of the range included)"
+"The color of the element will be the one selected in the first range created in "
+"which the value of the module is found (with the initial and final values of the "
+"range included)"
 msgstr ""
-"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色にな"
-"ります(含まれる範囲の初期値と最終値)。"
+"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色になり"
+"ます(含まれる範囲の初期値と最終値)。"
 
 #: ../../include/functions_visual_map_editor.php:813
 msgid "Ranges"
@@ -42911,13 +42558,12 @@ msgstr "グループへの制限アクセス"
 
 #: ../../include/functions_visual_map_editor.php:1215
 msgid ""
-"If selected, restrict visualization of this item in the visual console to "
-"users who have access to selected group. This is also used on calculating "
-"child visual consoles."
+"If selected, restrict visualization of this item in the visual console to users "
+"who have access to selected group. This is also used on calculating child visual "
+"consoles."
 msgstr ""
-"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアク"
-"セスできるユーザーに制限します。 これは、子ビジュアルコンソールにも使用されま"
-"す。"
+"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアクセ"
+"スできるユーザーに制限します。 これは、子ビジュアルコンソールにも使用されます。"
 
 #: ../../include/functions_visual_map_editor.php:1246
 #: ../../include/rest-api/models/VisualConsole/Item.php:2202
@@ -43051,8 +42697,7 @@ msgstr "変更を保存しました。"
 msgid "Could not be save."
 msgstr "保存できません。"
 
-#: ../../include/graphs/export_data.php:91
-#: ../../include/graphs/export_data.php:157
+#: ../../include/graphs/export_data.php:91 ../../include/graphs/export_data.php:157
 msgid "An error occured exporting the data"
 msgstr "データエクスポートエラー"
 
@@ -43061,8 +42706,8 @@ msgid "Selected"
 msgstr "選択済"
 
 #: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822
+#: ../../include/graphs/functions_gd.php:466 ../../include/functions_graph.php:2774
+#: ../../include/functions_graph.php:2822
 msgid "Out of limits"
 msgstr "範囲外"
 
@@ -43094,13 +42739,11 @@ msgstr "SNMPトラップサーバ"
 msgid "Correlation server"
 msgstr "相関サーバ"
 
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1230
 msgid "Enterprise ICMP server"
 msgstr "エンタープライズ ICMP サーバ"
 
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1233
 msgid "Enterprise SNMP server"
 msgstr "エンタープライズSNMPサーバ"
 
@@ -43125,8 +42768,7 @@ msgstr "同期サーバ"
 msgid "Wux server"
 msgstr "Wux サーバ"
 
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1260
 msgid "Log server"
 msgstr "ログサーバ"
 
@@ -43398,8 +43040,8 @@ msgstr "このSLAは、次の計画停止の影響を受けています"
 
 #: ../../include/functions_reporting_html.php:6366
 msgid ""
-"If the duration of the scheduled downtime is less than 5 minutes it will not "
-"be represented in the graph"
+"If the duration of the scheduled downtime is less than 5 minutes it will not be "
+"represented in the graph"
 msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。"
 
 #: ../../include/functions_reporting_html.php:6373
@@ -43526,9 +43168,8 @@ msgid "ALERT FIRED"
 msgstr "アラート発報"
 
 #: ../../include/functions.php:1413 ../../include/functions.php:1450
-#: ../../include/functions_modules.php:4263
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598
-#: ../../operation/agentes/status_monitor.php:1868
+#: ../../include/functions_modules.php:4263 ../../include/class/Tree.class.php:655
+#: ../../include/lib/Module.php:598 ../../operation/agentes/status_monitor.php:1868
 #: ../../operation/agentes/status_monitor.php:1881
 msgid "NO DATA"
 msgstr "データがありません"
@@ -43678,11 +43319,10 @@ msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
 msgstr ""
-"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は"
-"機能しています。"
+"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機"
+"能しています。"
 
-#: ../../include/functions.php:6311
-#: ../../include/class/ConsoleSupervisor.php:1645
+#: ../../include/functions.php:6311 ../../include/class/ConsoleSupervisor.php:1645
 #: ../../include/class/ConsoleSupervisor.php:1669
 #: ../../include/class/ConsoleSupervisor.php:1698
 #: ../../include/class/ConsoleSupervisor.php:1779
@@ -43694,8 +43334,7 @@ msgstr "PHP 設定における値 '%s' はおすすめしません"
 msgid "Recommended value is: -1"
 msgstr "推奨値は -1 です"
 
-#: ../../include/functions.php:6313
-#: ../../include/class/ConsoleSupervisor.php:1704
+#: ../../include/functions.php:6313 ../../include/class/ConsoleSupervisor.php:1704
 #: ../../include/class/ConsoleSupervisor.php:1785
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
@@ -43736,8 +43375,8 @@ msgid ""
 "This console is not the environment administrator. Please, manage this feature "
 "from centralized manager console (Metaconsole)."
 msgstr ""
-"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタ"
-"コンソール)から管理してください。"
+"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコ"
+"ンソール)から管理してください。"
 
 #: ../../include/functions_api.php:196
 msgid "Auth error"
@@ -43749,11 +43388,10 @@ msgstr "現在のライセンスではこの操作はできません。"
 
 #: ../../include/functions_api.php:1534
 msgid ""
-"The agent could not be modified. For security reasons, use a group other than "
-"0."
+"The agent could not be modified. For security reasons, use a group other than 0."
 msgstr ""
-"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループ"
-"を利用してください。"
+"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを"
+"利用してください。"
 
 #: ../../include/functions_api.php:1889
 #, php-format
@@ -43884,8 +43522,8 @@ msgid ""
 "Error stopping downtime. Periodical and running scheduled downtime cannot be "
 "stopped."
 msgstr ""
-"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止する"
-"ことはできません。"
+"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止するこ"
+"とはできません。"
 
 #: ../../include/functions_api.php:7071
 msgid "Downtime stopped."
@@ -44077,8 +43715,7 @@ msgstr "自動検出タスクの有効化/無効化エラー。id_user は空に
 #: ../../include/functions_api.php:17367
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left blank."
-msgstr ""
-"自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
+msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
 
 #: ../../include/functions_api.php:17392
 msgid "Error in discovery task enabling/disabling."
@@ -44096,8 +43733,7 @@ msgstr "自動検出タスクを無効化しました。"
 msgid "Radial dynamic"
 msgstr "放射状で動的"
 
-#: ../../include/functions_networkmap.php:1311
-#: ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1311 ../../include/functions_maps.php:38
 msgid "Topology"
 msgstr "トポロジ"
 
@@ -44117,8 +43753,7 @@ msgstr "新たな動的マップの作成"
 msgid "Create a new radial dynamic map"
 msgstr "放射状の動的マップを新規作成"
 
-#: ../../include/functions_networkmap.php:2073
-#: ../../include/functions_maps.php:73
+#: ../../include/functions_networkmap.php:2073 ../../include/functions_maps.php:73
 #: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "コピー: "
@@ -44149,8 +43784,7 @@ msgstr "二段階認証を有効化しようとしています"
 #: ../../include/ajax/double_auth.ajax.php:210
 msgid ""
 "With this option enabled, your account access will be more secure, \n"
-"\t\tcause a code generated by other application will be required after the "
-"login"
+"\t\tcause a code generated by other application will be required after the login"
 msgstr ""
 "このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n"
 "\t\tログイン後、他のアプリケーションで生成したコードが必要になります。"
@@ -44313,9 +43947,9 @@ msgid ""
 "charts or CSV exported data won't match, because is interpreted at runtime. "
 "Please check 'Pandora FMS Engineering' chapter from documentation."
 msgstr ""
-"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラ"
-"フ、または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ド"
-"キュメントの 'Pandora FMS の技術情報' の章を確認してください。"
+"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラフ、"
+"または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ドキュメン"
+"トの 'Pandora FMS の技術情報' の章を確認してください。"
 
 #: ../../include/ajax/module.php:586
 msgid "No available data to showaaaa"
@@ -44326,14 +43960,10 @@ msgid "T"
 msgstr "T"
 
 #: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
-#: ../../include/functions_reports.php:654
-#: ../../include/functions_reports.php:659
-#: ../../include/functions_reports.php:665
-#: ../../include/functions_reports.php:672
-#: ../../include/functions_reports.php:676
-#: ../../include/functions_reports.php:680
-#: ../../include/functions_reports.php:687
-#: ../../include/functions_reports.php:693
+#: ../../include/functions_reports.php:654 ../../include/functions_reports.php:659
+#: ../../include/functions_reports.php:665 ../../include/functions_reports.php:672
+#: ../../include/functions_reports.php:676 ../../include/functions_reports.php:680
+#: ../../include/functions_reports.php:687 ../../include/functions_reports.php:693
 #: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123
 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
 #: ../../operation/agentes/ver_agente.php:1578
@@ -44566,35 +44196,30 @@ msgid ""
 "There was an error copying the agent configuration, the copy has been cancelled"
 msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
 
-#: ../../include/functions_agents.php:3022
-#: ../../include/functions_agents.php:3061
+#: ../../include/functions_agents.php:3022 ../../include/functions_agents.php:3061
 #: ../../include/functions_agents.php:3150
 msgid "No Monitors"
 msgstr "モニタ項目なし"
 
-#: ../../include/functions_agents.php:3030
-#: ../../include/functions_agents.php:3091
+#: ../../include/functions_agents.php:3030 ../../include/functions_agents.php:3091
 #: ../../include/functions_agents.php:3158
 #: ../../include/functions_reporting.php:13111
 msgid "At least one module in CRITICAL status"
 msgstr "一つ以上のモジュールが致命的な状態です。"
 
-#: ../../include/functions_agents.php:3036
-#: ../../include/functions_agents.php:3104
+#: ../../include/functions_agents.php:3036 ../../include/functions_agents.php:3104
 #: ../../include/functions_agents.php:3166
 #: ../../include/functions_reporting.php:13118
 msgid "At least one module in WARNING status"
 msgstr "一つ以上のモジュールが警告状態です。"
 
-#: ../../include/functions_agents.php:3042
-#: ../../include/functions_agents.php:3117
+#: ../../include/functions_agents.php:3042 ../../include/functions_agents.php:3117
 #: ../../include/functions_agents.php:3174
 #: ../../include/functions_reporting.php:13125
 msgid "At least one module is in UKNOWN status"
 msgstr "一つ以上のモジュールが不明な状態です。"
 
-#: ../../include/functions_agents.php:3048
-#: ../../include/functions_agents.php:3130
+#: ../../include/functions_agents.php:3048 ../../include/functions_agents.php:3130
 #: ../../include/functions_agents.php:3182
 #: ../../include/functions_reporting.php:13132
 msgid "All Monitors OK"
@@ -44652,8 +44277,8 @@ msgid ""
 "API request failed. Please check Integria IMS' access credentials in Pandora "
 "setup."
 msgstr ""
-"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認"
-"証情報を確認してください。"
+"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証"
+"情報を確認してください。"
 
 #: ../../include/functions_integriaims.php:557
 msgid "File successfully added"
@@ -44704,8 +44329,7 @@ msgid "Create a new web Server module"
 msgstr "ウェブサーバモジュールの新規作成"
 
 #: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
-msgid ""
-"Problems with configuration permissions. Please contact with Administrator"
+msgid "Problems with configuration permissions. Please contact with Administrator"
 msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
 
 #: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
@@ -45071,12 +44695,12 @@ msgstr "トポロジグループ"
 
 #: ../../include/help/clippy/topology_group.php:35
 msgid ""
-"Please note that group topology maps do not show the parent relationship "
-"between nodes, it only shows the group parentship and the agent distribution "
-"inside them. "
+"Please note that group topology maps do not show the parent relationship between "
+"nodes, it only shows the group parentship and the agent distribution inside "
+"them. "
 msgstr ""
-"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。"
-"グループの親子関係とその中にあるエージェントのみを表示します。 "
+"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グ"
+"ループの親子関係とその中にあるエージェントのみを表示します。 "
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Hi, can I help you?"
@@ -45089,9 +44713,9 @@ msgid ""
 "follow my steps to do basic tasks in %s or you can close me and never see me "
 "again."
 msgstr ""
-"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私"
-"の手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わない"
-"ようにすることができます。"
+"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の"
+"手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わないよう"
+"にすることができます。"
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Close this wizard and don't open it again."
@@ -45131,20 +44755,20 @@ msgstr "このエージェントには不明モジュールがあります。"
 #: ../../include/help/clippy/module_unknow.php:35
 msgid ""
 "Unknown modules are modules which receive data normally at least in one "
-"occassion, but at this time are not receving data. Please check our "
-"troubleshoot help page to help you determine why you have unknown modules."
+"occassion, but at this time are not receving data. Please check our troubleshoot "
+"help page to help you determine why you have unknown modules."
 msgstr ""
-"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデー"
-"タを受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するに"
-"は、トラブルシュートのためのヘルプページを確認してください。"
+"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータ"
+"を受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するには、"
+"トラブルシュートのためのヘルプページを確認してください。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
-"Please note that you have your agent setup to do not add new modules coming "
-"from the data XML."
+"Please note that you have your agent setup to do not add new modules coming from "
+"the data XML."
 msgstr ""
-"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっ"
-"ていることに注意してください。"
+"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになって"
+"いることに注意してください。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
@@ -45153,54 +44777,51 @@ msgid ""
 "manually in the interface (with the exact name and type as coming in the XML "
 "file)."
 msgstr ""
-"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加し"
-"た場合は、インタフェースで手動作成するまでエージェントに反映されないということ"
-"を意味します(正しい名前とタイプは XML で送られます)。"
+"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した"
+"場合は、インタフェースで手動作成するまでエージェントに反映されないということを意"
+"味します(正しい名前とタイプは XML で送られます)。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
-"You should use the \"normal\" mode (non learn) only when you don't intend to "
-"add more modules to the agent."
+"You should use the \"normal\" mode (non learn) only when you don't intend to add "
+"more modules to the agent."
 msgstr ""
-"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使"
-"います。"
+"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使い"
+"ます。"
 
 #: ../../include/help/clippy/operation_agentes_ver_agente.php:35
 msgid ""
 "The last step is to check the alert created. Click on the round icon to force "
-"the action execution and after a few minutes you will receive the alert in "
-"your email."
+"the action execution and after a few minutes you will receive the alert in your "
+"email."
 msgstr ""
-"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイ"
-"コンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
+"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコ"
+"ンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
 
 #: ../../include/help/clippy/operation_agentes_ver_agente.php:35
-msgid ""
-"And restart your pandora server to read again general configuration tokens."
-msgstr ""
-"そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
+msgid "And restart your pandora server to read again general configuration tokens."
+msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
 msgid ""
 "Let me show you how to create an email action: Click on Create button and fill "
 "the form showed in the following screen."
 msgstr ""
-"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示"
-"されるフォームに入力します。"
+"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示さ"
+"れるフォームに入力します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
 msgid ""
-"Now, you have to go to the monitors list and look for a critical module to "
-"apply the alert."
+"Now, you have to go to the monitors list and look for a critical module to apply "
+"the alert."
 msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
 msgid ""
-"Click on the arrow to drop down the Monitoring submenu and select Monitor "
-"Detail."
+"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
 msgstr ""
-"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細"
-"を選択します。"
+"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を"
+"選択します。"
 
 #: ../../include/help/clippy/agent_out_of_limits.php:35
 msgid "Agent contact date passed it's ETA!."
@@ -45212,9 +44833,8 @@ msgid ""
 "(too load or just down). Check also connectivity between the agent and the "
 "server."
 msgstr ""
-"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)し"
-"ているときにこれが起こります。エージェントとサーバの間の通信も確認してくださ"
-"い。"
+"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)して"
+"いるときにこれが起こります。エージェントとサーバの間の通信も確認してください。"
 
 #: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
 msgid "I'm going to show you how to monitor a server."
@@ -45243,17 +44863,17 @@ msgstr "未初期化モジュールがあります。"
 #: ../../include/help/clippy/modules_not_init.php:35
 msgid ""
 "This happen when you have just created a module and it's not executed at first "
-"time. Usually in a few seconds should be initialized and you will be able to "
-"see in main view. If you keep non-init modules for more than 24hr (due a "
-"problem in it's execution or configuration) they will be automatically deleted "
-"by the system. Non-init are not visible in the “main view”, you can see/edit "
-"them in the module administration section, in the agent administrator."
+"time. Usually in a few seconds should be initialized and you will be able to see "
+"in main view. If you keep non-init modules for more than 24hr (due a problem in "
+"it's execution or configuration) they will be automatically deleted by the "
+"system. Non-init are not visible in the “main view”, you can see/edit them in "
+"the module administration section, in the agent administrator."
 msgstr ""
-"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で"
-"初期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題があ"
-"る等で)未初期化モジュールが放置された場合は、システムにより自動的に削除されま"
-"す。未初期化モジュールは、メインがメインに表示されません。エージェント管理のモ"
-"ジュール管理画面でのみ参照や編集ができます。"
+"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で初"
+"期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題がある等"
+"で)未初期化モジュールが放置された場合は、システムにより自動的に削除されます。未初"
+"期化モジュールは、メインがメインに表示されません。エージェント管理のモジュール管"
+"理画面でのみ参照や編集ができます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
 msgid "Fill the name of your action."
@@ -45275,8 +44895,8 @@ msgstr "コマンドフィールドで \"email\" を選択します。"
 msgid ""
 "In the threshold field enter the seconds. The help icon show more information."
 msgstr ""
-"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示し"
-"ます。"
+"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示しま"
+"す。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
 msgid ""
@@ -45291,16 +44911,16 @@ msgid ""
 "In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each "
 "name."
 msgstr ""
-"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロ"
-"が利用できます。"
+"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが"
+"利用できます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
 msgid ""
 "In the text field, you can also use macros. Get more information about the "
 "macros by clicking on the help icon."
 msgstr ""
-"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイ"
-"コンをクリックしてください。"
+"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコ"
+"ンをクリックしてください。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
 msgid "Click on Create button to create the action."
@@ -45315,14 +44935,14 @@ msgid ""
 "Please note that information provided here affects how the agent collect "
 "information and generate the data XML. Any data/configuration reported by the "
 "agent, different from data or description is discarded, and the configuration "
-"shown in the console prevails over any configuration coming from the agent, "
-"this applies for example for crit/warn thresholds, interval, module group, min/"
-"max value, tags, etc."
+"shown in the console prevails over any configuration coming from the agent, this "
+"applies for example for crit/warn thresholds, interval, module group, min/max "
+"value, tags, etc."
 msgstr ""
-"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で"
-"影響があるということに注意してください。エージェントから送られてくるデータや設"
-"定のうち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、"
-"最小・最大の値、タグなどは、コンソールに設定されているものが優先されます。"
+"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で影"
+"響があるということに注意してください。エージェントから送られてくるデータや設定の"
+"うち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・"
+"最大の値、タグなどは、コンソールに設定されているものが優先されます。"
 
 #: ../../include/help/clippy/data_configuration_module.php:35
 msgid ""
@@ -45330,9 +44950,9 @@ msgid ""
 "see in the console, but after the first import, system will ignore any update "
 "coming from the XML/Agent."
 msgstr ""
-"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができ"
-"ますが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無"
-"視します。"
+"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができま"
+"すが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視し"
+"ます。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
 msgid "Now you must go to Modules. Don't worry I'll lead you."
@@ -45358,8 +44978,7 @@ msgstr "そしてボタンをクリックします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
 msgid "Now you must create the module. Don't worry, i'll teach you ."
-msgstr ""
-"ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
+msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
 msgid "Now we are going to fill the form."
@@ -45387,15 +45006,14 @@ msgstr "そしてこのボタンをクリックするだけで終了です。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
 msgid ""
-"Congrats! Your module has been created. 
and the status color is blue." -"
That color means that the module hasn't been executed for the first " +"Congrats! Your module has been created.
and the status color is blue.
That color means that the module hasn't been executed for the first " "time. In the next seconds, if there is no problem, the status color will turn " "into red or green." msgstr "" -"おめでとうございます! モジュールが作成されました。
そして、状態の色は " -"青です。
この色は、モジュールの初回実行が完了していないことを意味して" -"います。問題がなければ数秒のうちに状態の色がまたはに変わりま" -"す。" +"おめでとうございます! モジュールが作成されました。
そして、状態の色は 青" +"です。
この色は、モジュールの初回実行が完了していないことを意味していま" +"す。問題がなければ数秒のうちに状態の色がまたはに変わります。" #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 msgid "Click on alerts tab and then fill the form to add an alert." @@ -45419,22 +45037,22 @@ msgstr "アラートを作成するために、アラートの追加ボタンを #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." +"To test the alert you've just created go to the main view by clicking on the eye " +"tab." msgstr "" "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" #: ../../include/help/clippy/server_queued_modules.php:35 msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of server " -"threads, but you should consider getting support about this." +"You have too much items in the processing queue. This can happen if your server " +"is too loaded and/or not properly configured. This could be something temporal, " +"or a bottleneck. One possible solution is increase number of server threads, but " +"you should consider getting support about this." msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎている" -"か、またはサーバが正しく設定されていません。これは一時的なものかもしれません" -"が、ボトルネックになります。一つの解決策としてはサーバのスレッド数を増やすこと" -"です。しかし、これについては支援を得ることを考慮した方がよいでしょう。" +"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、" +"またはサーバが正しく設定されていません。これは一時的なものかもしれませんが、ボト" +"ルネックになります。一つの解決策としてはサーバのスレッド数を増やすことです。しか" +"し、これについては支援を得ることを考慮した方がよいでしょう。" #: ../../include/help/clippy/servers_down.php:35 msgid "All servers down" @@ -45446,8 +45064,8 @@ msgid "" "command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " "introduce root pass." msgstr "" -"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/" -"pandora_server restart\" を実行します。root のパスワードが必要です。" +"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server " +"restart\" を実行します。root のパスワードが必要です。" #: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." @@ -45457,16 +45075,16 @@ msgstr "エージェントの間隔" msgid "" "Please note that having agents with a monitoring interval below 300 seconds is " "not recommended. This will impact seriously in the performance of the server. " -"For example, having 200 agents with one minute interval, is the same than " -"having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." +"For example, having 200 agents with one minute interval, is the same than having " +"1000 agents with a 5 minute interval. The probability of getting unknown modules " +"is higher, and the impact on the server is higher because it requires a shorter " +"response time." msgstr "" -"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意して" -"ください。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間" -"隔で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じで" -"す。おそらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのイ" -"ンパクトは大きくなるでしょう。" +"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意してく" +"ださい。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔" +"で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。お" +"そらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのインパクト" +"は大きくなるでしょう。" #: ../../include/help/clippy/operation_agentes_status_monitor.php:34 msgid "" @@ -45478,13 +45096,13 @@ msgstr "" #: ../../include/help/clippy/operation_agentes_status_monitor.php:38 msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." +"If you know the name of the agent or the name of the module in critical status, " +"type it in this field to make the module list shorter. You can write the entire " +"name or just a part of it." msgstr "" -"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧" -"を短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力" -"ができます。" +"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を" +"短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力がで" +"きます。" #: ../../include/help/clippy/operation_agentes_status_monitor.php:43 msgid "Click on Show button to get the modules list filtered." @@ -45505,8 +45123,7 @@ msgstr "タスクメールの設定は、Enterprise 設定にあります:" msgid "Please check if the email configuration is correct." msgstr "メール設定が正しいか確認してください。" -#: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 +#: ../../include/functions_profile.php:188 ../../operation/users/user_edit.php:972 #: ../../operation/users/user_edit.php:981 msgid "Profiles/Groups assigned to this user" msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" @@ -45625,8 +45242,7 @@ msgstr "メジャー" #: ../../include/functions_reporting.php:12333 #: ../../include/functions_reporting.php:14672 #: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 +#: ../../include/functions_groups.php:2647 ../../include/functions_groups.php:2661 #: ../../include/functions_groups.php:2711 msgid "Enterprise version not installed" msgstr "Enterprise 版がインストールされていません" @@ -45646,8 +45262,8 @@ msgstr "処理できないエラーが発生しました" #: ../../include/functions_ui.php:6775 #, php-format msgid "" -"These controls are using the timezone of the system (%s) instead of yours " -"(%s). The difference with your time zone in hours is %s." +"These controls are using the timezone of the system (%s) instead of yours (%s). " +"The difference with your time zone in hours is %s." msgstr "" "これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイム" "ゾーン(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" @@ -46087,8 +45703,7 @@ msgstr "要素削除" msgid "Click here to get more information" msgstr "詳細についてはこちらをクリックしてください" -#: ../../include/functions_reports.php:651 -#: ../../include/functions_reports.php:1102 +#: ../../include/functions_reports.php:651 ../../include/functions_reports.php:1102 #: ../../include/functions_reporting.php:10729 #: ../../include/functions_reporting.php:10889 msgid "Simple graph" @@ -46110,8 +45725,7 @@ msgstr "モジュールヒストグラムグラフ" msgid "IPAM networks" msgstr "IPAM ネットワーク" -#: ../../include/functions_reports.php:736 -#: ../../include/functions_reports.php:740 +#: ../../include/functions_reports.php:736 ../../include/functions_reports.php:740 msgid "Forecasting" msgstr "予測" @@ -46143,16 +45757,11 @@ msgstr "データの並び" msgid "Historical Data" msgstr "保存データ" -#: ../../include/functions_reports.php:782 -#: ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 -#: ../../include/functions_reports.php:800 -#: ../../include/functions_reports.php:806 -#: ../../include/functions_reports.php:813 -#: ../../include/functions_reports.php:820 -#: ../../include/functions_reports.php:826 -#: ../../include/functions_reports.php:830 -#: ../../include/functions_reports.php:835 +#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:800 +#: ../../include/functions_reports.php:806 ../../include/functions_reports.php:813 +#: ../../include/functions_reports.php:820 ../../include/functions_reports.php:826 +#: ../../include/functions_reports.php:830 ../../include/functions_reports.php:835 #: ../../include/functions_reports.php:841 msgid "Grouped" msgstr "グループ化" @@ -46169,8 +45778,7 @@ msgstr "ネットワークインタフェース" msgid "Custom Render" msgstr "カスタムレンダリング" -#: ../../include/functions_reports.php:846 -#: ../../include/functions_reports.php:850 +#: ../../include/functions_reports.php:846 ../../include/functions_reports.php:850 msgid "Text/HTML " msgstr "テキスト/HTML " @@ -46317,8 +45925,8 @@ msgid "" "Must have the same time zone as the system or database to avoid mismatches of " "time." msgstr "" -"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする" -"必要があります。" +"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必" +"要があります。" #: ../../include/functions_register.php:171 msgid "E-mail for receiving alerts" @@ -46337,8 +45945,7 @@ msgid "" "You could change this options later in \"alert actions\" and setting your " "account." msgstr "" -"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できま" -"す。" +"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。" #: ../../include/functions_config.php:150 msgid "Failed updated: User did not login." @@ -46575,13 +46182,11 @@ msgstr "カスタムサブタイトルヘッダ" msgid "Login background" msgstr "ログイン背景" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1138 ../../include/functions_config.php:1186 msgid "Custom Docs url" msgstr "カスタムドキュメントURL" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1142 ../../include/functions_config.php:1190 msgid "Custom support url" msgstr "カスタムサポートURL" @@ -47224,8 +46829,7 @@ msgstr "[pandorafms wiki] 新規レポート" #: ../../include/class/HelpFeedBack.class.php:262 msgid "Please provide your email address, we promise not to bother you" -msgstr "" -"あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" +msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" #: ../../include/class/HelpFeedBack.class.php:310 msgid "Something went wrong while sending the report." @@ -47471,8 +47075,7 @@ msgstr "InnoDB buffer pool size" #: ../../include/class/Diagnostics.class.php:809 #, no-php-format -msgid "" -"It has to be 40% of the server memory not recommended to be greater or less" +msgid "It has to be 40% of the server memory not recommended to be greater or less" msgstr "" "サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" @@ -47582,8 +47185,8 @@ msgstr "Thread stack" msgid "" "Table fragmentation is higher than recommended. They should be defragmented." msgstr "" -"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要が" -"あります。" +"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要があ" +"ります。" #: ../../include/class/Diagnostics.class.php:995 msgid "Table fragmentation is correct." @@ -47638,8 +47241,8 @@ msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" msgstr "" -"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題" -"が発生する可能性があります。" +"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が" +"発生する可能性があります。" #: ../../include/class/Diagnostics.class.php:1121 msgid "The average of modules per agent is less than 40" @@ -47687,8 +47290,8 @@ msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお" -"勧めします。" +"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧" +"めします。" #: ../../include/class/Diagnostics.class.php:1310 msgid "The tagente_datos table contains an acceptable amount of data." @@ -47719,24 +47322,24 @@ msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." msgstr "" -"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していま" -"せんか?" +"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませ" +"んか?" #: ../../include/class/Diagnostics.class.php:1514 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作して" -"いるか確認してください。" +"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作してい" +"るか確認してください。" #: ../../include/class/Diagnostics.class.php:1518 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" msgstr "" -"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこ" -"とが非常に重要です。" +"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこと" +"が非常に重要です。" #: ../../include/class/Diagnostics.class.php:1780 msgid "You have more than 10 MB of logs" @@ -47781,8 +47384,8 @@ msgid "" "If you think this report must be escalated, feel free to forward this mail to " "\"%s\"" msgstr "" -"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" " -"へ転送してください。" +"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" へ" +"転送してください。" #: ../../include/class/Diagnostics.class.php:2025 msgid "LEGAL WARNING" @@ -47793,8 +47396,8 @@ msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" msgstr "" -"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報" -"です。" +"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報で" +"す。" #: ../../include/class/Diagnostics.class.php:2031 msgid "" @@ -47802,8 +47405,8 @@ msgid "" "notified that any dissemination, distribution or copying of this communication " "is strictly prohibited" msgstr "" -"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピー" -"を固く禁止します" +"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピーを" +"固く禁止します" #: ../../include/class/Diagnostics.class.php:2035 msgid "If you have received this transmission in error, do not read it" @@ -47811,8 +47414,8 @@ msgstr "もし、間違えてこの情報を受け取った場合は、読まな #: ../../include/class/Diagnostics.class.php:2039 msgid "" -"Please immediately reply to the sender that you have received this " -"communication in error and then delete it" +"Please immediately reply to the sender that you have received this communication " +"in error and then delete it" msgstr "すぐに間違えて届いた旨を送信者へ返信するとともに、削除してください" #: ../../include/class/Diagnostics.class.php:2118 @@ -47892,11 +47495,11 @@ msgstr "実行" #: ../../include/class/NetworkMap.class.php:2948 msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." +"Resetting the map will delete all customizations you have done, including manual " +"relationships between elements, new items, etc." msgstr "" -"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイ" -"ズを削除します。" +"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイズ" +"を削除します。" #: ../../include/class/NetworkMap.class.php:2952 msgid "Restart map" @@ -48283,12 +47886,9 @@ msgstr "未承諾" #: ../../include/functions_reporting.php:2365 #: ../../include/functions_reporting.php:4596 #: ../../include/functions_reporting.php:11389 -#: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:2547 ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3544 ../../include/functions_events.php:3553 +#: ../../include/functions_events.php:3560 ../../include/functions_events.php:3567 msgid "Validated" msgstr "承諾済み" @@ -48355,8 +47955,8 @@ msgstr "システム監査ログ" #: ../../include/class/AuditLog.class.php:197 msgid "Search filter by User, Action, Date, Source IP or Comments fields content" msgstr "" -"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索" -"フィルタ" +"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索フィ" +"ルタ" #: ../../include/class/AuditLog.class.php:212 msgid "7 days" @@ -48641,8 +48241,7 @@ msgstr "添付ファイルディレクトリ書き込み不可" #: ../../include/class/ConsoleSupervisor.php:1111 #, php-format -msgid "" -"Directory %s is not writable. Please, configure corresponding permissions." +msgid "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" @@ -48656,8 +48255,8 @@ msgid "" "There are more than %d files in attachment, consider cleaning up attachment " "directory manually." msgstr "" -"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリ" -"を手動で整理することを検討してください。" +"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを" +"手動で整理することを検討してください。" #: ../../include/class/ConsoleSupervisor.php:1165 msgid "Remote configuration directory is not readable" @@ -48666,8 +48265,7 @@ msgstr "リモート設定ディレクトリが読めません" #: ../../include/class/ConsoleSupervisor.php:1167 #, php-format msgid "" -"Remote configuration directory %s is not readable. Please, adjust " -"configuration." +"Remote configuration directory %s is not readable. Please, adjust configuration." msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" #: ../../include/class/ConsoleSupervisor.php:1184 @@ -48677,8 +48275,7 @@ msgstr "リモート設定ディレクトリに書けません" #: ../../include/class/ConsoleSupervisor.php:1186 #, php-format msgid "" -"Remote configuration directory %s is not writable. Please, adjust " -"configuration." +"Remote configuration directory %s is not writable. Please, adjust configuration." msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" #: ../../include/class/ConsoleSupervisor.php:1202 @@ -48708,8 +48305,8 @@ msgstr "スプールに多くのファイルがあります" msgid "" "There are more than %d files in %s. Consider checking DataServer performance" msgstr "" -"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してく" -"ださい。" +"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくだ" +"さい。" #: ../../include/class/ConsoleSupervisor.php:1273 msgid "There are too many BADXML files in spool" @@ -48719,8 +48316,8 @@ msgstr "スプールに BADXML ファイルが大量にあります" #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" -"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくだ" -"さい。" +"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:1362 #, php-format @@ -48736,8 +48333,7 @@ msgid "" "There are no servers registered in this console. Please, check installation " "guide." msgstr "" -"コンソールに登録されたサーバがありません。インストールガイドを確認してくださ" -"い。" +"コンソールに登録されたサーバがありません。インストールガイドを確認してください。" #: ../../include/class/ConsoleSupervisor.php:1476 #, php-format @@ -48760,8 +48356,8 @@ msgid "" "%s (%s) is not running. Please, check configuration file or remove this server " "from server list." msgstr "" -"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から" -"削除してください。" +"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から削" +"除してください。" #: ../../include/class/ConsoleSupervisor.php:1546 msgid "No master servers found." @@ -48784,8 +48380,8 @@ msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " "Off (Do not forget to restart apache process after changes)" msgstr "" -"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してく" -"ださい。(変更後は apache プロセスの再起動を忘れないようにしてください)" +"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してくだ" +"さい。(変更後は apache プロセスの再起動を忘れないようにしてください)" #: ../../include/class/ConsoleSupervisor.php:1621 #, php-format @@ -48843,8 +48439,8 @@ msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() " -"を含んでいます。" +"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() を" +"含んでいます。" #: ../../include/class/ConsoleSupervisor.php:1738 msgid "chromium is not installed" @@ -48852,42 +48448,37 @@ msgstr "chromium がインストールされていません" #: ../../include/class/ConsoleSupervisor.php:1739 msgid "" -"To be able to create images of the graphs for PDFs, please install the " -"chromium extension. For that, it is necessary to follow these steps:" +"To be able to create images of the graphs for PDFs, please install the chromium " +"extension. For that, it is necessary to follow these steps:" msgstr "" -"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールして" -"ください。それには、以下のステップを行う必要があります。" +"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールしてく" +"ださい。それには、以下のステップを行う必要があります。" #: ../../include/class/ConsoleSupervisor.php:1760 msgid "PHP UPDATE REQUIRED" msgstr "PHP のアップデートが必要です" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:30 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " "higher." msgstr "" -"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があ" -"ります。" +"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があり" +"ます。" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:31 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "そうしないと、機能が動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:33 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "PDF フォーマットでのレポートダウンロード" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:34 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:34 msgid "Emails Sending" msgstr "メール送信" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:35 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "メタコンソールコレクション" @@ -48909,12 +48500,12 @@ msgstr "データベースメンテナンスにおける問題" #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it " -"as soon as possible." +"documentation on how to perform this maintenance process on %s and enable it as " +"soon as possible." msgstr "" -"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス" -"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してく" -"ださい。" +"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセスを" +"実行する方法はドキュメントを確認してください。また、なるべく早く有効化してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:1933 msgid "Historical database maintenance problem." @@ -48924,12 +48515,12 @@ msgstr "ヒストリデータベースにおける問題" #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " -"check documentation on how to perform this maintenance process on %s and " -"enable it as soon as possible." +"check documentation on how to perform this maintenance process on %s and enable " +"it as soon as possible." msgstr "" -"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンス" -"プロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効" -"化してください。" +"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンスプ" +"ロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効化し" +"てください。" #: ../../include/class/ConsoleSupervisor.php:1973 msgid "Historical database MR mismatch" @@ -48937,8 +48528,8 @@ msgstr "ヒストリデータベースの MR が一致していません" #: ../../include/class/ConsoleSupervisor.php:1974 msgid "" -"Your historical database is not using the same schema as the main DB. This " -"could produce anomalies while storing historical data." +"Your historical database is not using the same schema as the main DB. This could " +"produce anomalies while storing historical data." msgstr "" "ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これによ" "り、ヒストリデータの保存中に異常が発生する可能性があります。" @@ -48968,8 +48559,8 @@ msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." msgstr "" -"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用でき" -"ません。" +"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できま" +"せん。" #: ../../include/class/ConsoleSupervisor.php:2270 msgid "Downtime scheduled soon." @@ -48978,11 +48569,11 @@ msgstr "まもなく計画停止" #: ../../include/class/ConsoleSupervisor.php:2272 #, php-format msgid "" -"A scheduled downtime is going to be executed from %s to %s. Some monitoring " -"data won't be available while downtime is taking place." +"A scheduled downtime is going to be executed from %s to %s. Some monitoring data " +"won't be available while downtime is taking place." msgstr "" -"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監" -"視データは利用できません。" +"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視" +"データは利用できません。" #: ../../include/class/ConsoleSupervisor.php:2302 msgid "This instance is not registered in the Update manager section" @@ -49008,8 +48599,8 @@ msgstr "デフォルトのフォントがありません" #: ../../include/class/ConsoleSupervisor.php:2372 msgid "" -"Your defined font doesn't exist or is not defined. Please, check font " -"parameters in your config" +"Your defined font doesn't exist or is not defined. Please, check font parameters " +"in your config" msgstr "" "定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラ" "メータを確認してください。" @@ -49025,8 +48616,8 @@ msgid "" "should be disabled in a production environment. This value is located in the " "main index.php file" msgstr "" -"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境で" -"は無効化してください。この定義は、メインの index.php ファイル内にあります。" +"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では" +"無効化してください。この定義は、メインの index.php ファイル内にあります。" #: ../../include/class/ConsoleSupervisor.php:2423 msgid "Event storm protection is enabled." @@ -49037,8 +48628,8 @@ msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." msgstr "" -"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変" -"更した後はサーバを再起動する必要があります。" +"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更" +"した後はサーバを再起動する必要があります。" #: ../../include/class/ConsoleSupervisor.php:2450 msgid "Failed to retrieve updates, please configure utility" @@ -49063,8 +48654,8 @@ msgid "" "There is one or more minor releases available. .About minor release update." msgstr "" -"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" +"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" #: ../../include/class/ConsoleSupervisor.php:2535 msgid "Discovery relies on an appropriate cron setup." @@ -49089,8 +48680,8 @@ msgid "" "Server %s and this console have different versions. This might cause several " "malfunctions. Please, update this server." msgstr "" -"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作" -"が発生する場合があります。 サーバを更新してください。" +"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が" +"発生する場合があります。 サーバを更新してください。" #: ../../include/class/ConsoleSupervisor.php:2720 msgid "AllowOverride is disabled" @@ -49111,8 +48702,8 @@ msgid "" "you have an outdated and inoperative version of this file at %s. Please, " "consider deleting it." msgstr "" -"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いロ" -"グファイルがあります。 削除を検討してください。" +"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いログ" +"ファイルがあります。 削除を検討してください。" #: ../../include/class/ConsoleSupervisor.php:2828 msgid "Pandora FMS audit log file changed location" @@ -49121,12 +48712,12 @@ msgstr "Pandora FMS 監査ログの場所が変わりました" #: ../../include/class/ConsoleSupervisor.php:2832 #, php-format msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS audit log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." msgstr "" -"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" -"イルがあります。 削除を検討してください。" +"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイ" +"ルがあります。 削除を検討してください。" #: ../../include/class/ConsoleSupervisor.php:2890 #, php-format @@ -49136,11 +48727,11 @@ msgstr "ノード %s の同期キューの長さを超えました。" #: ../../include/class/ConsoleSupervisor.php:2892 #, php-format msgid "" -"Synchronization queue lenght for node %s is %d items, this value should be 0 " -"or lower than %d, please check the queue status." +"Synchronization queue lenght for node %s is %d items, this value should be 0 or " +"lower than %d, please check the queue status." msgstr "" -"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下であ" -"る必要があります。キューの状態を確認してください。" +"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である" +"必要があります。キューの状態を確認してください。" #: ../../include/class/ConsoleSupervisor.php:2945 #, php-format @@ -49153,8 +48744,8 @@ msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " "status." msgstr "" -"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくだ" -"さい。" +"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:2978 msgid "Agent dependency error" @@ -49531,8 +49122,7 @@ msgstr "コマンドが失敗し、戻り値が返りました:" #: ../../include/class/ExternalTools.class.php:806 msgid "" -"Something went wrong while perform the execution. Please check the " -"configuration." +"Something went wrong while perform the execution. Please check the configuration." msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" #: ../../include/class/ExternalTools.class.php:845 @@ -49797,8 +49387,8 @@ msgstr "このクエリは安全ではなく、スキーマに不要な変更を #: ../../include/functions_reporting.php:5658 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントが" -"ありません" +"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがあ" +"りません" #: ../../include/functions_reporting.php:5683 msgid "bytes/s" @@ -49841,9 +49431,8 @@ msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, " -"password, pass, insert, update といったいくつかのトークンや単語は利用できませ" -"ん。" +"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, " +"pass, insert, update といったいくつかのトークンや単語は利用できません。" #: ../../include/functions_reporting.php:9118 #: ../../include/functions_reporting.php:9836 @@ -50184,8 +49773,8 @@ msgstr "ディレクトリの作成" #: ../../include/functions_filemanager.php:880 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロー" -"ドも簡単です。" +"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロード" +"も簡単です。" #: ../../include/functions_filemanager.php:882 msgid "Decompress" @@ -50432,25 +50021,22 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/example.php:250 msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." +"To add more elements, click on \"Add widgets\" on the top of this page." msgstr "" -"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をク" -"リックします。" +"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリッ" +"クします。" #: ../../include/lib/Dashboard/Widgets/example.php:251 #: ../../include/lib/Dashboard/Widgets/example.php:253 msgid "" "To delete this message, click on the delete button on top right corner of this " "element." -msgstr "" -"このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" +msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" #: ../../include/lib/Dashboard/Widgets/example.php:252 msgid "" "To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" +msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" #: ../../include/lib/Dashboard/Widgets/example.php:254 #, php-format @@ -50485,8 +50071,7 @@ msgstr "制限" #, php-format msgid "" "The maximum number of modules to display is %d, please reconfigure the widget." -msgstr "" -"表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" +msgstr "表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:674 msgid "Data Matrix" @@ -50570,16 +50155,14 @@ msgstr "カスタムフィルタ" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3261 ../../include/functions_events.php:3267 #: ../../include/functions_events.php:3289 msgid "All event" msgstr "全イベント" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3263 ../../include/functions_events.php:3297 msgid "Only validated" msgstr "承諾済み" @@ -50720,8 +50303,8 @@ msgid "" "ZOOM functionality is only available when there is only one such widget in the " "dashboard" msgstr "" -"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使" -"用できます。" +"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用" +"できます。" #: ../../include/lib/Dashboard/Widgets/service_map.php:390 msgid "Missing Service id" @@ -50856,8 +50439,8 @@ msgid "" "Case insensitive regular expression or string for module name. For example: ." "*usage.* will match: cpu_usage, vram usage." msgstr "" -"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage." -"* は cpu_usage、vram usage にマッチします。" +"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* " +"は cpu_usage、vram usage にマッチします。" #: ../../include/lib/Dashboard/Widgets/top_n.php:280 msgid "Avg." @@ -50934,8 +50517,7 @@ msgstr "クラスタ名" msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" -msgstr "" -"クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" +msgstr "クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" #: ../../include/lib/ClusterViewer/ClusterWizard.php:797 msgid "Cluster type" @@ -50943,11 +50525,11 @@ msgstr "クラスタタイプ" #: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "" -"AA is a cluster where all members are working. In AP cluster only master " -"member is working" +"AA is a cluster where all members are working. In AP cluster only master member " +"is working" msgstr "" -"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-" -"スタンバイクラスタでは、マスターのみが稼働しています" +"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-ス" +"タンバイクラスタでは、マスターのみが稼働しています" #: ../../include/lib/ClusterViewer/ClusterWizard.php:806 msgid "Active - Active" @@ -50964,8 +50546,7 @@ msgstr "対象のクラスタエージェントはこのグループに保存さ #: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "" "You must select a Prediction Server to perform all cluster status calculations" -msgstr "" -"すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" +msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" #: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 msgid "critical if" @@ -50992,8 +50573,8 @@ msgstr "" #: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 msgid "" -"If a critical balanced module is going to critical status, then cluster will " -"be critical." +"If a critical balanced module is going to critical status, then cluster will be " +"critical." msgstr "" "クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" @@ -51021,8 +50602,7 @@ msgstr "モジュール名に不正な文字が含まれています" #: ../../include/lib/Module.php:1086 msgid "Module already exists please select another name or agent." -msgstr "" -"モジュールが既に存在します。他の名前またはエージェントを選択してください。" +msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。" #: ../../include/lib/Module.php:1092 msgid "Insufficent permissions to perform this action" @@ -51228,8 +50808,7 @@ msgstr "モジュールカスタム ID" msgid "Could not connect: %s" msgstr "接続できませんでした: %s" -#: ../../include/functions_events.php:2510 -#: ../../operation/agentes/tactical.php:248 +#: ../../include/functions_events.php:2510 ../../operation/agentes/tactical.php:248 msgid "Latest events" msgstr "最新のイベント" @@ -51269,23 +50848,19 @@ msgstr "新しいエージェントが作成されました。" msgid "Unknown type:" msgstr "不明なタイプ" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3262 ../../include/functions_events.php:3293 msgid "Only new" msgstr "新規のみ" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3264 ../../include/functions_events.php:3301 msgid "Only in process" msgstr "処理中のみ" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3265 ../../include/functions_events.php:3305 msgid "Only not validated" msgstr "未承諾のみ" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3270 ../../include/functions_events.php:3543 #: ../../include/functions_events.php:3552 msgid "In process" msgstr "処理中" @@ -51302,14 +50877,13 @@ msgstr "所有者変更" msgid "Change status" msgstr "ステータス変更" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3625 ../../include/functions_events.php:5361 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "コメントの追加" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3648 ../../include/functions_events.php:3652 +#: ../../operation/events/events.php:978 msgid "Delete event" msgstr "削除" @@ -51345,8 +50919,7 @@ msgstr "モジュール詳細" msgid "No assigned" msgstr "未割当" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4562 ../../include/functions_events.php:4571 msgid "Go to data overview" msgstr "データ概要表示" @@ -51404,8 +50977,7 @@ msgstr "計画停止から %s 件の要素が有効になりました" #: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" -"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかで" -"す。" +"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" #: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" @@ -51553,13 +51125,11 @@ msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" -#: ../../operation/users/user_edit.php:201 -#: ../../operation/users/user_edit.php:220 +#: ../../operation/users/user_edit.php:201 ../../operation/users/user_edit.php:220 msgid "Password successfully updated" msgstr "パスワードを更新しました。" -#: ../../operation/users/user_edit.php:211 -#: ../../operation/users/user_edit.php:263 +#: ../../operation/users/user_edit.php:211 ../../operation/users/user_edit.php:263 msgid "Error updating user info" msgstr "ユーザ情報の更新に失敗しました。" @@ -51593,8 +51163,8 @@ msgstr "API トークンの表示" #: ../../operation/users/user_edit.php:356 msgid "" -"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." -"d/php.conf" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf.d/" +"php.conf" msgstr "" "ディレクティブ HTTP_AUTHORIZATION=$1 が設定されていません。 /etc/httpd/conf.d/" "php.conf に追加してください。" @@ -51607,8 +51177,7 @@ msgstr "現在の認証スキームではパスワードを変更できません msgid "If checkbox is clicked then block size global configuration is used" msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:519 ../../operation/users/user_edit.php:528 msgid "Theme" msgstr "テーマ" @@ -51657,8 +51226,8 @@ msgstr "見つかりませんでした。" #, php-format msgid "You can find more help in the wiki" msgstr "" -"追加のヘルプは wiki で見つけることができ" -"ます" +"追加のヘルプは wiki で見つけることができま" +"す" #: ../../operation/search_helps.php:32 msgid "Matches" @@ -51724,13 +51293,11 @@ msgstr "グラフの場所に問題があります。" msgid "Refresh time" msgstr "更新時間" -#: ../../operation/agentes/stat_win.php:278 -#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:237 msgid "Show events" msgstr "イベント表示" -#: ../../operation/agentes/stat_win.php:299 -#: ../../operation/agentes/graphs.php:239 +#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "アラート表示" @@ -51951,30 +51518,30 @@ msgstr "マップ作成中..." #: ../../operation/agentes/pandora_networkmap.editor.php:281 msgid "" "To create a network map that visually recreates link-level (L2) relationships, " -"you must first discover these relationships with Discovery Server. Network " -"maps only reflect relationships that have already been discovered." +"you must first discover these relationships with Discovery Server. Network maps " +"only reflect relationships that have already been discovered." msgstr "" -"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、ま" -"ず自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク " -"マップには、すでに検出されている関係のみが反映されます。" +"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、まず" +"自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク マッ" +"プには、すでに検出されている関係のみが反映されます。" #: ../../operation/agentes/pandora_networkmap.editor.php:283 msgid "" "Discovery Server discovers relationships between interfaces (L2) through SNMP " "and relationships between hosts (L3) through route discovery." msgstr "" -"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティ" -"ング検出を通じてホスト間の関係 (L3) を検出します。" +"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティン" +"グ検出を通じてホスト間の関係 (L3) を検出します。" #: ../../operation/agentes/pandora_networkmap.editor.php:284 msgid "" -"You can also create these relationships manually by editing nodes or re-" -"passing a discovery task after adding new information (for example by adding " -"new SNMP communities)." +"You can also create these relationships manually by editing nodes or re-passing " +"a discovery task after adding new information (for example by adding new SNMP " +"communities)." msgstr "" -"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 " -"(新しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行するこ" -"とによって作成することもできます。" +"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 (新" +"しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行することに" +"よって作成することもできます。" #: ../../operation/agentes/pandora_networkmap.editor.php:285 msgid "See our documentation for more information." @@ -51997,8 +51564,7 @@ msgstr "拡大スケール" #: ../../operation/agentes/pandora_networkmap.editor.php:394 #: ../../operation/agentes/pandora_networkmap.view.php:171 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" #: ../../operation/agentes/pandora_networkmap.editor.php:430 @@ -52012,8 +51578,7 @@ msgstr "複製元グループ" #: ../../operation/agentes/pandora_networkmap.editor.php:459 msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" #: ../../operation/agentes/pandora_networkmap.editor.php:470 #: ../../operation/agentes/pandora_networkmap.view.php:260 @@ -52031,8 +51596,8 @@ msgid "" "It is setted any recon task, the nodes get from the recontask IP mask instead " "from the group." msgstr "" -"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マ" -"スクから取得します。" +"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マス" +"クから取得します。" #: ../../operation/agentes/pandora_networkmap.editor.php:502 #: ../../operation/agentes/pandora_networkmap.view.php:239 @@ -52057,8 +51622,8 @@ msgstr "ランク分け" #: ../../operation/agentes/pandora_networkmap.editor.php:539 #: ../../operation/agentes/pandora_networkmap.view.php:313 msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 " +"in radial" msgstr "" "フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが " "0.5、ラジアルが 1.0 です。" @@ -52082,13 +51647,11 @@ msgstr "デフォルトノード間距離" #: ../../operation/agentes/pandora_networkmap.view.php:319 msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" msgstr "" -"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 で" -"す。" +"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" #: ../../operation/agentes/pandora_networkmap.editor.php:744 msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "" -"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" #: ../../operation/agentes/pandora_networkmap.php:139 #: ../../operation/agentes/pandora_networkmap.php:377 @@ -52215,11 +51778,10 @@ msgstr "メインデータベース" #: ../../operation/agentes/datos_agente.php:181 msgid "" -"Switch between the main database and the history database to retrieve module " -"data" +"Switch between the main database and the history database to retrieve module data" msgstr "" -"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータ" -"ベース間で切り替えます。" +"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベー" +"ス間で切り替えます。" #: ../../operation/agentes/datos_agente.php:211 #: ../../operation/agentes/alerts_status.functions.php:151 @@ -52386,8 +51948,8 @@ msgid "" "To see the list of modules paginated, enable this option in the Styles " "Configuration." msgstr "" -"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化" -"します。" +"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化し" +"ます。" #: ../../operation/agentes/estado_monitores.php:519 msgid "Not Normal" @@ -52457,8 +52019,8 @@ msgstr "エージェントメイン表示" #: ../../operation/agentes/estado_generalagente.php:57 msgid "The agent has not assigned server. Maybe agent does not run fine." msgstr "" -"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可" -"能性があります。" +"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能" +"性があります。" #: ../../operation/agentes/estado_generalagente.php:98 msgid "In scheduled downtime" @@ -52830,12 +52392,12 @@ msgstr "MIB アップローダ" #: ../../operation/snmpconsole/snmp_mib_uploader.php:86 msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." +"MIB files will be installed on the system. Please note that a MIB may depend on " +"other MIB. To customize trap definitions use the SNMP trap editor." msgstr "" -"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性が" -"あることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップ" -"エディタを使ってください。" +"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があ" +"ることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエ" +"ディタを使ってください。" #: ../../operation/menu.php:222 msgid "Netflow Live View" @@ -53028,8 +52590,8 @@ msgstr "Integria IMS で更新できませんでした" msgid "" "This field corresponds to the Integria IMS user specified in Integria IMS setup" msgstr "" -"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対" -"応します" +"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応" +"します" #: ../../operation/incidents/configure_integriaims_incident.php:383 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 @@ -53234,8 +52796,8 @@ msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" msgstr "" -"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値" -"が含まれます。" +"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が" +"含まれます。" #: ../../operation/reporting/graph_viewer.php:387 msgid "Zoom x1" @@ -53469,30 +53031,30 @@ msgstr "インシデント作成" #, php-format msgid "" "Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these subsystems within the system's monitoring process.\n" +"\t\t\tyou're also required to monitor possible incidents which might take place " +"on these subsystems within the system's monitoring process.\n" "\t\t\tFor it, the %s team has designed an incident manager from which any user " "is able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with " -"comments and files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an incident to be\n" +"\t\t\tthat explain what's happened on the network, and update them with comments " +"and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles and " +"work-flow systems which allow an incident to be\n" "\t\t\tmoved from one group to another, and members from different groups and " "different people could work on the same incident, sharing information and " "files.\n" "\t\t" msgstr "" "システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n" -"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデント" -"を監視する必要があります。\n" -"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるイン" -"シデントマネージャを設計しました。\n" +"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを" +"監視する必要があります。\n" +"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるインシ" +"デントマネージャを設計しました。\n" "\t\t\tネットワークで何が起こっているかを説明し、必要に応じていつでもコメントや" "ファイルを更新します。\n" -"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役" -"割やワークフローシステム\n" -"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なる" -"グループのメンバーが一つの\n" +"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役割" +"やワークフローシステム\n" +"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なるグ" +"ループのメンバーが一つの\n" "\t\t\tインシデントに対して対応するなど、情報とファイルを共有します。\n" "\t\t" @@ -53507,21 +53069,21 @@ msgstr "自動検出タスクの作成" #: ../../general/first_task/recon_view.php:28 msgid "" "Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if " -"that item it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of " -"detection: Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks " -"and their interfaces), and other customized \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if that " +"item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of detection: " +"Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks and " +"their interfaces), and other customized \n" "\t\ttype. You can define your own customized recon script." msgstr "" "自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" -"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視さ" -"れている場合は、\n" +"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視され" +"ている場合は、\n" "\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。" " ICMP (ping)、\n" -"\t\t SNMP (ネットワークとそのインターフェース" -"のトポロジの検出)、その他 カスタマイズタイプで" +"\t\t SNMP (ネットワークとそのインターフェースの" +"トポロジの検出)、その他 カスタマイズタイプで" "す。\n" "\t\t独自の自動検出スクリプトを定義することができます。" @@ -53547,11 +53109,10 @@ msgstr "" #: ../../general/first_task/HA_cluster_builder.php:50 msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " -"into a Pandora FMS DB Cluster." +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into " +"a Pandora FMS DB Cluster." msgstr "" -"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始しま" -"す。" +"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始します。" #: ../../general/first_task/HA_cluster_builder.php:59 msgid "Add new node" @@ -53565,24 +53126,22 @@ msgstr "ビジュアルコンソール" #, php-format msgid "" "%s allows users to create visual maps on which each user is able to create his " -"or her own monitoring map. The new visual console editor is much more " -"practical, although the prior visual console editor had its advantages. On the " -"new visual console, we've been successful in imitating the sensation and touch " -"of a drawing application like GIMP. We've also simplified the editor by " -"dividing it into several subject-divided tabs named 'Data', 'Preview', " -"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " -"designed to handle are 'static images', 'percentage bars', 'module graphs' and " -"'simple values'." +"or her own monitoring map. The new visual console editor is much more practical, " +"although the prior visual console editor had its advantages. On the new visual " +"console, we've been successful in imitating the sensation and touch of a drawing " +"application like GIMP. We've also simplified the editor by dividing it into " +"several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of " +"Elements' and 'Editor'. The items the %s Visual Map was designed to handle are " +"'static images', 'percentage bars', 'module graphs' and 'simple values'." msgstr "" -"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユー" -"ザーは独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも" -"良い点はありましたが、新しいビジュアルコンソールエディターははるかに実用的で" -"す。新しいビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚と" -"タッチを模倣することに成功しています。また、'データ'、'プレビュー'、'ウィザー" -"ド'、'要素のリスト'、'エディタ' という名前の複数の要素に分割したタブにすること" -"で、エディターを簡素化しました。%s ビジュアルマップが処理するように設計したアイ" -"テムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' で" -"す。" +"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザー" +"は独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良い点" +"はありましたが、新しいビジュアルコンソールエディターははるかに実用的です。新しい" +"ビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚とタッチを模倣す" +"ることに成功しています。また、'データ'、'プレビュー'、'ウィザード'、'要素のリス" +"ト'、'エディタ' という名前の複数の要素に分割したタブにすることで、エディターを簡" +"素化しました。%s ビジュアルマップが処理するように設計したアイテムは、’静的画" +"像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' です。" #: ../../general/first_task/map_builder.php:58 msgid "Create a Visual Console" @@ -53611,30 +53170,30 @@ msgstr "どのようにサービス提供であるかに依存し、次の 2つ msgid "" "Clusters to balance the service load: these are active - active (A/A) " "mode clusters. It means that all the nodes (or machines that compose it) are " -"working. They must be working because if one stops working, it will overload " -"the others." +"working. They must be working because if one stops working, it will overload the " +"others." msgstr "" -"
サービス負荷分散クラスタ
:これらは、アクティブ-アクティブ(A/A)モードクラ" -"スタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停" -"止しても動作を継続しますが負荷は増えます。" +"
サービス負荷分散クラスタ
:これらは、アクティブ-アクティブ(A/A)モードクラス" +"タです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止し" +"ても動作を継続しますが負荷は増えます。" #: ../../general/first_task/cluster_builder.php:63 msgid "" "Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service instead. " -"Although many of the elements of this cluster are active-passive, it will also " -"have active elements in both of them that indicate that the passive node is " -"\"online\", so that in the case of a service failure in the master, the active " -"node collects this information." +"clusters. It means that one of the nodes (or machines that make up the cluster) " +"will be running (primary) and another won't (secondary). When the primary goes " +"down, the secondary must take over and give the service instead. Although many " +"of the elements of this cluster are active-passive, it will also have active " +"elements in both of them that indicate that the passive node is \"online\", so " +"that in the case of a service failure in the master, the active node collects " +"this information." msgstr "" -"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。" -"一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動" -"作していません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを" -"代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、ス" -"タンバイノードが「オンライン」であることを示すアクティブな要素もあります。した" -"がって、マスタのサービス障害の場合、アクティブノードはこの情報を収集します。" +"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一" +"つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作し" +"ていません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わり" +"に引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイ" +"ノードが「オンライン」であることを示すアクティブな要素もあります。したがって、マ" +"スタのサービス障害の場合、アクティブノードはこの情報を収集します。" #: ../../general/first_task/network_map.php:19 msgid "There are no network map defined yet." @@ -53658,8 +53217,8 @@ msgid "" "\t\t\t" msgstr "" "オープンソース版のネットワークマップもあります。\n" -"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよび" -"グループをユーザにグラフィカルに表示できます。\n" +"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグ" +"ループをユーザにグラフィカルに表示できます。\n" "\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" "\t\t\t" @@ -53694,16 +53253,16 @@ msgstr "タグ作成" #: ../../general/first_task/tags.php:28 msgid "" "Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " +"modules.\n" "\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " "certain tags." msgstr "" "モジュールへのアクセスは、タグシステムによって設定できます。\n" "\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられま" "す。\n" -"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限" -"できます。" +"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限で" +"きます。" #: ../../general/first_task/omnishell.php:27 msgid "There is no command defined yet." @@ -53716,16 +53275,16 @@ msgid "" "command along any agent in your %s. The only requirement is to have remote " "configuration enabled in your agent." msgstr "" -"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise " -"版の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" +"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise 版" +"の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" #: ../../general/first_task/omnishell.php:42 msgid "" -"You can execute any command on as many agents you need, and check the " -"execution on all of them using the Omnishell Command View" +"You can execute any command on as many agents you need, and check the execution " +"on all of them using the Omnishell Command View" msgstr "" -"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を" -"使用してすべてのエージェントでの実行を確認できます。" +"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を使" +"用してすべてのエージェントでの実行を確認できます。" #: ../../general/first_task/omnishell.php:50 msgid "Define a command" @@ -53749,8 +53308,8 @@ msgid "" "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールド" -"を作成できます。 " +"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを" +"作成できます。 " #: ../../general/first_task/fields_manager.php:22 msgid "Fields Manager" @@ -53767,8 +53326,8 @@ msgid "" "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィー" -"ルドを作成できます。 " +"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィール" +"ドを作成できます。 " #: ../../general/first_task/fields_manager.php:34 msgid "Create Fields " @@ -53832,8 +53391,8 @@ msgid "" "the ones for the server are going to get ruled out automatically. " msgstr "" "いくつかのシステムで大量のトラップが発生しています。\n" -"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必" -"要な負荷をかけないように\n" +"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要" +"な負荷をかけないように\n" "\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管" "理' -> 'SNMP管理コンソール' および \n" "\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外さ" @@ -53841,30 +53400,28 @@ msgstr "" #: ../../general/first_task/service_list.php:45 msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" +"A service is a way to group your IT resources based on their functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " +"support application, or even your printers.\n" "\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" "\t\t\t\t\t\t By the following example, you're able to see more clearly what a " "service is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an " -"on-line shop and support." +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +"world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-" +"line shop and support." msgstr "" "サービスは、機能に基づき IT リソースをグループ化する手法です。\n" -"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポート" -"アプリケーション、プリンタなどです。\n" -"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" -"ERP、ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループ" -"です。\n" -"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" -"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っていま" +"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートア" +"プリケーション、プリンタなどです。\n" +"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、" +"ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループで" "す。\n" -"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門" -"からなっています。" +"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" +"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" +"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門か" +"らなっています。" #: ../../general/first_task/service_list.php:58 msgid "Create a service" @@ -53889,12 +53446,12 @@ msgid "" "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " "graphs the user customizes by using one or more modules to do so." msgstr "" -"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示す" -"るように設計されています。\n" -"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とする" -"タイミングで生成され、最新の状態を表示します。\n" -"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフ" -"と、ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。" +"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示する" +"ように設計されています。\n" +"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタ" +"イミングで生成され、最新の状態を表示します。\n" +"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、" +"ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。" #: ../../general/first_task/collections.php:25 #: ../../general/first_task/collections.php:39 @@ -53903,32 +53460,30 @@ msgstr "コレクション作成" #: ../../general/first_task/collections.php:28 msgid "" -"A file collection is a group of files (e.g. scripts or executables) which " -"are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows " -"or UNIX). The file collections allow to be propagated\n" +"A file collection is a group of files (e.g. scripts or executables) which are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows or " +"UNIX). The file collections allow to be propagated\n" "\t\t along with the policies in order to be used by a group of agents, using a " "'package' of scripts and modules which use them.\n" "\t\tFirst we learn how to use the file collections in the agent's view, how to " "conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to " -"arrange a compilation of files. In order to do this, please go to the " -"agent's \n" +"\t\t and how to do the same thing by using policies.Our first task is to arrange " +"a compilation of files. In order to do this, please go to the agent's \n" "\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we " -"can see on \n" +"'Collections'. Please click on it in order to create a new collection as we can " +"see on \n" "\t\t the picture below. " msgstr "" "ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループで" "す。\n" "\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされま" "す。ファイルコレクションは、\n" -"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使え" -"るようにするためにポリシーでまとめることができます。\n" +"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使える" +"ようにするためにポリシーでまとめることができます。\n" "\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレク" "ションを利用せずにエージェントごとに手動で\n" -"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うこと" -"は、編集ファイルの配置です。これを行うには、\n" +"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、" +"編集ファイルの配置です。これを行うには、\n" "\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプ" "ションへ行きます。以下の画像で示すように、\n" "\t\t新たなコレクションを作成するにはそれをクリックします。 " @@ -53991,12 +53546,12 @@ msgid "" " Download the official documentation" msgstr "" -"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘ" -"ルプであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s " -"の公式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、" -"ダウンロードして確認する必要があります。

\n" -" 公" -"式ドキュメントのダウンロード" +"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘル" +"プであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s の公" +"式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、ダウン" +"ロードして確認する必要があります。

\n" +" 公式" +"ドキュメントのダウンロード" #: ../../general/alert_enterprise.php:120 #, php-format @@ -54006,10 +53561,10 @@ msgid "" " Please know that all attempts to access this page are recorded in security " "logs of %s System Database." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" -"な場合はシステム管理者に連絡してください。

\n" -" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティ" -"ログに記録されます。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な" +"場合はシステム管理者に連絡してください。

\n" +" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティロ" +"グに記録されます。" #: ../../general/alert_enterprise.php:130 #, php-format @@ -54019,39 +53574,37 @@ msgid "" "new plugins and new features (even full migrations tools for future versions) " "automatically." msgstr "" -"アップデートマネージャクライアントは、%s に含まれています。アップデートマネー" -"ジャは、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全" -"な移行ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新" -"するのに役立ちます。" +"アップデートマネージャクライアントは、%s に含まれています。アップデートマネージャ" +"は、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行" +"ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに" +"役立ちます。" #: ../../general/alert_enterprise.php:130 msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." +"OpenSource version updates are automated packages generated each week. These " +"updates come WITHOUT ANY warranty or support. If your system is corrupted or a " +"feature stops working properly, you will need to recover a backup by yourself." msgstr "" -"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証" -"やサポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合" -"は、ご自身でバックアップから戻す必要があります。" +"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証や" +"サポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合は、" +"ご自身でバックアップから戻す必要があります。" #: ../../general/alert_enterprise.php:130 #, php-format msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource version. " -"There are lots of advanced business-oriented features contained in %s " -"Enterprise Edition. For more information visit pandorafms.com" +"The Enterprise version comes with a different update system, with fully tested, " +"professionally-supported packages, and our support team is there to help you in " +"case of problems or queries. Update Manager is another feature present in the " +"Enterprise version and not included in the OpenSource version. There are lots of " +"advanced business-oriented features contained in %s Enterprise Edition. For more " +"information visit pandorafms.com" msgstr "" -"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システ" -"ムが付属しており、問題や問い合わせにはサポートチームが対応します。アップデート" -"マネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれてい" -"ません。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。" -"より詳細は、pandorafms.comを参照してく" -"ださい。" +"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システム" +"が付属しており、問題や問い合わせにはサポートチームが対応します。アップデートマ" +"ネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれていませ" +"ん。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。より詳" +"細は、pandorafms.comを参照してください。" #: ../../general/alert_enterprise.php:132 #, php-format @@ -54061,11 +53614,10 @@ msgid "" "automatically, since the Update Manager retrieves new modules, new plugins and " "new features (even full migrations tools for future versions) automatically." msgstr "" -"新たな アップデートマネージャ" -"クライアントは、%s に含まれています。アップデートマネージャは、新しいモ" -"ジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含" -"む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちま" -"す。" +"新たな アップデートマネージャクライアントは、%s に含まれています。アップデートマネージャは、新しいモジュー" +"ル、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含む)を自" +"動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちます。" #: ../../general/alert_enterprise.php:132 #, php-format @@ -54075,85 +53627,84 @@ msgid "" "pandorafms.com." msgstr "" "アップデートマネージャは、%s Enterprise 版の最も高度な機能の一つです。より詳細" -"は、http://pandorafms.comを参照してく" -"ださい。" +"は、http://pandorafms.comを参照してくだ" +"さい。" #: ../../general/alert_enterprise.php:132 #, php-format msgid "" -"Update Manager sends anonymous information about %s usage (number of agents " -"and modules running). To disable it, please remove the remote server address " -"from the Update Manager plugin setup." +"Update Manager sends anonymous information about %s usage (number of agents and " +"modules running). To disable it, please remove the remote server address from " +"the Update Manager plugin setup." msgstr "" -"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に" -"関する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの" -"設定からリモートサーバのアドレスを削除してください。" +"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に関" +"する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの設定" +"からリモートサーバのアドレスを削除してください。" #: ../../general/alert_enterprise.php:138 msgid "" "The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, RHEV " -"or Informix between others. The Enterprise version will have all this, plus " -"the ability to distribute and manage your own local modules on your systems, " -"individually or through policies.\n" +"local modules, or distribute it to remote agents. You need to make those changes " +"individually on each agent which is possible by using external tools and time " +"and effort. Nor can it distribute local plugins, or have access to the library " +"of enterprise plugins to monitor applications such as VMWare, RHEV or Informix " +"between others. The Enterprise version will have all this, plus the ability to " +"distribute and manage your own local modules on your systems, individually or " +"through policies.\n" "

pandorafms." -"com" +"Do you want to consolidate all your system monitoring? Do you have many systems, " +"making it difficult to manage them in a comprehensive manner? Would you like to " +"deploy monitoring, alerts and even local plugins with a single click? %s " +"Enterprise Policies are exactly what you need; you'll save time, effort and " +"annoyances. More information pandorafms.com" msgstr "" -"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な" -"方法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらには" -"ローカルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必" -"要とするものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。" +"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な方" +"法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらにはロー" +"カルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必要とす" +"るものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。" #: ../../general/alert_enterprise.php:148 #, php-format msgid "" "%s Enterprise also features event correlation. Through correlation you can " -"generate realtime alerts and / or new events based on logical rules. This " -"allows you to automate troubleshooting. If you know the value of working with " -"events, event correlation will take you to a new level." +"generate realtime alerts and / or new events based on logical rules. This allows " +"you to automate troubleshooting. If you know the value of working with events, " +"event correlation will take you to a new level." msgstr "" -"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づ" -"いてリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル" -"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているので" -"あれば、イベント相関が新しい領域を提供します。" +"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づい" +"てリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル" +"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているのであ" +"れば、イベント相関が新しい領域を提供します。" #: ../../general/alert_enterprise.php:152 #, php-format msgid "" "Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, %s Enterprise version is for you." +"wizards, you can schedule emails in PDF to be sent according to the schedule you " +"decide, and it has a template system to create personalized reports quickly for " +"each of your customers. It will even allow your customers to generate their own " +"reports from templates created by you. If reports are key to your business, %s " +"Enterprise version is for you." msgstr "" -"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送" -"信するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレ" -"ポートをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテ" -"ンプレートから独自のレポートを生成することもできます。 レポートがビジネスにとっ" -"て重要であるならば、%s Enterprise 版が最適です。" +"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送信" +"するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレポー" +"トをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテンプ" +"レートから独自のレポートを生成することもできます。 レポートがビジネスにとって重要" +"であるならば、%s Enterprise 版が最適です。" #: ../../general/alert_enterprise.php:156 msgid "These options are only effective on the Enterprise version." @@ -54163,25 +53714,24 @@ msgstr "これらのオプションは、Enterprise版でのみ有効です。" msgid "" "WARNING: You are just one click away from an automated update. This may result " "in a damaged system, including loss of data and operativity. Check you have a " -"recent backup. OpenSource updates are automatically created packages, and " -"there is no WARRANTY or SUPPORT. If you need professional support and " -"warranty, please upgrade to Enterprise Version." +"recent backup. OpenSource updates are automatically created packages, and there " +"is no WARRANTY or SUPPORT. If you need professional support and warranty, please " +"upgrade to Enterprise Version." msgstr "" -"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題" -"が発生している可能性があります。最新のバックアップを確認してください。オープン" -"ソース版はパッケージを使って自動更新されます。保障やサポートはありません。プロ" -"フェッショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてくだ" -"さい。" +"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題が" +"発生している可能性があります。最新のバックアップを確認してください。オープンソー" +"ス版はパッケージを使って自動更新されます。保障やサポートはありません。プロフェッ" +"ショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてください。" #: ../../general/alert_enterprise.php:164 msgid "" "This system is heavily loaded. OpenSource version could get a lot more agents " -"but fine tuning requires knowledge and time. Checkout the Enterprise Version " -"for a professional supported system." +"but fine tuning requires knowledge and time. Checkout the Enterprise Version for " +"a professional supported system." msgstr "" -"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応" -"できますが、最適なチューニングのための知識と時間が必要です。プロフェッショナル" -"サポートは、Enterprise版を確認してください。" +"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応で" +"きますが、最適なチューニングのための知識と時間が必要です。プロフェッショナルサ" +"ポートは、Enterprise版を確認してください。" #: ../../general/alert_enterprise.php:173 #, php-format @@ -54191,22 +53741,21 @@ msgid "" "agent. This configuration has %d modules per agent. Checkout the Enterprise " "Version for a professional supported system." msgstr "" -"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数" -"千のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用" -"することはお勧めしません。 この設定では、エージェントごとに %d個のモジュールが" -"あります。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してく" -"ださい。" +"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数千" +"のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用する" +"ことはお勧めしません。 この設定では、エージェントごとに %d個のモジュールがありま" +"す。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してください。" #: ../../general/alert_enterprise.php:177 msgid "" "Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"could manage thousands of modules, but performance is limited on high amount of " +"SNMP or ICMP request. Checkout the Enterprise Version for a professional " "supported system with improved capacity on network monitoring, including " "distributed servers." msgstr "" -"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数" -"千のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ" +"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数千" +"のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ" "フォーマンスは限られています。プロフェッショナルサポートがあり、容量を改善した" "ネットワーク監視や分散監視ができる Enterprise版を確認してください。" @@ -54215,20 +53764,20 @@ msgid "" "This system has too much events in the database. Checkout database purge " "options. Checkout the Enterprise Version for a professional supported system." msgstr "" -"このシステムはデータベースに多くのイベントがあります。データベースの削除オプ" -"ションを確認してください。プロフェッショナルサポートは、Enterprise版を確認して" -"ください。" +"このシステムはデータベースに多くのイベントがあります。データベースの削除オプショ" +"ンを確認してください。プロフェッショナルサポートは、Enterprise版を確認してくださ" +"い。" #: ../../general/alert_enterprise.php:185 msgid "" "You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." +"problems in the future. In the Enterprise version, you can use event correlation " +"alerts to simplify the alerting system and have easier administration and " +"increased performance." msgstr "" -"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性が" -"あります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が" -"簡単になりパフォーマンスが向上します。" +"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性があ" +"ります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が簡単" +"になりパフォーマンスが向上します。" #: ../../general/login_help_dialog.php:43 #, php-format @@ -54237,9 +53786,9 @@ msgid "" "learn more about the software. Monitoring can be overwhelming, but take your " "time to learn how to harness the power of %s!" msgstr "" -"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつ" -"かお勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方" -"法を学んでください!" +"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつか" +"お勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方法を" +"学んでください!" #: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 msgid "Online help" @@ -54289,10 +53838,9 @@ msgid "" "failed login attempts are logged in Pandora FMS System logs, and these can be " "reviewed by each user, please report to admin any incident or malfunction." msgstr "" -"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、" -"CAPS LOCKキーを確認してください。

ログインの失敗は Pandora FMS システム" -"ログに記録され他のユーザから確認されます。問題があれば管理者へ連絡してくださ" -"い。" +"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、CAPS " +"LOCKキーを確認してください。

ログインの失敗は Pandora FMS システムログに記" +"録され他のユーザから確認されます。問題があれば管理者へ連絡してください。" #: ../../general/node_deactivated.php:36 msgid "You cannot use this node until system is unified" @@ -54311,11 +53859,11 @@ msgstr "このページへのアクセスは制限されています" msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance.

\n" -"\t\t\tPlease know that all attempts to access this page are recorded in " -"security logs of Pandora System Database" +"\t\t\tPlease know that all attempts to access this page are recorded in security " +"logs of Pandora System Database" msgstr "" -"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合" -"はシステム管理者へ連絡してください。

\n" +"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合は" +"システム管理者へ連絡してください。

\n" "\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリ" "ティログに記録されます。" @@ -54328,16 +53876,16 @@ msgid "" "Failure to connect to historical database, please check the configuration or " "contact system administrator if you need assistance." msgstr "" -"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合" -"はシステム管理者に連絡してください。" +"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合は" +"システム管理者に連絡してください。" #: ../../general/mysqlerr.php:9 msgid "" "Failure to connect to Database server, please check the configuration file " "config.php or contact system administrator if you need assistance." msgstr "" -"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認する" -"か、支援が必要な場合はシステム管理者に連絡してください。" +"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、" +"支援が必要な場合はシステム管理者に連絡してください。" #: ../../general/mysqlerr.php:31 msgid "Mysql error" @@ -54377,8 +53925,8 @@ msgid "" "This node is configured with centralized mode. Go to metaconsole to reset the " "password" msgstr "" -"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソール" -"で行います。" +"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソールで" +"行います。" #: ../../general/login_page.php:569 msgid "Forbidden" @@ -54401,8 +53949,8 @@ msgid "" "This user does not have access on node, please enable node access on this user " "from metaconsole." msgstr "" -"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードア" -"クセスを有効にしてください。" +"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードアク" +"セスを有効にしてください。" #: ../../general/login_page.php:718 ../../general/login_page.php:720 #, php-format @@ -54413,12 +53961,11 @@ msgstr "%s データベースに問題があります" msgid "" "Cannot connect to the database, please check your database setup in the " "include/config.php file.

\n" -"\t\tProbably your database, hostname, user or password values are incorrect " -"or\n" +"\t\tProbably your database, hostname, user or password values are incorrect or\n" "\t\tthe database server is not running." msgstr "" -"データベースに接続できません。include/config.phpファイル内のデータベース" -"設定を確認してください。

\n" +"データベースに接続できません。include/config.phpファイル内のデータベース設" +"定を確認してください。

\n" "\t\tおそらく、データベース名、ホスト名、ユーザ名、パスワードの値が不正か\n" "\t\tデータベースサーバが動作していません。" @@ -54430,13 +53977,13 @@ msgstr "DB エラー" #, php-format msgid "" "If you have modified the auth system, the origin of this problem could be that " -"%s cannot override the authorization variables from the config database. " -"Please remove them from your database by executing:
DELETE FROM "
-"tconfig WHERE token = \"auth\";
" +"%s cannot override the authorization variables from the config database. Please " +"remove them from your database by executing:
DELETE FROM tconfig WHERE "
+"token = \"auth\";
" msgstr "" -"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を" -"上書きできないことです。以下を実行することにより、データベースよりそれらを削除" -"してください。
DELETE FROM tconfig WHERE token = \"auth\";
" +"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を上" +"書きできないことです。以下を実行することにより、データベースよりそれらを削除して" +"ください。
DELETE FROM tconfig WHERE token = \"auth\";
" #: ../../general/login_page.php:740 msgid "Empty configuration table" @@ -54448,22 +53995,22 @@ msgid "" "Cannot load configuration variables from database. Please check your database " "setup in the\n" "\t\t\tinclude/config.php file.

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

%s Console cannot find include/config.php or this file " -"has invalid\n" +"\t\t\tMost likely your database schema has been created but there are is no data " +"in it, you have a problem with the database access credentials or your schema is " +"out of date.\n" +"\t\t\t

%s Console cannot find include/config.php or this file has " +"invalid\n" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " "fix this problem.
" msgstr "" "データベースから設定を読み込めません。include/config.phpファイルのデータ" "ベース設定を確認してください。

\n" -"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありま" -"せん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n" -"\t\t\t

%s コンソールが include/config.php を見つけられないか、" -"ファイルのパーミッションが\n" -"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメント" -"を確認してください。" +"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありませ" +"ん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n" +"\t\t\t

%s コンソールが include/config.php を見つけられないか、ファ" +"イルのパーミッションが\n" +"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメントを" +"確認してください。" #: ../../general/login_page.php:752 msgid "No configuration file found" @@ -54473,13 +54020,13 @@ msgstr "設定ファイルがありません" #, php-format msgid "" "%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem." +"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +"this problem." msgstr "" -"%s コンソールが include/config.php を見つけられないか、このファイルの" -"パーミッションが不正で\n" -"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照して" -"ください。" +"%s コンソールが include/config.php を見つけられないか、このファイルのパー" +"ミッションが不正で\n" +"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照してく" +"ださい。" #: ../../general/login_page.php:766 #, php-format @@ -54497,8 +54044,8 @@ msgid "" "installer file.\n" "\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はでき" -"ません。\n" +"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はできま" +"せん。\n" "\t\t%s コンソールを実行する前に、./install.php ファイルを削除してくださ" "い。" @@ -54513,15 +54060,15 @@ msgid "" "\t\tshould not read it or write to it. It should be written only for owner\n" "\t\t(usually www-data or http daemon user), normal operation is not possible " "until you change\n" -"\t\tpermissions for include/config.php file. Please do it, it is for " -"your security." +"\t\tpermissions for include/config.php file. Please do it, it is for your " +"security." msgstr "" -"セキュリティ上の理由により、config.php は制限したパーミッションでなけれ" -"ばいけません。\n" -"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または " -"http デーモンのユーザ)\n" -"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変" -"更するまで\n" +"セキュリティ上の理由により、config.php は制限したパーミッションでなければ" +"いけません。\n" +"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または http " +"デーモンのユーザ)\n" +"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変更" +"するまで\n" "\t\t通常の操作はできません。セキュリティのために対応してください。" #: ../../general/login_page.php:789 @@ -54533,8 +54080,7 @@ msgid "" "In the config.php file in the variable $config[\"homedir\"] = add the correct " "path" msgstr "" -"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してくださ" -"い。" +"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してください。" #: ../../general/login_page.php:794 msgid "Bad defined homeurl or homeurl_static" @@ -54545,8 +54091,8 @@ msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" msgstr "" -"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] " -"に正しいパスを設定してください。" +"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] に" +"正しいパスを設定してください。" #: ../../general/pandora_help.php:23 #, php-format @@ -54560,11 +54106,11 @@ msgstr "ヘルプシステムエラー" #: ../../general/pandora_help.php:77 #, php-format msgid "" -"%s help system has been called with a help reference that currently don't " -"exist. There is no help content to show." +"%s help system has been called with a help reference that currently don't exist. " +"There is no help content to show." msgstr "" -"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘル" -"プコンテンツはありません。" +"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプ" +"コンテンツはありません。" #~ msgid "Calendars" #~ msgstr "カレンダー" @@ -54653,8 +54199,8 @@ msgstr "" #~ "The templates shown are only for correlative alerts, event alert (legacy) " #~ "will be deprecated in the future" #~ msgstr "" -#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガ" -#~ "シー)は将来非推奨になります" +#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)" +#~ "は将来非推奨になります" #~ msgid "Confirm: " #~ msgstr "確認: " @@ -54774,11 +54320,11 @@ msgstr "" #~ msgstr "公開 URL 利用に関する情報" #~ msgid "" -#~ "Use [ or ( as first character, for example '[*] Map name', to render this " -#~ "map name in main menu" +#~ "Use [ or ( as first character, for example '[*] Map name', to render this map " +#~ "name in main menu" #~ msgstr "" -#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニュー" -#~ "に表示するには、'[*] Map name' です。" +#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに" +#~ "表示するには、'[*] Map name' です。" #~ msgid "Edit event responses" #~ msgstr "イベント応答の編集" @@ -54844,15 +54390,15 @@ msgstr "" #~ msgstr "参照" #~ msgid "" -#~ "If event replication is ongoing, it won't be possible to enter comments " -#~ "here. This option is only to allow local pandora users to see comments, but " -#~ "not to operate with them. The operation, when event replication is enabled, " -#~ "must be done only in the Metaconsole." +#~ "If event replication is ongoing, it won't be possible to enter comments here. " +#~ "This option is only to allow local pandora users to see comments, but not to " +#~ "operate with them. The operation, when event replication is enabled, must be " +#~ "done only in the Metaconsole." #~ msgstr "" #~ "イベントの複製実行中は、ここにコメントを入力することはできません。 このオプ" -#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、" -#~ "コメントを操作することはできません。 イベント複製が有効な場合は、操作はメタ" -#~ "コンソールでのみ実行する必要があります。" +#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、コ" +#~ "メントを操作することはできません。 イベント複製が有効な場合は、操作はメタコン" +#~ "ソールでのみ実行する必要があります。" #~ msgid "No log sources found" #~ msgstr "ログソースが見つかりません" @@ -54956,8 +54502,8 @@ msgstr "" #~ "Enable/disable token (this will comment out the corresponding line in the " #~ "configuration file)" #~ msgstr "" -#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントア" -#~ "ウトされます)" +#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントアウ" +#~ "トされます)" #~ msgid "Enable (1) or disable (0) remote configuration" #~ msgstr "リモート設定の有効化(1)または無効化(0)" @@ -55092,8 +54638,8 @@ msgstr "" #~ "The plugin command cannot be updated because some modules or components are " #~ "using the plugin." #~ msgstr "" -#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラ" -#~ "グインコマンドを更新できません。" +#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ" +#~ "インコマンドを更新できません。" #~ msgid "Circular porgress bar" #~ msgstr "円進捗バー" @@ -55124,8 +54670,7 @@ msgstr "" #~ "\t\tREMEMBER trap sources need to be searched by IP Address" #~ msgstr "" #~ "トラップの英数字フィールドで検索。\n" -#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してくださ" -#~ "い。" +#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。" #~ msgid "There are no SNMP traps in database that contains this filter" #~ msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" @@ -55153,12 +54698,12 @@ msgstr "" #~ "Transaction graphs represent the different processes within our " #~ "infrastructure that we use to deliver our service." #~ msgstr "" -#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行が" -#~ "できます。指定した時間に対象を確認するために、いくつかの処理の実行ができるこ" -#~ "とを意味します。\n" +#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行がで" +#~ "きます。指定した時間に対象を確認するために、いくつかの処理の実行ができることを" +#~ "意味します。\n" #~ "\n" -#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる" -#~ "処理を表現します。" +#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処" +#~ "理を表現します。" #~ msgid "Mode Cell" #~ msgstr "モードセル" @@ -55185,11 +54730,11 @@ msgstr "" #~ msgstr "処理中イベントは削除できません" #~ msgid "" -#~ "Event viewer is disabled due event replication. For more information, " -#~ "please contact with the administrator" +#~ "Event viewer is disabled due event replication. For more information, please " +#~ "contact with the administrator" #~ msgstr "" -#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡" -#~ "してください。" +#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡し" +#~ "てください。" #~ msgid "No filter loaded" #~ msgstr "フィルタが読み込まれていません" @@ -55222,8 +54767,8 @@ msgstr "" #~ msgid "" #~ "'Show events' is disabled because this %s node is set to event replication." #~ msgstr "" -#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' " -#~ "は無効です。" +#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は" +#~ "無効です。" #~ msgid "Treshold" #~ msgstr "閾値" @@ -55409,17 +54954,16 @@ msgstr "" #~ "This user has permissions to manage all. An admin user should not requiere " #~ "additional group permissions, except for using Enterprise ACL." #~ msgstr "" -#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、" -#~ "管理者ユーザは追加のグループパーミッション設定をすべきではありません。" +#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管" +#~ "理者ユーザは追加のグループパーミッション設定をすべきではありません。" #~ msgid "" -#~ "This user has separated permissions to view data in his group agents, " -#~ "create incidents belong to his groups, add notes in another incidents, " -#~ "create personal assignments or reviews and other tasks, on different " -#~ "profiles" +#~ "This user has separated permissions to view data in his group agents, create " +#~ "incidents belong to his groups, add notes in another incidents, create " +#~ "personal assignments or reviews and other tasks, on different profiles" #~ msgstr "" -#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限" -#~ "られた権限を所有します。" +#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限ら" +#~ "れた権限を所有します。" #~ msgid "Assigned node" #~ msgstr "割り当てノード" @@ -55434,8 +54978,7 @@ msgstr "" #~ msgstr "移動を再実行するか管理者に連絡してください。" #~ msgid "Agents cannot be updated (maybe there was no field to update)" -#~ msgstr "" -#~ "エージェントが更新できません (更新するフィールドがない可能性があります)" +#~ msgstr "エージェントが更新できません (更新するフィールドがない可能性があります)" #~ msgid "Days of week" #~ msgstr "曜日" @@ -55480,8 +55023,8 @@ msgstr "" #~ msgid "" #~ "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" #~ msgstr "" -#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されま" -#~ "した)" +#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されまし" +#~ "た)" #~ msgid "Successfully deleted from delete pending agents" #~ msgstr "削除待ちエージェントから削除しました" @@ -55535,11 +55078,11 @@ msgstr "" #~ msgstr "マイナーリリースは拒否されました。変更は適用されません。" #~ msgid "" -#~ "Minor release rejected. The database will not be updated and the package " -#~ "will apply." +#~ "Minor release rejected. The database will not be updated and the package will " +#~ "apply." #~ msgstr "" -#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用" -#~ "されます。" +#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用さ" +#~ "れます。" #~ msgid "Database successfully updated" #~ msgstr "データベースを更新しました" @@ -55635,8 +55178,8 @@ msgstr "" #, php-format #~ msgid "" -#~ "This policy exist in node %s with other name (%s). Change the name to '%s' " -#~ "to apply the policy." +#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to " +#~ "apply the policy." #~ msgstr "" #~ "このポリシーは、ノード %s に他の名前(%s)で存在します。 ポリシーを適用するに" #~ "は、名前を '%s' に変更します。" @@ -55701,12 +55244,12 @@ msgstr "" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

Please know that all " -#~ "attempts to access this page are recorded in security logs of Pandora " -#~ "System Database" +#~ "attempts to access this page are recorded in security logs of Pandora System " +#~ "Database" #~ msgstr "" -#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であれば" -#~ "システム管理者へ連絡してください。

このページへのアクセスは、Pandora" -#~ "システムデータベースのセキュリティログに記録されますので注意してください。" +#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であればシ" +#~ "ステム管理者へ連絡してください。

このページへのアクセスは、Pandoraシス" +#~ "テムデータベースのセキュリティログに記録されますので注意してください。" #~ msgid "Welcome to Pandora FMS" #~ msgstr "ようこそ Pandora FMS へ" @@ -55715,11 +55258,10 @@ msgstr "" #~ msgstr "Pandora FMS ヘルプシステム" #~ msgid "" -#~ "Pandora FMS help system has been called with a help reference that " -#~ "currently don't exist. There is no help content to show." +#~ "Pandora FMS help system has been called with a help reference that currently " +#~ "don't exist. There is no help content to show." #~ msgstr "" -#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しませ" -#~ "ん。" +#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。" #~ msgid "Message overview" #~ msgstr "メッセージ概要" @@ -55736,8 +55278,8 @@ msgstr "" #~ msgstr "警告が %d 件あります。" #~ msgid "" -#~ "Your session is over. Please close your browser window to close this " -#~ "Pandora session." +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." #~ msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。" #~ msgid "Pandora FMS Diagnostic tool" @@ -56018,8 +55560,7 @@ msgstr "" #~ msgid "File was partially uploaded. Please try again" #~ msgstr "" -#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてくださ" -#~ "い。" +#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてください。" #~ msgid "Generic upload error" #~ msgstr "一般アップロードエラー" @@ -56091,8 +55632,8 @@ msgstr "" #~ "You must select a Recon Server for the Task, otherwise the Recon Task will " #~ "never run" #~ msgstr "" -#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出" -#~ "は実行されません。" +#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は" +#~ "実行されません。" #~ msgid "Network sweep" #~ msgstr "ネットワーク探査" @@ -56104,9 +55645,9 @@ msgstr "" #~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " #~ "format). If dont want to do a sweep using portscan, left it in blank" #~ msgstr "" -#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 " -#~ "(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場" -#~ "合は、空白にしてください。" +#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 (nmap" +#~ "コマンドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、" +#~ "空白にしてください。" #~ msgid "Choose if the discovery of a new system creates an incident or not." #~ msgstr "新システム検出時のインシデント作成有無の選択" @@ -56115,10 +55656,9 @@ msgstr "" #~ msgstr "SNMP デフォルトコミュニティ" #~ msgid "" -#~ "The current authentication scheme doesn't support creating users from " -#~ "Pandora FMS" -#~ msgstr "" -#~ "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" +#~ "The current authentication scheme doesn't support creating users from Pandora " +#~ "FMS" +#~ msgstr "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" #~ msgid "Profiles defined in Pandora" #~ msgstr "Pandora 内プロファイル" @@ -56160,8 +55700,8 @@ msgstr "" #~ msgstr "Pandora に定義されているモジュールグループ" #~ msgid "" -#~ "If realtime statistics are disabled, statistics interval resfresh will be " -#~ "set here." +#~ "If realtime statistics are disabled, statistics interval resfresh will be set " +#~ "here." #~ msgstr "リアルタイム統計が無効の場合、ここで統計処理間隔を設定します。" #~ msgid "Success updatng OS" @@ -56195,8 +55735,8 @@ msgstr "" #~ "If SSL is not properly configured you will lose access to Pandora FMS " #~ "Console. Do you want to continue?" #~ msgstr "" -#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなりま" -#~ "す。設定を行いますか?" +#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。" +#~ "設定を行いますか?" #~ msgid "Enable GIS features in Pandora Console" #~ msgstr "コンソールで GIS 機能を利用する" @@ -56212,8 +55752,7 @@ msgstr "" #~ "Pandora FMS Console (even admin). Do you want to continue?" #~ msgstr "" #~ "ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、" -#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けます" -#~ "か。" +#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けますか。" #~ msgid "There are no SNMP filters" #~ msgstr "SNMP フィルタがありません。" @@ -56222,8 +55761,8 @@ msgstr "" #~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " #~ "the corresponding fields of this associated \"Default action\"." #~ msgstr "" -#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィール" -#~ "ドの設定が \"デフォルトアクション\" になります。" +#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィールド" +#~ "の設定が \"デフォルトアクション\" になります。" #~ msgid "Query SQL" #~ msgstr "SQL クエリ" @@ -56311,11 +55850,11 @@ msgstr "" #~ msgstr "処理エラー" #~ msgid "" -#~ "In case you use an Export server you can link this module and export data " -#~ "to one these." +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." #~ msgstr "" -#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポート" -#~ "できます。" +#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポートで" +#~ "きます。" #~ msgid "The agent's name must be the same as the one defined at the console" #~ msgstr "" @@ -56400,13 +55939,13 @@ msgstr "" #~ msgstr "複数モジュールコピー" #~ msgid "" -#~ "Please check your Pandora Server setup and be sure that database " -#~ "maintenance daemon is running. It's very important to keep up-to-date " -#~ "database to get the best performance and results in Pandora" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get the " +#~ "best performance and results in Pandora" #~ msgstr "" -#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくだ" -#~ "さい。パフォーマンスを維持するためには、データベースを日々整理することが重要" -#~ "です。" +#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくださ" +#~ "い。パフォーマンスを維持するためには、データベースを日々整理することが重要で" +#~ "す。" #~ msgid "Get data from agent" #~ msgstr "エージェントから収集したデータ" @@ -56415,8 +55954,8 @@ msgstr "" #~ "Please be patient. This operation can take a long time depending on the " #~ "amount of modules." #~ msgstr "" -#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかるこ" -#~ "とがあります。" +#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかること" +#~ "があります。" #~ msgid "Deleting records for all agents" #~ msgstr "全エージェントのレコードの削除中" @@ -56435,8 +55974,7 @@ msgstr "" #~ msgid "Click here to get the data from the agent specified in the select box" #~ msgstr "" -#~ "選択したエージェントからデータを取得するためには、ここをクリックしてくださ" -#~ "い。" +#~ "選択したエージェントからデータを取得するためには、ここをクリックしてください。" #, php-format #~ msgid "Information on agent %s in the database" @@ -56587,8 +56125,8 @@ msgstr "" #~ "At least one map connection must be defined, it will be possible to change " #~ "between the connections in the map" #~ msgstr "" -#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は" -#~ "可能です。" +#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は可" +#~ "能です。" #~ msgid "Group that owns the map" #~ msgstr "マップを利用するグループ" @@ -56600,8 +56138,8 @@ msgstr "" #~ "Each layer can show agents from one group or the agents added to that layer " #~ "or both." #~ msgstr "" -#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加さ" -#~ "れたエージェントを表示できます。" +#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加され" +#~ "たエージェントを表示できます。" #~ msgid "It is possible to edit, delete and reorder the layers." #~ msgstr "編集、削除、レイヤの順番の変更ができます。" @@ -56616,20 +56154,20 @@ msgstr "" #~ msgstr "ファイルを読み込めません" #~ msgid "" -#~ "This extension can run as PHP script in a shell for extract more " -#~ "information, but it must be run as root or across sudo. For example: " -#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" +#~ "This extension can run as PHP script in a shell for extract more information, " +#~ "but it must be run as root or across sudo. For example: sudo php /var/www/" +#~ "pandora_console/extensions/system_info.php -d -s -c" #~ msgstr "" #~ "この拡張は、シェル上で情報を表示するための PHP スクリプトとしても実行できま" -#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/" -#~ "pandora_console/extensions/system_info.php -d -s -c" +#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/pandora_console/" +#~ "extensions/system_info.php -d -s -c" #~ msgid "" -#~ "This tool is used just to view your Pandora FMS system logfiles directly " -#~ "from console" +#~ "This tool is used just to view your Pandora FMS system logfiles directly from " +#~ "console" #~ msgstr "" -#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照す" -#~ "るのに利用します。" +#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照する" +#~ "のに利用します。" #~ msgid "Pandora Diagnostic info" #~ msgstr "Pandora 診断情報" @@ -56647,11 +56185,11 @@ msgstr "" #~ msgstr "ファイル生成" #~ msgid "" -#~ "This extension makes exportation of resource template more easy. Here you " -#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ "This extension makes exportation of resource template more easy. Here you can " +#~ "export as a resource template in Pandora FMS 3.x format (.ptr). " #~ msgstr "" -#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS " -#~ "3.x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " +#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3." +#~ "x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " #~ msgid "VNC view" #~ msgstr "VNCビュー" @@ -56659,16 +56197,16 @@ msgstr "" #, php-format #~ msgid "" #~ "This extension makes registration of server plugins more easy. Here you can " -#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins." -#~ "

You can get more plugins in our Public Resource " -#~ "Library" +#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer " +#~ "to documentation on how to obtain and use Pandora FMS Server Plugins." +#~ "

You can get more plugins in our Public Resource Library" #~ msgstr "" -#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録するこ" -#~ "とができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で" -#~ "行ってください。Pandora FMS サーバプラグインの入手方法についてはドキュメント" -#~ "を参照してください。

プラグインは、
パブリックリソースラ" -#~ "イブラリから入手できます。" +#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録すること" +#~ "ができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で行って" +#~ "ください。Pandora FMS サーバプラグインの入手方法についてはドキュメントを参照し" +#~ "てください。

プラグインは、パブリックリソースライブラリから入手できます。" #~ msgid "Traceroute to " #~ msgstr "以下へのtraceroute " @@ -56688,16 +56226,15 @@ msgstr "" #, php-format #~ msgid "" #~ "This extension makes registration of resource template more easy. Here you " -#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS resources. " -#~ "

You can get more resurces in our
Public Resource " -#~ "Library" +#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please refer " +#~ "to documentation on how to obtain and use Pandora FMS resources.

You " +#~ "can get more resurces in our Public Resource Library" #~ msgstr "" -#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、" -#~ "Pandora FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードでき" -#~ "ます。Pandora FMS リソースの取得および利用方法については、ドキュメントを参照" -#~ "してください。

リソースは、我々のPublic Resource " -#~ "Libraryから取得できます。" +#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、Pandora " +#~ "FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードできます。" +#~ "Pandora FMS リソースの取得および利用方法については、ドキュメントを参照してくだ" +#~ "さい。

リソースは、我々のPublic Resource Libraryから取" +#~ "得できます。" #~ msgid "No agent selected or the agent does not exist" #~ msgstr "エージェントが選択されてないか、存在しません。" @@ -56709,13 +56246,13 @@ msgstr "" #~ msgstr "サーバの接続に失敗しました。" #~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS " -#~ "Enterprise version, for more information visit http://pandorafms.com." +#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise " +#~ "version, for more information visit http://" +#~ "pandorafms.com." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細" -#~ "は、http://pandorafms.com を参照してく" -#~ "ださい。" +#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細は、" +#~ "http://pandorafms.com を参照してくださ" +#~ "い。" #~ msgid "Week" #~ msgstr "週" @@ -56763,16 +56300,15 @@ msgstr "" #~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。" #~ msgid "" -#~ "Please change the default password because is a common vulnerability " -#~ "reported." +#~ "Please change the default password because is a common vulnerability reported." #~ msgstr "脆弱性となるため、デフォルトのパスワードは変更してください。" #~ msgid "" -#~ "Please check that the web server has write rights on the {HOMEDIR}/" -#~ "attachment directory" +#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment " +#~ "directory" #~ msgstr "" -#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認" -#~ "してください。" +#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認し" +#~ "てください。" #~ msgid "Remote configuration directory is not writtable for the console" #~ msgstr "コンソールから、リモート設定ディレクトリに書き込めません。" @@ -56781,11 +56317,11 @@ msgstr "" #~ msgstr "attachmentディレクトリにあるファイルが多すぎます。" #~ msgid "" -#~ "There are too much files in attachment directory. This is not fatal, but " -#~ "you should consider cleaning up your attachment directory manually" +#~ "There are too much files in attachment directory. This is not fatal, but you " +#~ "should consider cleaning up your attachment directory manually" #~ msgstr "" -#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレ" -#~ "クトリの手動での整理をお勧めします。" +#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレク" +#~ "トリの手動での整理をお勧めします。" #~ msgid "files" #~ msgstr "ファイル" @@ -56795,14 +56331,14 @@ msgstr "" #~ msgid "" #~ "Your database is not well maintained. Seems that it have more than 48hr " -#~ "without a proper maintance. Please review Pandora FMS documentation about " -#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " -#~ "as possible" +#~ "without a proper maintance. Please review Pandora FMS documentation about how " +#~ "to execute this maintance process (pandora_db.pl) and enable it as soon as " +#~ "possible" #~ msgstr "" -#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンス" -#~ "がされていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実" -#~ "行に関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効" -#~ "にしてください。" +#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンスが" +#~ "されていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実行に" +#~ "関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効にして" +#~ "ください。" #~ msgid "Default font doesnt exist" #~ msgstr "デフォルトのフォントがありません" @@ -56811,17 +56347,17 @@ msgstr "" #~ "Your defined font doesnt exist or is not defined. Please check font " #~ "parameters in your config" #~ msgstr "" -#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメー" -#~ "タの設定を確認してください。" +#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータ" +#~ "の設定を確認してください。" #~ msgid "" -#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " -#~ "developer mode and should be disabled in a production system. This value is " -#~ "written in the main index.php file" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer " +#~ "mode and should be disabled in a production system. This value is written in " +#~ "the main index.php file" #~ msgstr "" -#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、" -#~ "これは開発用のモードであるため本番システムでは無効にしてください。この設定" -#~ "は、メインの index.php ファイルに書かれています。" +#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、こ" +#~ "れは開発用のモードであるため本番システムでは無効にしてください。この設定は、メ" +#~ "インの index.php ファイルに書かれています。" #~ msgid "Alerts not fired" #~ msgstr "未通知アラート" @@ -56909,8 +56445,8 @@ msgstr "" #~ "Error in creation network module. Id_module_type is not correct for network " #~ "modules." #~ msgstr "" -#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が" -#~ "不正です。" +#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不" +#~ "正です。" #~ msgid "Error in creation network module. Agent name doesn't exists." #~ msgstr "ネットワークモジュール作成エラー。エージェント名が存在しません。" @@ -56938,8 +56474,8 @@ msgstr "" #~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または " -#~ "'SHA' を設定してください。 " +#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' " +#~ "を設定してください。 " #~ msgid "Error in creation SNMP module." #~ msgstr "SNMPモジュール作成エラー。" @@ -56947,10 +56483,8 @@ msgstr "" #~ msgid "Error updating SNMP module. Id_module doesn't exists." #~ msgstr "SNMPモジュール更新エラー。id_module が存在しません。" -#~ msgid "" -#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." -#~ msgstr "" -#~ "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" +#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" #~ msgid "Error in creation SNMP module. Agent name doesn't exists." #~ msgstr "SNMPモジュール作成エラー。エージェント名が存在しません。" @@ -56959,8 +56493,8 @@ msgstr "" #~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " #~ "'AES' or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または " -#~ "'DES' を設定してください。 " +#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' " +#~ "を設定してください。 " #~ msgid "" #~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " @@ -56970,11 +56504,10 @@ msgstr "" #~ "'authNoPriv'、'authPriv'、noAuthNoPriv' のいずれかを設定してください。 " #~ msgid "" -#~ "Error creating network component. Network component name cannot be left " -#~ "blank." +#~ "Error creating network component. Network component name cannot be left blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定され" -#~ "ていません。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されて" +#~ "いません。" #~ msgid "Error updating SNMP module. Id_module exists in the new agent." #~ msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。" @@ -56986,8 +56519,8 @@ msgstr "" #~ "Error creating network component. Network component group cannot be left " #~ "blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指" -#~ "定されていません。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定" +#~ "されていません。" #~ msgid "Error updating plugin module. Id_module cannot be left blank." #~ msgstr "プラグインモジュール更新エラー。id_module が指定されていません。" @@ -57007,8 +56540,8 @@ msgstr "" #~ msgid "" #~ "Error creating plugin component. Plugin component name cannot be left blank." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されてい" -#~ "ません。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていま" +#~ "せん。" #~ msgid "Error updating SNMP module. Id_module cannot be left blank." #~ msgstr "SNMPモジュール更新エラー。id_module が指定されていません。" @@ -57017,17 +56550,16 @@ msgstr "" #~ msgstr "接続しました... 直近24時間のメッセージを取得します..." #~ msgid "" -#~ "Error creating network component. Incorrect value for Network component " -#~ "type field." +#~ "Error creating network component. Incorrect value for Network component type " +#~ "field." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正" -#~ "です。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正で" +#~ "す。" -#~ msgid "" -#~ "Error creating network component. This network component already exists." +#~ msgid "Error creating network component. This network component already exists." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在" -#~ "します。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在し" +#~ "ます。" #~ msgid "Error creating plugin component. Incorrect value for Id plugin." #~ msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。" @@ -57038,19 +56570,16 @@ msgstr "" #~ "す。" #~ msgid "" -#~ "Error creating plugin component. Plugin component group cannot be left " -#~ "blank." +#~ "Error creating plugin component. Plugin component group cannot be left blank." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定さ" -#~ "れていません。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定され" +#~ "ていません。" #~ msgid "" -#~ "Error creating SNMP component. Incorrect value for Snmp component type " -#~ "field." +#~ "Error creating SNMP component. Incorrect value for Snmp component type field." #~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" -#~ msgid "" -#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank." #~ msgstr "" #~ "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" @@ -57058,8 +56587,8 @@ msgstr "" #~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' また" -#~ "は 'SHA' を設定してください。 " +#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または " +#~ "'SHA' を設定してください。 " #~ msgid "" #~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " @@ -57071,8 +56600,7 @@ msgstr "" #~ msgid "" #~ "Error creating SNMP component. Snmp component group cannot be left blank." #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていませ" -#~ "ん。" +#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。" #~ msgid "" #~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " @@ -57084,8 +56612,8 @@ msgstr "" #~ msgid "" #~ "Error creating local component. Local component group cannot be left blank." #~ msgstr "" -#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されて" -#~ "いません。" +#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されてい" +#~ "ません。" #~ msgid "Error updating alert template. Id_template cannot be left blank." #~ msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。" @@ -57093,8 +56621,7 @@ msgstr "" #~ msgid "Error creating alert template." #~ msgstr "アラートテンプレート作成エラー。" -#~ msgid "" -#~ "Error getting module value from all agents. Module name doesn't exists." +#~ msgid "Error getting module value from all agents. Module name doesn't exists." #~ msgstr "" #~ "全エージェントからのモジュール値取得エラー。モジュール名が存在しません。" @@ -57102,11 +56629,9 @@ msgstr "" #~ msgstr "アラートテンプレート作成エラー。テンプレート名が指定されていません。" #~ msgid "" -#~ "Error getting module value from all agents. Module name cannot be left " -#~ "blank." +#~ "Error getting module value from all agents. Module name cannot be left blank." #~ msgstr "" -#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていませ" -#~ "ん。" +#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。" #~ msgid "Error creating local component." #~ msgstr "ローカルコンポーネント作成エラー。" @@ -57158,8 +56683,7 @@ msgstr "" #~ msgstr "プラグイン取得エラー。" #~ msgid "Error assigning module to template. Id_template cannot be left blank." -#~ msgstr "" -#~ "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" +#~ msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" #~ msgid "Error assigning module to template. Id_module cannot be left blank." #~ msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。" @@ -57170,8 +56694,7 @@ msgstr "" #~ msgid "Error assigning module to template." #~ msgstr "テンプレートへのモジュール割当エラー。" -#~ msgid "" -#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgid "Error deleting module template. Id_module_template cannot be left blank." #~ msgstr "" #~ "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" @@ -57193,11 +56716,10 @@ msgstr "" #~ msgid "Error validating all alert policies." #~ msgstr "全アラートポリシーの承諾エラー。" -#~ msgid "" -#~ "Error adding data module to policy. The module is already in the policy." +#~ msgid "Error adding data module to policy. The module is already in the policy." #~ msgstr "" -#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内に" -#~ "あります。" +#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にあ" +#~ "ります。" #~ msgid "Error adding data module to policy." #~ msgstr "ポリシーへのデータモジュール追加エラー。" @@ -57207,8 +56729,8 @@ msgstr "" #~ msgid "Error adding agent to policy. The agent is already in the policy." #~ msgstr "" -#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあ" -#~ "ります。" +#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあり" +#~ "ます。" #~ msgid "Error adding agent to policy. Id_agent cannot be left blank." #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。" @@ -57217,8 +56739,7 @@ msgstr "" #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが存在しません。" #~ msgid "Error adding data module to policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" +#~ msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error adding data module to policy. Module_name cannot be left blank." #~ msgstr "" @@ -57230,19 +56751,17 @@ msgstr "" #~ msgid "" #~ "Error updating network module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークの" -#~ "タイプではありません。" +#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタ" +#~ "イプではありません。" -#~ msgid "" -#~ "Error adding network module to policy. Module_name cannot be left blank." +#~ msgid "Error adding network module to policy. Module_name cannot be left blank." #~ msgstr "" #~ "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていませ" #~ "ん。" #~ msgid "Error adding network module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていませ" -#~ "ん。" +#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error updating data module in policy. Module doesn't exists." #~ msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。" @@ -57268,14 +56787,12 @@ msgstr "" #~ "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリ" #~ "シー内にあります。" -#~ msgid "" -#~ "Error updating network module in policy. Id_policy cannot be left blank." +#~ msgid "Error updating network module in policy. Id_policy cannot be left blank." #~ msgstr "" #~ "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。" #~ msgid "" -#~ "Error updating plugin module in policy. Id_policy_module cannot be left " -#~ "blank." +#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank." #~ msgstr "" #~ "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていませ" #~ "ん。" @@ -57283,11 +56800,10 @@ msgstr "" #~ msgid "" #~ "Error adding plugin module to policy. The module is already in the policy." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー" -#~ "内にあります。" +#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内" +#~ "にあります。" -#~ msgid "" -#~ "Error updating plugin module in policy. Id_policy cannot be left blank." +#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank." #~ msgstr "" #~ "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。" @@ -57303,27 +56819,23 @@ msgstr "" #~ msgstr "ポリシーへのプラグインモジュール追加エラー。" #~ msgid "Error updating network module in policy. Module doesn't exists." -#~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" +#~ msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" -#~ msgid "" -#~ "Error adding plugin module to policy. Module_name cannot be left blank." +#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていませ" -#~ "ん。" +#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。" #~ msgid "" #~ "Error updating network module in policy. Id_policy_module cannot be left " #~ "blank." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていま" -#~ "せん。" +#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていませ" +#~ "ん。" -#~ msgid "" -#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgid "Error updating plugin module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタ" -#~ "イプではありません。" +#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイ" +#~ "プではありません。" #~ msgid "Error updating plugin module in policy. Module doesn't exists." #~ msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" @@ -57335,21 +56847,21 @@ msgstr "" #~ "Are you sure to sort the items into the report?\\nThis action change the " #~ "sorting of items into data base." #~ msgstr "" -#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの" -#~ "並びを変更します。" +#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並" +#~ "びを変更します。" #~ msgid "" #~ "The new Update Manager " #~ "client is shipped with Pandora FMS It helps system administrators to update " #~ "their Pandora FMS automatically, since the Update Manager does the task of " -#~ "getting new modules, new plugins and new features (even full migrations " -#~ "tools for future versions) automatically." +#~ "getting new modules, new plugins and new features (even full migrations tools " +#~ "for future versions) automatically." #~ msgstr "" -#~ "新しいアップデートマネー" -#~ "ジャクライアントは、Pandora FMSと一緒にリリースされています。アップデー" -#~ "トマネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するも" -#~ "の(フルマイグレーションツールは将来対応予定)であり、これによりシステム管理者" -#~ "がPandora FMSを自動的に更新するのに役に立つでしょう。" +#~ "新しいアップデートマネージャ" +#~ "クライアントは、Pandora FMSと一緒にリリースされています。アップデートマ" +#~ "ネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するもの(フ" +#~ "ルマイグレーションツールは将来対応予定)であり、これによりシステム管理者が" +#~ "Pandora FMSを自動的に更新するのに役に立つでしょう。" #~ msgid "Correct updating of alert template" #~ msgstr "アラートテンプレートの更新内容を修正してください" @@ -57364,8 +56876,7 @@ msgstr "" #~ msgstr "全ポリシーアラートの承諾内容を修正してください。" #~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" +#~ msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" #~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." #~ msgstr "" @@ -57378,14 +56889,13 @@ msgstr "" #~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " #~ "modules." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用" -#~ "になっていません。" +#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用に" +#~ "なっていません。" -#~ msgid "" -#~ "Error adding SNMP module to policy. The module is already in the policy." +#~ msgid "Error adding SNMP module to policy. The module is already in the policy." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在し" -#~ "ます。" +#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在しま" +#~ "す。" #~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." #~ msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。" @@ -57400,15 +56910,14 @@ msgstr "" #~ msgid "Error updating SNMP module in policy. Module type is not SNMP type." #~ msgstr "" -#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありませ" -#~ "ん。" +#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありません。" #~ msgid "" -#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' " +#~ "or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' " -#~ "を指定してください。 " +#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を" +#~ "指定してください。 " #~ msgid "" #~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " @@ -57418,11 +56927,11 @@ msgstr "" #~ "ん。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを指定してください。 " #~ msgid "" -#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' " +#~ "or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または " -#~ "'SHA' を指定してください。 " +#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' " +#~ "を指定してください。 " #~ msgid "Error applying policy. Id_policy cannot be left blank." #~ msgstr "ポリシー適用エラー。id_policy が指定されていません。" @@ -57487,13 +56996,13 @@ msgstr "" #~ "Error creating module from network component. Network component doesn't " #~ "exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネ" -#~ "ントが存在しません。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネン" +#~ "トが存在しません。" #~ msgid "Error creating module from network component. Agent doesn't exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しま" -#~ "せん。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しませ" +#~ "ん。" #~ msgid "Error creating module from network component. Error creating module." #~ msgstr "" @@ -57503,29 +57012,29 @@ msgstr "" #~ "When the agent name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで" -#~ "切る必要があります。" +#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" +#~ "る必要があります。" #~ msgid "" #~ "When the module name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" -#~ "る必要があります。" +#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る" +#~ "必要があります。" #~ msgid "" -#~ "When the description name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." +#~ "When the description name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要が" -#~ "あります。" +#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があ" +#~ "ります。" #~ msgid "" -#~ "When the item title name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." +#~ "When the item title name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字" -#~ "までで切る必要があります。" +#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字ま" +#~ "でで切る必要があります。" #~ msgid "Blank characters are used as AND conditions" #~ msgstr "スペースは、AND 条件です。" @@ -57551,8 +57060,8 @@ msgstr "" #~ "There was a problem updating the incident, please check if any field was " #~ "modified and the values are correct." #~ msgstr "" -#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認" -#~ "してください。" +#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認し" +#~ "てください。" #~ msgid "Incident created" #~ msgstr "インシデントを作成しました" @@ -57576,21 +57085,20 @@ msgstr "" #~ "When it is set as \"yes\" in some important sections check if the user have " #~ "gone from url Pandora." #~ msgstr "" -#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移" -#~ "してきたかどうかをチェックします。" +#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移し" +#~ "てきたかどうかをチェックします。" #~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" #~ msgstr "" -#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコ" -#~ "ンが利用されます。" +#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコン" +#~ "が利用されます。" #~ msgid "" -#~ "This enabling this, you get a label with agent name in GIS maps. If you " -#~ "have lots of agents in the map, will be unreadable. Disabled by default." +#~ "This enabling this, you get a label with agent name in GIS maps. If you have " +#~ "lots of agents in the map, will be unreadable. Disabled by default." #~ msgstr "" -#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ" -#~ "内に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効で" -#~ "す。" +#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ内" +#~ "に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効です。" #~ msgid "All Modules deleted succesfully" #~ msgstr "すべてのモジュールを削除しました" @@ -57623,8 +57131,7 @@ msgstr "" #, php-format #~ msgid "There was a problem deleting %s modules, none deleted." #~ msgstr "" -#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていませ" -#~ "ん。" +#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていません。" #~ msgid "No Validated" #~ msgstr "未承諾" @@ -57637,8 +57144,8 @@ msgstr "" #~ "number is reached then a warning message will appear in the header " #~ "notification space." #~ msgstr "" -#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、" -#~ "コンソールのヘッダ部分に警告メッセージが現れます。" +#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、コ" +#~ "ンソールのヘッダ部分に警告メッセージが現れます。" #~ msgid "Events by criticity" #~ msgstr "重要度で分類したイベント" @@ -57698,18 +57205,18 @@ msgstr "" #~ "estado_agente to show agent detail view" #~ msgstr "" #~ "ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳" -#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/" -#~ "agentes/estado_agente を入力すると、エージェント詳細が表示されます。" +#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/agentes/" +#~ "estado_agente を入力すると、エージェント詳細が表示されます。" #~ msgid "Error in agent enabling/disabling." #~ msgstr "エージェント有効化/無効化エラー" #~ msgid "" -#~ "By default, in Windows, Pandora FMS only support Standard network sweep, " -#~ "not custom scripts" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " +#~ "custom scripts" #~ msgstr "" -#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみ" -#~ "の対応で、カスタムスクリプトは使えません。" +#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの" +#~ "対応で、カスタムスクリプトは使えません。" #~ msgid "Output format" #~ msgstr "出力フォーマット" @@ -57735,8 +57242,7 @@ msgstr "" #~ msgid "" #~ "WARNING: If you edit this planned downtime, the data of future SLA reports " #~ "may be altered" -#~ msgstr "" -#~ "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" +#~ msgstr "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" #~ msgid "Only it is show when
the agent is saved." #~ msgstr "エージェントが保存されたときのみ
表示されます。" @@ -57815,18 +57321,18 @@ msgstr "" #~ msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています" #~ msgid "" -#~ "Most likely you have recently upgraded from an earlier version of Pandora " -#~ "and either
\n" +#~ "Most likely you have recently upgraded from an earlier version of Pandora and " +#~ "either
\n" #~ "\t\t\t\t1) forgot to use the database converter
\n" #~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " #~ "#2124706 for the solution)
\n" #~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" #~ msgstr "" -#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれか" -#~ "が考えられます。
\n" +#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが" +#~ "考えられます。
\n" #~ "\t\t\t\t1) データベース変換の実行し忘れ
\n" -#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレ" -#~ "ポート #2124706 を参照)
\n" +#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポー" +#~ "ト #2124706 を参照)
\n" #~ "\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください" #~ msgid "Module macros" @@ -57845,8 +57351,8 @@ msgstr "" #~ "If cron is set the module interval is ignored and the module runs on the " #~ "specified date and time" #~ msgstr "" -#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定" -#~ "された日時に実行されます。" +#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定さ" +#~ "れた日時に実行されます。" #~ msgid "Activate this to prevent the relation from being updated or deleted" #~ msgstr "更新や削除に対しても関係を維持するには、これを有効にしてください" @@ -57953,30 +57459,30 @@ msgstr "" #~ msgstr "お待ちください..." #~ msgid "" -#~ "Set this value when your PandoraFMS across inverse proxy or for example " -#~ "with mod_proxy of Apache." +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." #~ msgstr "" -#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利" -#~ "用している場合などに、この値を設定してください。" +#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用" +#~ "している場合などに、この値を設定してください。" #~ msgid "" -#~ "If set to yes no events or alerts will be generated, but agents will " -#~ "continue receiving data." +#~ "If set to yes no events or alerts will be generated, but agents will continue " +#~ "receiving data." #~ msgstr "" -#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデー" -#~ "タの受信を継続します。" +#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデータ" +#~ "の受信を継続します。" #~ msgid "Directory where the server logs are stored." #~ msgstr "サーバのログを保存するディレクトリ。" #~ msgid "" -#~ "Configuration of our clippy, 'full mode' show the icon in the header and " -#~ "the contextual helps and it is noise, 'on demand' it is equal to full but " -#~ "it is not noise and 'expert' the icons in the header and the context is not." +#~ "Configuration of our clippy, 'full mode' show the icon in the header and the " +#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is " +#~ "not noise and 'expert' the icons in the header and the context is not." #~ msgstr "" -#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示され" -#~ "うるさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはあり" -#~ "ません。'上級者' はヘッダーにアイコンとヘルプが表示されません。" +#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示されう" +#~ "るさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはありませ" +#~ "ん。'上級者' はヘッダーにアイコンとヘルプが表示されません。" #~ msgid "Allow create planned downtimes in the past" #~ msgstr "終了した計画停止の作成を許可する" @@ -57985,8 +57491,7 @@ msgstr "" #~ msgstr "終了した計画停止の作成は SLA レポートに影響します" #~ msgid "" -#~ "This interval will affect to the lines between elements on the Visual " -#~ "Console" +#~ "This interval will affect to the lines between elements on the Visual Console" #~ msgstr "これは、ビジュアルコンソール上の要素間の線に影響します。" #~ msgid "" @@ -57995,8 +57500,8 @@ msgstr "" #~ "console." #~ msgstr "" #~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" で" -#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードでき" -#~ "ます。" +#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできま" +#~ "す。" #~ msgid "Paginate module view" #~ msgstr "モジュール表示をページ分割" @@ -58040,12 +57545,11 @@ msgstr "" #~ "If the compaction or purge of the data is more frequent than the events " #~ "deletion, anomalies in module graphs could appear" #~ msgstr "" -#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしく" -#~ "なる可能性があります" +#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしくな" +#~ "る可能性があります" #~ msgid "" -#~ "Configure a purge period more frequent than a compact data period has no " -#~ "sense" +#~ "Configure a purge period more frequent than a compact data period has no sense" #~ msgstr "データの圧縮よりも削除を短くすることには意味がありません" #~ msgid "To get your Pandora FMS Enterprise License:" @@ -58060,17 +57564,17 @@ msgstr "" #~ "Your PHP has set memory limit in %s. For avoid problems with big updates " #~ "please set to 500M" #~ msgstr "" -#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるため" -#~ "には、500M に設定してください。" +#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるために" +#~ "は、500M に設定してください。" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, remove remote server address " -#~ "from Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, remove remote server address from " +#~ "Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェン" -#~ "トおよびモジュール数) を送信します。これを無効にするには、アップデートマネー" -#~ "ジャプラグインの設定で、リモートサーバアドレスを削除します。" +#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェント" +#~ "およびモジュール数) を送信します。これを無効にするには、アップデートマネージャ" +#~ "プラグインの設定で、リモートサーバアドレスを削除します。" #~ msgid "Checking for the newest package." #~ msgstr "最新パッケージの確認中。" @@ -58082,8 +57586,8 @@ msgstr "" #~ msgstr "ブラウズしてください" #~ msgid "" -#~ "Remember that this package will override the actual Pandora FMS files and " -#~ "it is recommended to do a backup before continue with the update." +#~ "Remember that this package will override the actual Pandora FMS files and it " +#~ "is recommended to do a backup before continue with the update." #~ msgstr "" #~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してくださ" #~ "い。アップデートを実行する前にバックアップを取得してください。" @@ -58094,8 +57598,7 @@ msgstr "" #~ msgid "Package updated successfully." #~ msgstr "パッケージを更新しました。" -#~ msgid "" -#~ "If there are any database change, it will be applied on the next login." +#~ msgid "If there are any database change, it will be applied on the next login." #~ msgstr "データベース変更がある場合は、次回のログイン時に適用されます。" #~ msgid "Package not updated." @@ -58114,15 +57617,15 @@ msgstr "" #~ msgstr "サービスの更新エラー" #~ msgid "" -#~ "In manual mode you should set the weights manually. In auto mode the " -#~ "weights have default values.\n" +#~ "In manual mode you should set the weights manually. In auto mode the weights " +#~ "have default values.\n" #~ "\t\tIn simple mode only the elements configured as \"critical element\" are " #~ "used to calculate the service status." #~ msgstr "" -#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウ" -#~ "エイトはデフォルトの値があります。\n" -#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計" -#~ "算に利用されます。" +#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウエ" +#~ "イトはデフォルトの値があります。\n" +#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計算" +#~ "に利用されます。" #~ msgid "This values are by default because the service is auto calculate mode." #~ msgstr "サービスが自動計算モードのため、デフォルト値です。" @@ -58172,16 +57675,15 @@ msgstr "" #~ msgid "Ok weight" #~ msgstr "正常ウエイト" -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" +#~ msgid "Only the critical elements are relevant to calculate the service status" #~ msgstr "障害状態のもののみがサービス状態の計算に使われます" #~ msgid "" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." #~ msgstr "" -#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにあり" -#~ "ません。" +#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにありま" +#~ "せん。" #~ msgid "Update all" #~ msgstr "全て更新" @@ -58259,8 +57761,8 @@ msgstr "" #~ "Since the alert can have multiple actions. You can edit them from the alert " #~ "list of events." #~ msgstr "" -#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集すること" -#~ "ができます。" +#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することが" +#~ "できます。" #~ msgid "Event rules" #~ msgstr "イベントルール" @@ -58332,8 +57834,7 @@ msgstr "" #~ msgid "Number of days before data is transfered to history database." #~ msgstr "ヒストリデータベースへのデータ転送を行わない日数" -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)" #~ msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)" #~ msgid "Time interval between data transfer." @@ -58343,22 +57844,22 @@ msgstr "" #~ "Before activating this option check your ACL Setup. You may lose access to " #~ "the console." #~ msgstr "" -#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのア" -#~ "クセスができなくなる可能性があります。" +#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアク" +#~ "セスができなくなる可能性があります。" #~ msgid "" #~ "The inventory modules included in the changes blacklist will not generate " #~ "events when change." #~ msgstr "" -#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを" -#~ "生成しません。" +#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを生" +#~ "成しません。" #~ msgid "" #~ "Rules applied to the management of passwords. This policy applies to all " #~ "users except the administrator." #~ msgstr "" -#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適" -#~ "用されます。" +#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用" +#~ "されます。" #~ msgid "Remote Pandora FMS" #~ msgstr "リモートの Pandora FMS" @@ -58381,21 +57882,20 @@ msgstr "" #~ "This license allows %d agents and you have %d agents configured." #~ msgstr "" #~ "ライセンスの上限を超えています " -#~ "

このライセンスは %d エージェントまでですが、%d エージェントが設定さ" -#~ "れています。" +#~ "

このライセンスは %d エージェントまでですが、%d エージェントが設定され" +#~ "ています。" #~ msgid "" #~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" +#~ "Enterprise directory in the console.

Or contact Artica at info@artica." +#~ "es for a valid license:" #~ msgstr "" -#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリ" -#~ "ネームして Enterprise 版を無効化するか、

Artica (info@artica.es) まで" -#~ "ライセンスに関してお問い合わせください:" +#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリネー" +#~ "ムして Enterprise 版を無効化するか、

Artica (info@artica.es) までライセ" +#~ "ンスに関してお問い合わせください:" #~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" +#~ msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" #~ msgid "Top N Events by agent." #~ msgstr "エージェントごとのトップ N イベント" @@ -58630,8 +58130,8 @@ msgstr "" #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" +#~ "Error creating/updating the followings elements groups/profiles/user profiles " +#~ "(%d/%d/%d)" #~ msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)" #, php-format @@ -58676,8 +58176,7 @@ msgstr "" #~ msgid "Visual" #~ msgstr "表示" -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgid "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 " #~ msgid "There aren't server added to metaconsole" @@ -58748,8 +58247,8 @@ msgstr "" #~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " #~ "Console." #~ msgstr "" -#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコン" -#~ "ソールの IP が設定されていない可能性があります。" +#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコンソー" +#~ "ルの IP が設定されていない可能性があります。" #~ msgid "Successfully moved" #~ msgstr "移動しました" @@ -58762,9 +58261,9 @@ msgstr "" #~ "any group with that name, will be created if check box is selected. " #~ "Destination group filter is just used to check agents in that group" #~ msgstr "" -#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場" -#~ "合、チェックボックスがチェックされていると作成されます。移行先のグループフィ" -#~ "ルタは、エージェントがグループにあるかどうかのみのチェックに利用されます。" +#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場合、" +#~ "チェックボックスがチェックされていると作成されます。移行先のグループフィルタ" +#~ "は、エージェントがグループにあるかどうかのみのチェックに利用されます。" #~ msgid "Based on name" #~ msgstr "名前ベース" @@ -58778,8 +58277,8 @@ msgstr "" #~ msgstr "Pandora FMS の利用には、以下を使うことを強くお勧めします" #~ msgid "" -#~ "Mozilla Firefox or " -#~ "Google Chrome browsers." +#~ "Mozilla Firefox or Google Chrome browsers." #~ msgstr "" #~ "Mozilla Firefox または Google Chrome ブラウザ。" @@ -58924,8 +58423,8 @@ msgstr "" #~ "Maybe the first run is not exactly equal to this value because the cron " #~ "configuration is diferent." #~ msgstr "" -#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可" -#~ "能性があります。" +#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可能" +#~ "性があります。" #~ msgid "First execution" #~ msgstr "初回実行" @@ -58995,8 +58494,7 @@ msgstr "" #~ msgstr "モジュールがありません。" #~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Pandora データベースバックアップのリストは、手動実行する必要があります" +#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" #~ msgid "Run import command using the following command" #~ msgstr "次のコマンドを使って、インポートコマンドを実行します" @@ -59030,15 +58528,15 @@ msgstr "" #~ "\"Translate string\" extension is missed in the server. This extension is " #~ "mandatory to be configured on metaconsole." #~ msgstr "" -#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が" -#~ "必須です。" +#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必" +#~ "須です。" #~ msgid "" #~ "Server name doesnt match. Check the node server name and configure the same " #~ "one on metasetup" #~ msgstr "" -#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか" -#~ "確認してください" +#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確" +#~ "認してください" #~ msgid "Module store the service does not exist." #~ msgstr "サービスを保存するモジュールがありません。" @@ -59081,9 +58579,9 @@ msgstr "" #~ "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " #~ "time to learn how to use the power of Pandora FMS!" #~ msgstr "" -#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリ" -#~ "ンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには" -#~ "時間が必要です。" +#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリン" +#~ "クを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間" +#~ "が必要です。" #~ msgid "Go to Pandora FMS Website" #~ msgstr "Pandora FMS のウェブサイトへ" @@ -59092,27 +58590,27 @@ msgstr "" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." #~ msgstr "" -#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザは" -#~ "サポートしていません。" +#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザはサ" +#~ "ポートしていません。" #~ msgid "" -#~ "It is highly recommended that you choose and install a modern browser. It " -#~ "is free of charge and only takes a couple of minutes." +#~ "It is highly recommended that you choose and install a modern browser. It is " +#~ "free of charge and only takes a couple of minutes." #~ msgstr "" -#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了" -#~ "します。" +#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了し" +#~ "ます。" #~ msgid "Why is it recommended to upgrade the web browser?" #~ msgstr "なぜブラウザのアップグレードを推奨するのでしょうか?" #~ msgid "" #~ "New browsers usually come with support for new technologies, increasing web " -#~ "page speed, better privacy settings and so on. They also resolve security " -#~ "and functional issues." +#~ "page speed, better privacy settings and so on. They also resolve security and " +#~ "functional issues." #~ msgstr "" -#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー" -#~ "設定の強化等が行われています。また、セキュリティホールや不具合の解消も行われ" -#~ "ています。" +#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー設" +#~ "定の強化等が行われています。また、セキュリティホールや不具合の解消も行われてい" +#~ "ます。" #~ msgid "Continue despite this warning" #~ msgstr "警告を無視して続ける" @@ -59145,8 +58643,7 @@ msgstr "" #~ "Agent statuses are re-calculated by the server, they are not shown in real " #~ "time." #~ msgstr "" -#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されませ" -#~ "ん。" +#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。" #~ msgid "one combined graph" #~ msgstr "一つの組み合わせグラフ" @@ -59170,8 +58667,8 @@ msgstr "" #~ "Show events is disabled because this Pandora node is set the event " #~ "replication." #~ msgstr "" -#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効" -#~ "です。" +#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効で" +#~ "す。" #~ msgid "Show event graph" #~ msgstr "イベントグラフ表示" @@ -59195,8 +58692,7 @@ msgstr "" #~ msgstr "ショートカットバー" #~ msgid "" -#~ "This will activate a shortcut bar with alerts, events, messages... " -#~ "information" +#~ "This will activate a shortcut bar with alerts, events, messages... information" #~ msgstr "" #~ "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。" @@ -59212,8 +58708,7 @@ msgstr "" #~ "wikiを参照してください" #~ msgid "" -#~ "There is a error in the message from your Integria or there is not " -#~ "connection." +#~ "There is a error in the message from your Integria or there is not connection." #~ msgstr "Integria からのメッセージにエラーがあるか、接続できません。" #~ msgid "Opened tickets" @@ -59229,8 +58724,8 @@ msgstr "" #~ "You can set the command path in the menu Administration -> Extensions -" #~ "> Config Network Tools" #~ msgstr "" -#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設" -#~ "定できます。" +#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設定" +#~ "できます。" #~ msgid "Config Network Tools" #~ msgstr "ネットワークツール設定" @@ -59315,8 +58810,8 @@ msgstr "" #~ "close me and never see me again." #~ msgstr "" #~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント " -#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示し" -#~ "ないようにもできます。" +#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示しな" +#~ "いようにもできます。" #~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent" #~ msgstr "" @@ -59329,8 +58824,8 @@ msgstr "" #~ msgid "Error updating data module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイ" -#~ "プではありません。" +#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプ" +#~ "ではありません。" #~ msgid "Error in netflow filter creation. Filter name cannot be left blank." #~ msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。" @@ -59401,30 +58896,30 @@ msgstr "" #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or \n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or \n" #~ "\t\t\tthe database server is not running." #~ msgstr "" -#~ "データベースに接続できません。include/config.phpファイルで、データ" -#~ "ベースの設定を確認してください。

\n" -#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくない" -#~ "かまたは、\n" +#~ "データベースに接続できません。include/config.phpファイルで、データベー" +#~ "スの設定を確認してください。

\n" +#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくないか" +#~ "または、\n" #~ "\t\t\t データベースサーバが動作していません。" #~ msgid "" #~ "If you have modified auth system, this problem could be because Pandora " -#~ "cannot override authorization variables from the config database. Remove " -#~ "them from your database by executing:
DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
" +#~ "cannot override authorization variables from the config database. Remove them " +#~ "from your database by executing:
DELETE FROM tconfig WHERE token = "
+#~ "\"auth\";
" #~ msgstr "" -#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定" -#~ "では認証方法を上書きできないためです。次のクエリを実行することにより、それら" -#~ "をデータベースから削除してください。:
DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
" +#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定で" +#~ "は認証方法を上書きできないためです。次のクエリを実行することにより、それらを" +#~ "データベースから削除してください。:
DELETE FROM tconfig WHERE token "
+#~ "= \"auth\";
" #~ msgid "" -#~ "Cannot load configuration variables from database. Please check your " -#~ "database setup in the\n" +#~ "Cannot load configuration variables from database. Please check your database " +#~ "setup in the\n" #~ "\t\t\tinclude/config.php file.

\n" #~ "\t\t\tMost likely your database schema has been created but there are is no " #~ "data in it, you have a problem with the database access credentials or your " @@ -59434,15 +58929,14 @@ msgstr "" #~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " #~ "to fix this problem.
" #~ msgstr "" -#~ "データベースから設定を読み込めません。include/config.phpファイルの" -#~ "データベース設定を確認してください。

\n" -#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データ" -#~ "ベースへのアクセス権限が無い、またはスキーマが古いといったことが考えられま" -#~ "す。\n" -#~ "\t\t\t

または、Pandora FMS コンソールが include/config.php " -#~ "ファイルを見つけられないか、このファイルが不正な\n" -#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に" -#~ "はドキュメントを参照してください。
" +#~ "データベースから設定を読み込めません。include/config.phpファイルのデー" +#~ "タベース設定を確認してください。

\n" +#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データベー" +#~ "スへのアクセス権限が無い、またはスキーマが古いといったことが考えられます。\n" +#~ "\t\t\t

または、Pandora FMS コンソールが include/config.php ファ" +#~ "イルを見つけられないか、このファイルが不正な\n" +#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には" +#~ "ドキュメントを参照してください。
" #~ msgid "" #~ "Pandora FMS Console cannot find include/config.php or this file has " @@ -59452,19 +58946,19 @@ msgstr "" #~ msgstr "" #~ "Pandora FMS コンソールが include/config.php ファイルを見つけられない" #~ "か、このファイルが不正な\n" -#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に" -#~ "はドキュメントを参照してください。
" +#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には" +#~ "ドキュメントを参照してください。
" #~ msgid "" #~ "For security reasons, normal operation is not possible until you delete " #~ "installer file.\n" -#~ "\t\t\tPlease delete the ./install.php file before running Pandora " -#~ "FMS Console." +#~ "\t\t\tPlease delete the ./install.php file before running Pandora FMS " +#~ "Console." #~ msgstr "" -#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはな" -#~ "りません。\n" -#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削" -#~ "除してください。" +#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなり" +#~ "ません。\n" +#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除" +#~ "してください。" #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " @@ -59473,15 +58967,15 @@ msgstr "" #~ "owner \n" #~ "\t\t\t(usually www-data or http daemon user), normal operation is not " #~ "possible until you change \n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" -#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要" -#~ "があります。\"other\" ユーザは\n" -#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモン" -#~ "ユーザ)でのみ書き込み\n" -#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッション" -#~ "を変更しないと、通常の動作\n" +#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要が" +#~ "あります。\"other\" ユーザは\n" +#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモンユー" +#~ "ザ)でのみ書き込み\n" +#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッションを" +#~ "変更しないと、通常の動作\n" #~ "\t\t\t にはなりません。セキュリティのために調整を実施してください。" #~ msgid "Auto Save" @@ -59491,11 +58985,11 @@ msgstr "" #~ msgstr "保存できませんでした" #~ msgid "" -#~ "You can not delete the last group in Pandora. A common installation must " -#~ "has almost one group." +#~ "You can not delete the last group in Pandora. A common installation must has " +#~ "almost one group." #~ msgstr "" -#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければな" -#~ "りません。" +#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければなり" +#~ "ません。" #~ msgid "There is a unknown error." #~ msgstr "不明なエラーがあります。" @@ -59579,8 +59073,8 @@ msgstr "" #~ "To disable, change it on your PHP configuration file (php.ini) and put " #~ "safe_mode = Off (Dont forget restart apache process after changes)" #~ msgstr "" -#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定" -#~ "します。 (変更後、apache プロセスの再起動を忘れずに行ってください)" +#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定し" +#~ "ます。 (変更後、apache プロセスの再起動を忘れずに行ってください)" #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "ページ分割されたモジュール一覧表示は、画面設定で設定してください。" @@ -59589,8 +59083,8 @@ msgstr "" #~ msgstr "イベント情報 (1時間)" #~ msgid "" -#~ "Event storm protection is activated. No events will be generated during " -#~ "this mode." +#~ "Event storm protection is activated. No events will be generated during this " +#~ "mode." #~ msgstr "" #~ "イベントストーム保護が有効です。このモードではイベントが生成されません。" @@ -59620,16 +59114,16 @@ msgstr "" #~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For " #~ "avoid problems with big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな" -#~ "更新時に問題にならないよう、100M に設定してください。" +#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな更" +#~ "新時に問題にならないよう、100M に設定してください。" #, php-format #~ msgid "" -#~ "Your PHP has set post parameter max size limit in %s. For avoid problems " -#~ "with big updates please set to 100M" +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with " +#~ "big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時" -#~ "に問題にならないよう、100M に設定してください。" +#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に" +#~ "問題にならないよう、100M に設定してください。" #~ msgid "Module data received" #~ msgstr "データ受信モジュール" @@ -59637,8 +59131,8 @@ msgstr "" #~ msgid "" #~ "Unsucessful delete profile. Because the profile is used by some admin users." #~ msgstr "" -#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われ" -#~ "います。" +#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われい" +#~ "ます。" #~ msgid "Unsuccessfull multiple delete." #~ msgstr "複数削除に失敗しました。" @@ -59676,8 +59170,8 @@ msgstr "" #~ "The user doesn't have permission to read agents. Please contact with your " #~ "pandora administrator." #~ msgstr "" -#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくだ" -#~ "さい。" +#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくださ" +#~ "い。" #~ msgid "Please choose other server." #~ msgstr "他のサーバを選択してください。" @@ -59726,18 +59220,18 @@ msgstr "" #, php-format #~ msgid "" -#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " -#~ "set this value with upper values." +#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set " +#~ "this value with upper values." #~ msgstr "" -#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけ" -#~ "ません。" +#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけま" +#~ "せん。" #~ msgid "" -#~ "If this option is enabled, the users can use double authentication with " -#~ "their accounts" +#~ "If this option is enabled, the users can use double authentication with their " +#~ "accounts" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができ" -#~ "ます。" +#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができま" +#~ "す。" #~ msgid "This is defined in minutes" #~ msgstr "分単位で設定します" @@ -59767,8 +59261,8 @@ msgstr "" #~ "With this option enabled, the user will can access to accurate information. " #~ "It is not recommended for admin users because performance could be affected" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすること" -#~ "ができます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" +#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすることが" +#~ "できます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" #~ msgid "No tag selected" #~ msgstr "タグが選択されていません" @@ -59792,8 +59286,7 @@ msgstr "" #~ msgstr "DB Pandora にはすべてのテーブルが揃っています" #, php-format -#~ msgid "" -#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" #~ msgstr "" #~ "DB Pandora にはすべてのテーブルが揃っていません。不足テーブルは (%s) です。" @@ -59801,13 +59294,12 @@ msgstr "" #~ msgid "" #~ "Unsuccessful the field %s in the table %s must be setted the type with %s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要がありま" -#~ "す。" +#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要があります。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the null values " -#~ "with %s." +#~ "Unsuccessful the field %s in the table %s must be setted the null values with " +#~ "%s." #~ msgstr "" #~ "フィールド %s (テーブル %s 内)は、%s の null 値に設定されている必要がありま" #~ "す。" @@ -59817,22 +59309,21 @@ msgstr "" #~ "Unsuccessful the field %s in the table %s must be setted the key as defined " #~ "in the SQL file." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが" -#~ "設定されている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが設" +#~ "定されている必要があります。" #~ msgid "Please check the SQL file for to know the kind of key needed." #~ msgstr "必要なキーを特定するには、SQL ファイルを確認してください。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the default value " -#~ "as %s." +#~ "Unsuccessful the field %s in the table %s must be setted the default value as " +#~ "%s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があ" -#~ "ります。" +#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があり" +#~ "ます。" -#~ msgid "" -#~ "Please check the SQL file for to know the kind of default value needed." +#~ msgid "Please check the SQL file for to know the kind of default value needed." #~ msgstr "必要なデフォルト値を特定するには、SQL ファイルを確認してください。" #, php-format @@ -59840,8 +59331,8 @@ msgstr "" #~ "Unsuccessful the field %s in the table %s must be setted as defined in the " #~ "SQL file." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定され" -#~ "ている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定されて" +#~ "いる必要があります。" #~ msgid "Units. Value" #~ msgstr "単位" @@ -59880,16 +59371,16 @@ msgstr "" #~ "This item is affected by a malformed planned downtime. Go to the planned " #~ "downtimes section to solve this." #~ msgstr "" -#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだい" -#~ "さい。" +#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだいさ" +#~ "い。" #~ msgid "Netflow Statistics" #~ msgstr "Netflow 統計" #~ msgid "" -#~ "Illegal query: Due security restrictions, there are some tokens or words " -#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, " -#~ "insert or update." +#~ "Illegal query: Due security restrictions, there are some tokens or words you " +#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " +#~ "update." #~ msgstr "" #~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: " #~ "*, delete, drop, alter, modify, union, password, pass, insert または update" @@ -59900,9 +59391,9 @@ msgstr "" #~ "update_manager&tab=online\"> go to Administration:Setup:Update Manager " #~ "for more details." #~ msgstr "" -#~ "新たな更新があります。詳細は、管理" -#~ "メニューのアップデートマネージャを参照してください。" +#~ "新たな更新があります。詳細は、管理メ" +#~ "ニューのアップデートマネージャを参照してください。" #~ msgid "Netflow Pie" #~ msgstr "NetFlow円グラフ" @@ -59992,15 +59483,14 @@ msgstr "" #~ msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。" #~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions " -#~ "go to Update Manager for " -#~ "more details." -#~ msgstr "" -#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照" -#~ "してください。" +#~ "update_manager/update_manager&tab=online\">go to Update Manager for more " +#~ "details." +#~ msgstr "" +#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照してください。" #~ msgid "Error enable/disable agent. Id_agent cannot be left blank." #~ msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。" @@ -60018,12 +59508,12 @@ msgstr "" #~ "pandorafms.com/Library/Library/'>Public Resource Library " #~ msgstr "" #~ "この拡張は、サーバプラグインの登録を簡単にします。\n" -#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインを" -#~ "アップロードできます。\n" -#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照し" -#~ "てください。\n" -#~ "\t\t\t\t\t\t

多くのプラグインを、我々のリソースライブラリから取得できます。 " +#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインをアッ" +#~ "プロードできます。\n" +#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照して" +#~ "ください。\n" +#~ "\t\t\t\t\t\t

多くのプラグインを、我々のリソースライブラリから取得できます。 " #~ msgid "Masive tags module policy edition" #~ msgstr "一括タグモジュールポリシー編集" @@ -60050,26 +59540,25 @@ msgstr "" #~ msgstr "proc モジュールを二値(OK/FAIL)表示する" #~ msgid "" -#~ "The Recon Task definition of Pandora FMS is used to find new elements in " -#~ "the network. \n" +#~ "The Recon Task definition of Pandora FMS is used to find new elements in the " +#~ "network. \n" #~ "\t\tIf it detects any item, it will add that item to the monitoring, and if " #~ "that item it is already being monitored, then it will \n" #~ "\t\tignore it or will update its information.There are three types of " #~ "detection: Based on ICMP (pings), \n" #~ "\t\tSNMP (detecting the topology of networks " -#~ "and their interfaces), and other customized \n" +#~ "and their interfaces), and other customized \n" #~ "\t\ttype. You can define your own customized recon script." #~ msgstr "" -#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利" -#~ "用します。\n" -#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情" -#~ "報を更新します。\n" +#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利用" +#~ "します。\n" +#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情報" +#~ "を更新します。\n" #~ "\t\t検出には 3つの種類があります。 ICMP (ping)、SNMP(ネットワークとインタ" -#~ "フェースのトポロジ検出)、\n" -#~ "\t\tおよび カスタムタイプです。独自の検出スク" -#~ "リプトを定義することもできます。" +#~ "strong>(ping)、SNMP(ネットワークとインタフェー" +#~ "スのトポロジ検出)、\n" +#~ "\t\tおよび カスタムタイプです。独自の検出スクリ" +#~ "プトを定義することもできます。" #~ msgid "" #~ "A service is a way to group your IT resources based on their " @@ -60080,53 +59569,53 @@ msgstr "" #~ "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" #~ "\t\t\t\t\t By the following example, you're able to see more clearly what a " #~ "service is:\n" -#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -#~ "the world. \n" +#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +#~ "world. \n" #~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an " #~ "on-line shop and support." #~ msgstr "" #~ "サービスは、機能に基づく IT リソースをグループ化するものです。\n" -#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリ" -#~ "ケーション、プリンタなどです。\n" -#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" -#~ "ERP、ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" +#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリケー" +#~ "ション、プリンタなどです。\n" +#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、" +#~ "ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" #~ "\t\t\t\t\t次の例で、サービスが何かがよりわかるでしょう。\n" -#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを" -#~ "販売しています。\n" -#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門" -#~ "から成っています。" +#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを販" +#~ "売しています。\n" +#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門か" +#~ "ら成っています。" #~ msgid "" #~ "Pandora FMS contains a scheduled downtime management system. \n" #~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " #~ "intervals whenever there is down time by deactivating the agent.\n" -#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In " -#~ "a down time, the down-time intervals aren't taken into \n" -#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because " -#~ "the agents don't contain any data within those intervals. " +#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " +#~ "down time, the down-time intervals aren't taken into \n" +#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " +#~ "agents don't contain any data within those intervals. " #~ msgstr "" #~ "Pandora FMS には、計画停止を管理するシステムがあります。\n" -#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラー" -#~ "トを無効化するように設計されています。\n" +#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラート" +#~ "を無効化するように設計されています。\n" #~ "\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中の" #~ "データは、多くのレポートの計算に\n" -#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いた" -#~ "めです。 " +#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いため" +#~ "です。 " #~ msgid "" #~ "From Pandora FMS versions 5 and above, the access to modules can be " #~ "configured by a tags system.\n" #~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " #~ "chosen modules. \n" -#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -#~ "tags in this way. " +#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags " +#~ "in this way. " #~ msgstr "" -#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセス" -#~ "を設定できます。\n" +#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを" +#~ "設定できます。\n" #~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てま" #~ "す。\n" -#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限" -#~ "定することができます。 " +#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限定" +#~ "することができます。 " #~ msgid "Free text:" #~ msgstr "検索文字列:" @@ -60153,9 +59642,9 @@ msgstr "" #~ "comments and files any time in case there is a need to do so.\n" #~ "\t\t\tThis system allows the users to work as a team, along with different " #~ "roles and work-flow systems which allows an incident to be \n" -#~ "\t\t\tmoved from one group to another, and that members from different " -#~ "groups and different people could work on the same incident, sharing " -#~ "information and files.\n" +#~ "\t\t\tmoved from one group to another, and that members from different groups " +#~ "and different people could work on the same incident, sharing information and " +#~ "files.\n" #~ "\t\t" #~ msgstr "" #~ "システムやアプリケーションを監視するためにデータを受信し処理するほかに、\n" @@ -60163,12 +59652,12 @@ msgstr "" #~ "す。\n" #~ "\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。" #~ "ユーザはいつでもインシデントをオープンし、\n" -#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシ" -#~ "ステムにより、ユーザがチームとして動くことが\n" -#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグ" -#~ "ループから他のグループへ移したり、異なる\n" -#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報や" -#~ "ファイルを共有したりできます。\n" +#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシス" +#~ "テムにより、ユーザがチームとして動くことが\n" +#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグルー" +#~ "プから他のグループへ移したり、異なる\n" +#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報やファ" +#~ "イルを共有したりできます。\n" #~ "\t\t" #~ msgid "An error occurred stopping the planned downtime" @@ -60190,15 +59679,15 @@ msgstr "" #~ msgstr "この計画停止は実行中です" #~ msgid "" -#~ "WARNING: You\\'re trying to create a group in a node member of a " -#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible " -#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do " -#~ "it from the metaconsole and propagate to the node. " +#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole." +#~ "\\n\\nThis group and all of this contents will not be visible in the " +#~ "metaconsole.\\n\\nIf you want to create a visible group, you must do it from " +#~ "the metaconsole and propagate to the node. " #~ msgstr "" #~ "警告: メタコンソールのノードメンバーにグループを作成しようとしていま" -#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示さ" -#~ "れません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実" -#~ "行し、ノードに伝播させる必要があります。 " +#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示され" +#~ "ません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実行" +#~ "し、ノードに伝播させる必要があります。 " #~ msgid "Advance Config AD" #~ msgstr "AD 拡張設定" @@ -60216,8 +59705,8 @@ msgstr "" #~ msgid "" #~ "Pandora FMS allows you to create visual maps in which each user is able to " #~ "create his own monitoring map.\n" -#~ "\t\t\tThe new visual console editor is much more practical, although the " -#~ "old visual console editor had its advantages. \n" +#~ "\t\t\tThe new visual console editor is much more practical, although the old " +#~ "visual console editor had its advantages. \n" #~ "\t\t\tWithin the new visual console, we've been successful in imitating the " #~ "sensation and touch of a drawing application like GIMP. \n" #~ "\t\t\tWe've also simplified the editor by dividing it into several subject-" @@ -60226,10 +59715,10 @@ msgstr "" #~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " #~ "'static image', 'percentage bar', 'module graph' and 'simple value'. " #~ msgstr "" -#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監" -#~ "視マップを作成することができます。\n" -#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的で" -#~ "す。新たなビジュアルコンソールでは、\n" +#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監視" +#~ "マップを作成することができます。\n" +#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的です。" +#~ "新たなビジュアルコンソールでは、\n" #~ "\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しまし" #~ "た。\n" #~ "\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディ" @@ -60246,18 +59735,18 @@ msgstr "" #~ msgstr "%dパーセント" #~ msgid "" -#~ "Graphs are designed to show the data collected by Pandora FMS in a " -#~ "temporary scale defined by the user.\n" +#~ "Graphs are designed to show the data collected by Pandora FMS in a temporary " +#~ "scale defined by the user.\n" #~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated " #~ "every time the operator requires any of them and display the up-to-date " #~ "state.\n" #~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " #~ "graphs the user customizes by using one or more modules to do so." #~ msgstr "" -#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表" -#~ "示します。\n" -#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作" -#~ "したタイミングで生成され、最新の状態を表示します。\n" +#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示" +#~ "します。\n" +#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作し" +#~ "たタイミングで生成され、最新の状態を表示します。\n" #~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフ" #~ "と、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。" @@ -60289,11 +59778,11 @@ msgstr "" #~ msgstr "最小エージェント" #~ msgid "" -#~ "Error, you are trying to add a widget in a empty cell. Please save the " -#~ "layout before to add any widget in this cell." +#~ "Error, you are trying to add a widget in a empty cell. Please save the layout " +#~ "before to add any widget in this cell." #~ msgstr "" -#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェッ" -#~ "トを追加するには、先にレイアウトを保存してください。" +#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェット" +#~ "を追加するには、先にレイアウトを保存してください。" #~ msgid "Config widget" #~ msgstr "ウィジェット設定" @@ -60310,24 +59799,22 @@ msgstr "" #~ msgid "Different parent" #~ msgstr "異なる親" -#~ msgid "" -#~ "The target user profiles will be replaced with the source user profiles" +#~ msgid "The target user profiles will be replaced with the source user profiles" #~ msgstr "対象のユーザプロファイルは、元ユーザのプロファイルで置き換えられます" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance. \n" -#~ "\t\t\t\t\t
Please know that all attempts to access this page are " -#~ "recorded in security logs of Pandora System Database" +#~ "\t\t\t\t\t
Please know that all attempts to access this page are recorded " +#~ "in security logs of Pandora System Database" #~ msgstr "" -#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシス" -#~ "テム管理者へ連絡してください。\n" -#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセ" -#~ "キュリティログに記録されます。" +#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステ" +#~ "ム管理者へ連絡してください。\n" +#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセキュ" +#~ "リティログに記録されます。" #~ msgid "" -#~ "The selected user profile will be added to the selected users into the " -#~ "target" +#~ "The selected user profile will be added to the selected users into the target" #~ msgstr "選択されたユーザプロファイルは、対象の選択ユーザに追加されます" #~ msgid "Login off" @@ -60367,15 +59854,14 @@ msgstr "" #~ msgstr "ウエイトはデフォルト値です" #~ msgid "" -#~ "Only the elements configured as 'critical element' are used to calculate " -#~ "the service status" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" #~ msgstr "'障害' として設定されているもののみサービスの状態計算に利用されます。" #~ msgid "No name and description specified for the service" #~ msgstr "サービスに名前と説明がありません" -#~ msgid "" -#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgid "All the items are not available in CSV, only the previous versions ones." #~ msgstr "CSV内に全アイテムがありません。以前のバージョンのみです。" #~ msgid "Delete remote conf server files in Pandora" @@ -60385,8 +59871,7 @@ msgstr "" #~ "Delete this conf file implies that Pandora will send back local config to " #~ "console" #~ msgstr "" -#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送しま" -#~ "す" +#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します" #~ msgid "" #~ "Limit the number of events that are replicated metaconsole each specified " @@ -60394,11 +59879,11 @@ msgstr "" #~ msgstr "指定した範囲でメタコンソールへ複製するイベントの数を制限します。" #~ msgid "" -#~ "Enable this option will be synchronice the groups and tags each new user " -#~ "when he/she will login." +#~ "Enable this option will be synchronice the groups and tags each new user when " +#~ "he/she will login." #~ msgstr "" -#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが" -#~ "同期されます。" +#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが同" +#~ "期されます。" #~ msgid "Generate a dynamic report\"" #~ msgstr "ダイナミックレポートの生成" @@ -60432,40 +59917,39 @@ msgstr "" #~ msgid "" #~ "In the same fashion, when subscribed to the newsletter you accept that your " -#~ "email will pass on to a database property of Artica TS. This data will " -#~ "solely be used to provide you with information about Pandora FMS and will " -#~ "not be conceded to third parties. You'll be able to unregister from said " -#~ "database at any time from the newsletter subscription options" +#~ "email will pass on to a database property of Artica TS. This data will solely " +#~ "be used to provide you with information about Pandora FMS and will not be " +#~ "conceded to third parties. You'll be able to unregister from said database at " +#~ "any time from the newsletter subscription options" #~ msgstr "" #~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS の" -#~ "データベースに登録されることに合意いただくことになります。これは Pandora " -#~ "FMS に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありませ" -#~ "ん。ニュースレターの購読オプションでいつでも登録解除を行うことができます。" +#~ "データベースに登録されることに合意いただくことになります。これは Pandora FMS " +#~ "に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。" +#~ "ニュースレターの購読オプションでいつでも登録解除を行うことができます。" #~ msgid "Subscribe to our newsletter" #~ msgstr "ニュースレターを購読する" #~ msgid "" -#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " -#~ "that we register your Pandora instance as an identifier on the database " -#~ "owned by Artica TS. This data will solely be used to provide you with " -#~ "information about Pandora FMS and will not be conceded to third parties. " -#~ "You'll be able to unregister from said database at any time from the Update " -#~ "Manager options" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that " +#~ "we register your Pandora instance as an identifier on the database owned by " +#~ "Artica TS. This data will solely be used to provide you with information " +#~ "about Pandora FMS and will not be conceded to third parties. You'll be able " +#~ "to unregister from said database at any time from the Update Manager options" #~ msgstr "" -#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータ" -#~ "ベースにあなたの Pandora インスタンスを識別する情報を登録することに合意いた" -#~ "だくことになります。これは Pandora FMS に関する情報を提供する目的にのみ利用" -#~ "し、第三者へ提供されることはありません。アップデートマネージャオプションから" -#~ "いつでもデータベースの登録解除を行うことができます。" +#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベー" +#~ "スにあなたの Pandora インスタンスを識別する情報を登録することに合意いただくこ" +#~ "とになります。これは Pandora FMS に関する情報を提供する目的にのみ利用し、第三" +#~ "者へ提供されることはありません。アップデートマネージャオプションからいつでも" +#~ "データベースの登録解除を行うことができます。" #~ msgid "Stay up to date with the Pandora FMS community" #~ msgstr "Pandora FMS コミュニティで最新情報を確認してください" #~ msgid "This field allows url insertion using the BBCode's url tag" #~ msgstr "" -#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することが" -#~ "できます" +#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することがで" +#~ "きます" #~ msgid "The format is: [url='url to navigate']'text to show'[/url]" #~ msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]" @@ -60474,8 +59958,8 @@ msgstr "" #~ msgstr "例: [url=pandorafms.org]Pandora FMS コミュニティ[/url]" #~ msgid "" -#~ "Please fill the following information in order to configure your Pandora " -#~ "FMS instance successfully" +#~ "Please fill the following information in order to configure your Pandora FMS " +#~ "instance successfully" #~ msgstr "" #~ "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください" @@ -60502,18 +59986,18 @@ msgstr "" #~ msgstr "例: switch.ehorus.com" #~ msgid "" -#~ "Set a value too high cause a slowdown on console and a performance penalty " -#~ "in the system." +#~ "Set a value too high cause a slowdown on console and a performance penalty in " +#~ "the system." #~ msgstr "" -#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が" -#~ "発生します。" +#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が発" +#~ "生します。" #~ msgid "" #~ "If you check this option, the lateral menus display with left click. " #~ "Otherwise it will show by placing the mouse over" #~ msgstr "" -#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうで" -#~ "なければ、マウスオーバーで表示されます。" +#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうでな" +#~ "ければ、マウスオーバーで表示されます。" #~ msgid "Display lateral menus with click" #~ msgstr "クリックで横のメニューを表示" @@ -60560,8 +60044,8 @@ msgstr "" #~ "newsletter subscription process" #~ msgstr "" #~ "ニュースレターの購読を開始するには こちら" -#~ " をクリックしてください" +#~ "decoration:underline\" href=\"javascript: force_run_newsletter();\"> こちら をクリックしてください" #~ msgid "" #~ "Click こちら をクリッ" -#~ "クしてください" +#~ "underline\" href=\"javascript: force_run_register();\"> こちら をクリック" +#~ "してください" #~ msgid "This instance is not registered in the Update manager" #~ msgstr "このインスタンスはアップデートマネージャに登録されていません" @@ -60595,8 +60079,8 @@ msgstr "" #~ "Path where you put your cert and name of this cert. Remember your cert only " #~ "in .pem extension." #~ msgstr "" -#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意" -#~ "してください。" +#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意し" +#~ "てください。" #~ msgid "Module Groups synchronization" #~ msgstr "モジュールグループ同期" @@ -60641,82 +60125,79 @@ msgstr "" #~ msgid "Empty for a transparent background color or CSS compatible value" #~ msgstr "透明な背景色またはCSSに合う値が空です" -#~ msgid "" -#~ "If propagate acl is activated, this group will include its child groups" +#~ msgid "If propagate acl is activated, this group will include its child groups" #~ msgstr "ACLの伝播を有効にすると、このグループは子グループを含みます" #~ msgid "Synchronizing Module Groups" #~ msgstr "モジュールグループの同期中" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, please remove the remote " -#~ "server address from the Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, please remove the remote server " +#~ "address from the Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェ" -#~ "ントとモジュール数)を送信します。無効化するには、アップデートマネージャプラ" -#~ "グインの設定からリモートサーバのアドレスを削除します。" +#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェン" +#~ "トとモジュール数)を送信します。無効化するには、アップデートマネージャプラグイ" +#~ "ンの設定からリモートサーバのアドレスを削除します。" #~ msgid "" -#~ "The community version doesn't have the ability to define your own library " -#~ "of local modules, or distribute it to remote agents. You need to make those " -#~ "changes individually on each agent which is possible by using external " -#~ "tools and time and effort. Nor can it distribute local plugins, or have " -#~ "access to the library of enterprise plugins to monitor applications such as " -#~ "VMWare, RHEV or Informix between others. The Enterprise version will have " -#~ "all this, plus the ability to distribute and manage your own local modules " -#~ "on your systems, individually or through policies.\n" +#~ "The community version doesn't have the ability to define your own library of " +#~ "local modules, or distribute it to remote agents. You need to make those " +#~ "changes individually on each agent which is possible by using external tools " +#~ "and time and effort. Nor can it distribute local plugins, or have access to " +#~ "the library of enterprise plugins to monitor applications such as VMWare, " +#~ "RHEV or Informix between others. The Enterprise version will have all this, " +#~ "plus the ability to distribute and manage your own local modules on your " +#~ "systems, individually or through policies.\n" #~ "

pandorafms.com" +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? Pandora FMS Enterprise Policies are exactly what you need; you'll save " +#~ "time, effort and annoyances. More information pandorafms.com" #~ msgstr "" -#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれら" -#~ "を管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグイン" -#~ "でさえ、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリ" -#~ "シーは、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減し" -#~ "ます。より詳細は、 pandorafms.comを参照してくだ" -#~ "さい。" +#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれらを" +#~ "管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグインでさ" +#~ "え、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリシー" +#~ "は、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減します。" +#~ "より詳細は、 pandorafms.comを参照してください。" #~ msgid "" #~ "Pandora FMS Enterprise also features event correlation. Through correlation " -#~ "you can generate realtime alerts and / or new events based on logical " -#~ "rules. This allows you to automate troubleshooting. If you know the value " -#~ "of working with events, event correlation will take you to a new level." +#~ "you can generate realtime alerts and / or new events based on logical rules. " +#~ "This allows you to automate troubleshooting. If you know the value of working " +#~ "with events, event correlation will take you to a new level." #~ msgstr "" -#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、" -#~ "論理的なルールに基づくリアルタイムアラートや新たなイベントを生成することがで" -#~ "きます。これは、自動的なトラブルシューティングを可能にします。イベント発生時" -#~ "の値を知れば、イベント送還が次のステップを教えてくれます。" +#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、論" +#~ "理的なルールに基づくリアルタイムアラートや新たなイベントを生成することができま" +#~ "す。これは、自動的なトラブルシューティングを可能にします。イベント発生時の値を" +#~ "知れば、イベント送還が次のステップを教えてくれます。" #~ msgid "" #~ "The Enterprise version comes with a different update system, with fully " #~ "tested, professionally-supported packages, and our support team is there to " #~ "help you in case of problems or queries. Update Manager is another feature " -#~ "present in the Enterprise version and not included in the OpenSource " -#~ "version. There are lots of advanced business-oriented features contained in " -#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" #~ msgstr "" -#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シ" -#~ "ステムです。我々のサポートチームが問題や問い合わせに対して対応します。" -#~ "Enterprise版のアップデートマネージャには、オープンソース版には無い異なる機能" -#~ "があります。Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれてい" -#~ "ます。より詳細は、pandorafms.comを参照" -#~ "してください。" +#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シス" +#~ "テムです。我々のサポートチームが問題や問い合わせに対して対応します。Enterprise" +#~ "版のアップデートマネージャには、オープンソース版には無い異なる機能があります。" +#~ "Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれています。より詳細" +#~ "は、pandorafms.comを参照してください。" #~ msgid "" #~ "The Update Manager client is included on Pandora FMS. It helps system " @@ -60724,46 +60205,46 @@ msgstr "" #~ "Manager retrieves new modules, new plugins and new features (even full " #~ "migrations tools for future versions) automatically." #~ msgstr "" -#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。" -#~ "Pandorra FMS を自動的に更新する処理をサポートします。アップデートマネージャ" -#~ "は、新たなモジュール、新たなプラグインおよび新たな機能(将来のバージョンへの" -#~ "マイグレーションツールを含む)を自動的に取り込みます。" +#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。Pandorra " +#~ "FMS を自動的に更新する処理をサポートします。アップデートマネージャは、新たなモ" +#~ "ジュール、新たなプラグインおよび新たな機能(将来のバージョンへのマイグレーショ" +#~ "ンツールを含む)を自動的に取り込みます。" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

\n" -#~ "\tPlease know that all attempts to access this page are recorded in " -#~ "security logs of Pandora System Database" +#~ "\tPlease know that all attempts to access this page are recorded in security " +#~ "logs of Pandora System Database" #~ msgstr "" -#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシ" -#~ "ステム管理者へ連絡してください。

\n" -#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログ" -#~ "に記録されます。" +#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシス" +#~ "テム管理者へ連絡してください。

\n" +#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログに" +#~ "記録されます。" #~ msgid "" #~ "Report generating on the Enterprise version is also more powerful: it has " -#~ "wizards, you can schedule emails in PDF to be sent according to the " -#~ "schedule you decide, and it has a template system to create personalized " -#~ "reports quickly for each of your customers. It will even allow your " -#~ "customers to generate their own reports from templates created by you. If " -#~ "reports are key to your business, Pandora FMS Enterprise version is for you." +#~ "wizards, you can schedule emails in PDF to be sent according to the schedule " +#~ "you decide, and it has a template system to create personalized reports " +#~ "quickly for each of your customers. It will even allow your customers to " +#~ "generate their own reports from templates created by you. If reports are key " +#~ "to your business, Pandora FMS Enterprise version is for you." #~ msgstr "" -#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュール" -#~ "で PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素" -#~ "早く作成できるテンプレートシステムがあります。作成したテンプレートから、顧客" -#~ "自身が独自のレポートを生成することもできます。レポートがビジネスにとって重要" -#~ "であるならば、Pandora FMS Enteprise はあなたの要望にマッチします。" +#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュールで " +#~ "PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素早く作" +#~ "成できるテンプレートシステムがあります。作成したテンプレートから、顧客自身が独" +#~ "自のレポートを生成することもできます。レポートがビジネスにとって重要であるなら" +#~ "ば、Pandora FMS Enteprise はあなたの要望にマッチします。" #~ msgid "" #~ "This system has too many modules per agent. OpenSource version could manage " -#~ "thousands of modules, but is not recommended to have more than 40 modules " -#~ "per agent. This configuration has B/A modules per agent. Checkout the " -#~ "Enterprise Version for a professional supported system." +#~ "thousands of modules, but is not recommended to have more than 40 modules per " +#~ "agent. This configuration has B/A modules per agent. Checkout the Enterprise " +#~ "Version for a professional supported system." #~ msgstr "" #~ "このシステムは、一つのエージェントあたりのモジュール数が多すぎです。オープン" -#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェント" -#~ "で 40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認" -#~ "してください。" +#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェントで " +#~ "40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認してく" +#~ "ださい。" #~ msgid "Status of module" #~ msgstr "モジュールの状態" @@ -60795,13 +60276,12 @@ msgstr "" #~ msgid "No Dashboards" #~ msgstr "ダッシュボードがありません" -#~ msgid "" -#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgid "Select the path where SimpleSAML has been installed (by default '/opt/')" #~ msgstr "SimpleSAML がインストールされているパスを選択 (デフォルトは '/opt/')" #~ msgid "" -#~ "The alert would fire when the value is not between and " +#~ "The alert would fire when the value is not between " +#~ "and " #~ msgstr "" #~ "値がの間に無い場合" #~ "に、アラートを発報します。" @@ -60815,8 +60295,8 @@ msgstr "" #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or\n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or\n" #~ "\t\t\tthe database server is not running." #~ msgstr "" #~ "データベースに接続できません。 include/config.php ファイル内のデータ" @@ -60831,21 +60311,20 @@ msgstr "" #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " #~ "and \"other\" users\n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner\n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner\n" #~ "\t\t\t(usually www-data or http daemon user), normal operation is not " #~ "possible until you change\n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" -#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションで" -#~ "ある必要があります。\n" +#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションであ" +#~ "る必要があります。\n" #~ "\t\t\t\"other\"ユーザは読み書きできないようにし、所有者(通常は www-data や " #~ "http デーモンの\n" -#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php " -#~ "ファイルの\n" -#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために" -#~ "調整をしてください。" +#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php ファ" +#~ "イルの\n" +#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために調" +#~ "整をしてください。" #~ msgid "Percentil 95" #~ msgstr "95パーセント" @@ -60857,11 +60336,11 @@ msgstr "" #~ msgstr " のモジュール " #~ msgid "" -#~ "Event history is ONLY used for event reports, is not used in graphs or " -#~ "event viewer." +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." #~ msgstr "" -#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には" -#~ "利用されません。" +#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には利" +#~ "用されません。" #~ msgid "Time Not init" #~ msgstr "未初期化時間" @@ -60886,9 +60365,9 @@ msgstr "" #~ "problems and you lost data. Recommended that event days purge will more " #~ "taller than event days to history DB" #~ msgstr "" -#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く" -#~ "設定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒス" -#~ "トリデータベースへイベントを移す日よりも後に設定してください。" +#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く設" +#~ "定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒストリ" +#~ "データベースへイベントを移す日よりも後に設定してください。" #~ msgid "Time Uknown" #~ msgstr "不明時間" @@ -60909,18 +60388,18 @@ msgstr "" #~ msgstr "メインヘルプ" #~ msgid "" -#~ "This is the online help for Pandora FMS console. This help is -in best " -#~ "cases- just a brief contextual help, not intented to teach you how to use " -#~ "Pandora FMS. Official documentation of Pandora FMS is about 900 pages, and " -#~ "you probably don't need to read it entirely, but sure, you should download " -#~ "it and take a look.

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

\n" #~ "\tDownload the official documentation" #~ msgstr "" -#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けを" -#~ "するのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS " -#~ "の公式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウン" -#~ "ロードして確認すると良いでしょう。

\n" +#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けをす" +#~ "るのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS の公" +#~ "式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウンロード" +#~ "して確認すると良いでしょう。

\n" #~ "\t公式ドキュメントをダウンロード" @@ -61003,16 +60482,16 @@ msgstr "" #~ msgstr "画面サイズ制限のため、ビジュアルコンソールは表示されません" #~ msgid "" -#~ "To enable the plugin execution, this extension needs the Cron jobs " -#~ "extension installed.\n" +#~ "To enable the plugin execution, this extension needs the Cron jobs extension " +#~ "installed.\n" #~ "\tKeep in mind that the Cron jobs execution period will be the less real " #~ "execution period, so if you want to run the plugin every\n" #~ "\t5 minutes, for example, the Cron jobs script should be configured in the " #~ "cron to run every 5 minutes or less" #~ msgstr "" -#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストー" -#~ "ルされている必要があります。\n" -#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してくださ" -#~ "い。たとえば、プラグインを 5分間隔で\n" -#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行す" -#~ "るよう cron を設定する必要があります。" +#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストール" +#~ "されている必要があります。\n" +#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してください。" +#~ "たとえば、プラグインを 5分間隔で\n" +#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行する" +#~ "よう cron を設定する必要があります。" From 8c35fdbce8dcdd4953b112992579e58d0df64e36 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 24 May 2023 09:32:29 +0200 Subject: [PATCH 127/211] #11330 fixed pagination in network map --- pandora_console/operation/agentes/pandora_networkmap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/agentes/pandora_networkmap.php b/pandora_console/operation/agentes/pandora_networkmap.php index c3f7786a2e..57573bca44 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.php +++ b/pandora_console/operation/agentes/pandora_networkmap.php @@ -842,7 +842,7 @@ switch ($tab) { } html_print_table($table); - $tablePagination = ui_pagination($count_maps, false, 0, 0, true, 'offset', false); + $tablePagination = ui_pagination($count_maps, false, $offset, $limit, true, 'offset', false); } else { ui_print_info_message(['no_close' => true, 'message' => __('There are no maps defined.') ]); } From 2952b1244b5ac8fa5bee83e589a7ca46dc59582c Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 24 May 2023 11:52:59 +0200 Subject: [PATCH 128/211] #11294 Fixed general search for policies --- pandora_console/operation/search_policies.getdata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/search_policies.getdata.php b/pandora_console/operation/search_policies.getdata.php index 4a8b656f09..00233d2936 100644 --- a/pandora_console/operation/search_policies.getdata.php +++ b/pandora_console/operation/search_policies.getdata.php @@ -201,7 +201,7 @@ if ($searchpolicies === true) { and which the user have permission on this groups */ - $user_groups = users_get_groups($config['id_user'], 'AR', false); + $user_groups = users_get_groups($config['id_user'], 'AR', true); $id_user_groups = array_keys($user_groups); $id_user_groups_str = implode(',', $id_user_groups); From b422bf75b29fb9bcae3318e0aad721e033877706 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 24 May 2023 13:03:31 +0200 Subject: [PATCH 129/211] Fixed scrolling of the database tab --- pandora_console/include/functions_menu.php | 6 +++--- pandora_console/include/styles/pandora.css | 6 ++++++ pandora_console/include/styles/pandora_black.css | 6 ++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 6d60af2bf1..14ca2c87f6 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -1070,7 +1070,7 @@ if (is_ajax()) {

'.$db_info->data->dbSize->name.'

-

'.$db_info->data->dbSize->value.'

+

'.$db_info->data->dbSize->value.'

@@ -1084,7 +1084,7 @@ if (is_ajax()) {

'.$db_fragmentation->data->tablesFragmentationMax->name.'

-

'.$db_fragmentation->data->tablesFragmentationMax->value.'

+

'.$db_fragmentation->data->tablesFragmentationMax->value.'

@@ -1092,7 +1092,7 @@ if (is_ajax()) {

'.$db_fragmentation->data->tablesFragmentationValue->name.'

-

'.$db_fragmentation->data->tablesFragmentationValue->value.'

+

'.$db_fragmentation->data->tablesFragmentationValue->value.'

diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 43cc9106e7..f2c9e5b8c2 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11557,6 +11557,12 @@ p.trademark-copyright { overflow: hidden; } +#tab-database { + height: 80%; + overflow: auto; + width: 96%; +} + .item_status_tree_view { position: absolute; top: 7px; diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 1b95063c7c..45430ed69e 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1389,6 +1389,12 @@ p.trademark-copyright { overflow: hidden; } +#tab-database { + height: 80%; + overflow: auto; + width: 96%; +} + button.buttonButton, button.submitButton { box-shadow: 0px 3px 6px #111; From 68c86b31566ffc2ad8a0a73288555dce441b7ab4 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 25 May 2023 01:00:18 +0200 Subject: [PATCH 130/211] 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 2203291695..4ab4bf48f0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230524 +Version: 7.0NG.771-230525 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 f9160c0f5c..0393f7b5ce 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.771-230524" +pandora_version="7.0NG.771-230525" 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 3fd3989614..284f275e4e 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230524'; +use constant AGENT_BUILD => '230525'; # 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 d52585d984..c35fbfa5e0 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230524 +%define release 230525 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 486dc69d55..7629af6018 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230524 +%define release 230525 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 0c889f78bc..1826580069 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230524" +PI_BUILD="230525" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 381e0cd72d..fc9481110a 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230524} +{230525} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 3db581ee83..cba140b48a 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.771 Build 230524") +#define PANDORA_VERSION ("7.0NG.771 Build 230525") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e1abd5469d..731ed864f2 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.771(Build 230524))" + VALUE "ProductVersion", "(7.0NG.771(Build 230525))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9d471d88c9..94e5f5b41c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230524 +Version: 7.0NG.771-230525 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 b1c8e42812..ebca9ba770 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.771-230524" +pandora_version="7.0NG.771-230525" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7a795464ff..84ea583681 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 = 'PC230524'; +$build_version = 'PC230525'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6d195db5a8..f771b62a7f 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b5bd488eeb..75396e8380 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230524 +%define release 230525 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index f916f1d67b..851f6ec605 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230524 +%define release 230525 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 17cc585f51..ed36f3e41c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230524" +PI_BUILD="230525" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 91c5570925..8a10f085da 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.771 Build 230524"; +my $version = "7.0NG.771 Build 230525"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 80a13f578d..f6404997ba 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.771 Build 230524"; +my $version = "7.0NG.771 Build 230525"; # save program name for logging my $progname = basename($0); From 651894953a3e68c338d3b07302dbf5ecefdb41ea Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 25 May 2023 09:36:58 +0200 Subject: [PATCH 131/211] #11340 fixed Dynamic report in metaconsole --- pandora_console/include/functions_graph.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index d1702ef9d6..355315223d 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -1600,9 +1600,15 @@ function graphic_combined_module( if (is_metaconsole()) { metaconsole_restore_db(); - $server = metaconsole_get_connection_by_id( - isset($agent_module_id['server']) ? $agent_module_id['server'] : $source['id_server'] - ); + if (isset($agent_module_id['server'])) { + $id_server = $agent_module_id['server']; + } else if (isset($agent_module_id['id_server'])) { + $id_server = $agent_module_id['id_server']; + } else { + $id_server = $source['id_server']; + } + + $server = metaconsole_get_connection_by_id($id_server); if (metaconsole_connect($server) != NOERR) { continue; } From 8a62bcf28318243e109105419782fcc951655224 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 25 May 2023 09:51:20 +0200 Subject: [PATCH 132/211] #11277 Fixed public_dashboard with saml --- pandora_console/ajax.php | 2 +- pandora_console/operation/dashboard/public_dashboard.php | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index bea9dfc771..67ce4e382b 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -185,7 +185,7 @@ if (isset($config['force_instant_logout']) === true header_remove('Set-Cookie'); setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); - if ($config['auth'] === 'saml') { + if ($config['auth'] === 'saml' && empty($public_hash) === true) { include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php'; $as = new SimpleSAML_Auth_Simple('PandoraFMS'); $as->logout(); diff --git a/pandora_console/operation/dashboard/public_dashboard.php b/pandora_console/operation/dashboard/public_dashboard.php index 33d6ffd199..9af12f7581 100644 --- a/pandora_console/operation/dashboard/public_dashboard.php +++ b/pandora_console/operation/dashboard/public_dashboard.php @@ -52,12 +52,6 @@ if ($config['force_instant_logout'] === true) { session_destroy(); header_remove('Set-Cookie'); setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); - - if ($config['auth'] == 'saml') { - include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php'; - $as = new SimpleSAML_Auth_Simple('PandoraFMS'); - $as->logout(); - } } while (ob_get_length() > 0) { From cccb03010c5469deeb4cab2f68f27d1c1addc515 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 25 May 2023 10:30:34 +0200 Subject: [PATCH 133/211] #10851 change date order to asc and fix sql query --- pandora_console/include/functions_inventory.php | 12 ++++++++---- .../operation/agentes/agent_inventory.php | 5 ++--- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 9bda1f17a1..2430b69163 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -750,14 +750,16 @@ function inventory_get_datatable( tagent_module_inventory.*, tagente.alias as name_agent, tagente_datos_inventory.utimestamp as last_update, - tagente_datos_inventory.timestamp as last_update_timestamp + tagente_datos_inventory.timestamp as last_update_timestamp, + tagente_datos_inventory.data as data_inventory FROM tmodule_inventory INNER JOIN tagent_module_inventory ON tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + INNER JOIN tagente_datos_inventory + ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory LEFT JOIN tagente ON tagente.id_agente = tagent_module_inventory.id_agente - LEFT JOIN tagente_datos_inventory - ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory + WHERE %s ORDER BY tmodule_inventory.id_module_inventory LIMIT %d, %d', @@ -766,6 +768,8 @@ function inventory_get_datatable( $config['block_size'] ); + hd($sql, true); + $rows = db_get_all_rows_sql($sql); if ($order_by_agent === false) { @@ -775,7 +779,7 @@ function inventory_get_datatable( $row['timestamp'] = $row['last_update_timestamp']; } - $data_rows = explode(PHP_EOL, $row['data']); + $data_rows = explode(PHP_EOL, $row['data_inventory']); foreach ($data_rows as $data_key => $data_value) { if (empty($data_value) === false) { $row['data'] = $data_value; diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 9ae081186b..b378f0f810 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -90,13 +90,12 @@ $utimestamps = db_get_all_rows_sql( FROM tmodule_inventory, tagent_module_inventory, tagente_datos_inventory WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory - AND tagent_module_inventory.%s', + AND tagent_module_inventory.%s ORDER BY tagente_datos_inventory.utimestamp DESC', ($module !== 0) ? 'id_module_inventory = '.$module : 'id_agente = '.$id_agente ) ); $utimestamps = (empty($utimestamps) === true) ? [] : extract_column($utimestamps, 'utimestamp'); - $utimestampSelectValues = array_reduce( $utimestamps, function ($acc, $utimestamp) use ($config) { @@ -143,7 +142,7 @@ $table->data[0][1] = html_print_label_input_block( 0, true, false, - true, + false, '', false, 'width:100%;' From 0e28ed2cb519dd1e6eb777243aa1477d6871ca98 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 25 May 2023 12:40:32 +0200 Subject: [PATCH 134/211] #11345 removed console.log --- pandora_console/include/javascript/pandora_modules.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 220459bacd..ea110c37f3 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -1544,10 +1544,7 @@ function changePlugin() { var pluginDescription = pluginAllData.description; var pluginMacros = pluginAllData.macros; - console.log(pluginAllData.macrosElement); var pluginMacrosElement = JSON.parse(atob(pluginAllData.macrosElement)); - console.log(pluginMacrosElement); - var displayShow = "none"; if (executionType == EXECUTION_TYPE_NETWORK) { displayShow = "none"; From 662329793a5594f0237c82f3bfe98f73a3bb968c Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 25 May 2023 14:25:18 +0200 Subject: [PATCH 135/211] fixed bug for different types of SQL reports --- .../godmode/reporting/reporting_builder.item_editor.php | 2 +- pandora_console/godmode/reporting/reporting_builder.php | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 64f2c4659c..38ac32b635 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -1219,7 +1219,7 @@ $class = 'databox filters'; Date: Thu, 25 May 2023 17:14:23 +0200 Subject: [PATCH 136/211] #11250 removed blank space --- pandora_console/include/class/AgentWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 4e65b3f551..6737cf5a34 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -325,7 +325,7 @@ class AgentWizard extends HTML $this->wizardSection = get_parameter('wizard_section', 'snmp_explorer'); $this->idAgent = get_parameter('id_agente', ''); $this->idPolicy = get_parameter('id', ''); - $this->targetIp = get_parameter('targetIp', ''); + $this->targetIp = trim(get_parameter('targetIp', ''), ' '); $this->wmiBinary = $config['wmiBinary']; $this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults'])); From b921e61882a36baefc1656ca5a4b93aeaf0c8761 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 26 May 2023 01:00:18 +0200 Subject: [PATCH 137/211] 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 4ab4bf48f0..738d82859a 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230525 +Version: 7.0NG.771-230526 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 0393f7b5ce..0f2a8b9a64 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.771-230525" +pandora_version="7.0NG.771-230526" 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 284f275e4e..41faa4189c 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230525'; +use constant AGENT_BUILD => '230526'; # 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 c35fbfa5e0..e65a057a1f 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230525 +%define release 230526 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 7629af6018..9384ca50d8 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230525 +%define release 230526 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 1826580069..40246f249e 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230525" +PI_BUILD="230526" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index fc9481110a..85cf1478e9 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230525} +{230526} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index cba140b48a..76e4a97a68 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.771 Build 230525") +#define PANDORA_VERSION ("7.0NG.771 Build 230526") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 731ed864f2..4a9570c10f 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.771(Build 230525))" + VALUE "ProductVersion", "(7.0NG.771(Build 230526))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 94e5f5b41c..fdb6f97015 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230525 +Version: 7.0NG.771-230526 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 ebca9ba770..1a4058f752 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.771-230525" +pandora_version="7.0NG.771-230526" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 84ea583681..5c69e24da3 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 = 'PC230525'; +$build_version = 'PC230526'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index f771b62a7f..b0948156d4 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 75396e8380..39068c81ff 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230525 +%define release 230526 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 851f6ec605..378e3ceeeb 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230525 +%define release 230526 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ed36f3e41c..2d9c7b6fdb 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230525" +PI_BUILD="230526" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 8a10f085da..bf57f5573f 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.771 Build 230525"; +my $version = "7.0NG.771 Build 230526"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f6404997ba..43ccece3d3 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.771 Build 230525"; +my $version = "7.0NG.771 Build 230526"; # save program name for logging my $progname = basename($0); From bd453ea1deec1f10e6e0a370b0dc6919fb2553e7 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 26 May 2023 08:36:56 +0200 Subject: [PATCH 138/211] #10851 Fix inventory date filter and last update query --- .../include/functions_inventory.php | 26 ++++++++++++++----- .../operation/inventory/inventory.php | 2 +- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 2430b69163..c91a375225 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -707,6 +707,17 @@ function inventory_get_datatable( ) { global $config; + if ($utimestamp === 0) { + $data_last = db_get_row_sql( + sprintf( + 'SELECT `utimestamp`, `timestamp` + FROM tagente_datos_inventory + ORDER BY utimestamp DESC' + ) + ); + $utimestamp = $data_last['utimestamp']; + } + $offset = (int) get_parameter('offset'); $where = []; @@ -742,7 +753,7 @@ function inventory_get_datatable( } if ($utimestamp > 0) { - array_push($where, 'tagente_datos_inventory.utimestamp <= '.$utimestamp.' '); + array_push($where, 'tagente_datos_inventory.utimestamp = '.$utimestamp.' '); } $sql = sprintf( @@ -768,8 +779,6 @@ function inventory_get_datatable( $config['block_size'] ); - hd($sql, true); - $rows = db_get_all_rows_sql($sql); if ($order_by_agent === false) { @@ -797,16 +806,17 @@ function inventory_get_datatable( $agent_data[$row['id_agente']][] = $row; } - foreach ($agent_data as $id_agent => $rows) { + foreach ($agent_data as $id_agent => $data_rows) { $rows_tmp['agent'] = $row['name_agent']; - foreach ($rows as $row) { + foreach ($data_rows as $row) { if ($utimestamp > 0) { $data_row = db_get_row_sql( sprintf( 'SELECT `data`, - `timestamp` + `timestamp`, + `utimestamp` FROM tagente_datos_inventory - WHERE utimestamp <= "%s" + WHERE utimestamp = "%s" AND id_agent_module_inventory = %d ORDER BY utimestamp DESC', $utimestamp, @@ -817,12 +827,14 @@ function inventory_get_datatable( if ($data_row !== false) { $row['data'] = $data_row['data']; $row['timestamp'] = $data_row['timestamp']; + $row['utimestamp'] = $data_row['utimestamp']; } else { continue; } } } + $rows[0]['timestamp'] = $row['timestamp']; $rows_tmp['row'] = $rows; array_push($agents_rows, $rows_tmp); } diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index ba45efe85a..fd30943e8d 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -690,7 +690,7 @@ if (is_metaconsole() === false) { 0, true, false, - true, + false, '', false, 'width:100%;' From 0c180f7ed3c9ee9c0190ef6656f2514659f2908b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 26 May 2023 09:59:08 +0200 Subject: [PATCH 139/211] #11371 Fix inner join error and fix data array --- pandora_console/include/functions_inventory.php | 14 ++++++++------ pandora_console/operation/inventory/inventory.php | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 2beed2f0dc..78aca29867 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -818,9 +818,16 @@ function inventory_get_datatable( function get_data_basic_info_sql($params, $count=false) { + $table = 'tagente'; + if (is_metaconsole() === true) { + $table = 'tmetaconsole_agent'; + } + $where = 'WHERE 1=1 '; - if ($params['id_agent'] > 0) { + if ($params['id_agent'] > 0 && $count === true) { $where .= sprintf(' AND id_agente = %d', $params['id_agent']); + } else if ($params['id_agent'] > 0 && $count === false) { + $where .= sprintf(' AND %s.id_agente = %d', $table, $params['id_agent']); } if ($params['id_group'] > 0) { @@ -897,11 +904,6 @@ function get_data_basic_info_sql($params, $count=false) $innerjoin = ''; $groupby = ''; - $table = 'tagente'; - if (is_metaconsole() === true) { - $table = 'tmetaconsole_agent'; - } - if ($count !== true) { $fields = '*'; $innerjoin = 'LEFT JOIN tagente_estado ON '.$table.'.id_agente = tagente_estado.id_agente '; diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index a402444fff..d706221db2 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -1041,9 +1041,9 @@ if ($inventory_module !== 'basic') { $row) { + $data = []; $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); From 68c9328b4e43f3bbe4cdf4d8ed8e2bc7c8b944e3 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 26 May 2023 10:51:26 +0200 Subject: [PATCH 140/211] #11250 removed blank space 2 --- pandora_console/include/class/AgentWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 6737cf5a34..2278cae9d4 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -325,7 +325,7 @@ class AgentWizard extends HTML $this->wizardSection = get_parameter('wizard_section', 'snmp_explorer'); $this->idAgent = get_parameter('id_agente', ''); $this->idPolicy = get_parameter('id', ''); - $this->targetIp = trim(get_parameter('targetIp', ''), ' '); + $this->targetIp = io_safe_input(trim(io_safe_output(get_parameter('targetIp', '')))); $this->wmiBinary = $config['wmiBinary']; $this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults'])); From 526168e0eb6b77cd4ae444fdcaa4dbd1b2745050 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 26 May 2023 11:57:51 +0200 Subject: [PATCH 141/211] #11361 SLA Grpah correction PDF Metaconsole --- pandora_console/include/chart_generator.php | 5 ++++ pandora_console/include/functions.php | 23 +++++++++++++++++++ .../include/graphs/functions_flot.php | 5 ++-- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/chart_generator.php b/pandora_console/include/chart_generator.php index 62701365e5..2695b89c22 100644 --- a/pandora_console/include/chart_generator.php +++ b/pandora_console/include/chart_generator.php @@ -46,6 +46,8 @@ if (json_last_error() === JSON_ERROR_NONE) { $session_id = $data_decoded['session_id']; $type_graph_pdf = $data_decoded['type_graph_pdf']; $id_user = $data_decoded['id_user']; + $slicebar = $data_decoded['slicebar']; + $slicebar_value = $data_decoded['slicebar_value']; $data_combined = []; if (isset($data_decoded['data_combined']) === true) { @@ -64,6 +66,9 @@ global $config; // Care whit this!!! check_login not working if you remove this. $config['id_user'] = $id_user; $_SESSION['id_usuario'] = $id_user; +if (!isset($config[$slicebar])) { + $config[$slicebar] = $slicebar_value; +} // Try to initialize session using existing php session id. $user = new PandoraFMS\User(['phpsessionid' => $session_id]); diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 81799a549d..7f59f6e598 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -3548,6 +3548,25 @@ function update_config_token($cfgtoken, $cfgvalue) } +function update_check_config_token($cfgtoken, $cfgvalue) +{ + global $config; + db_process_sql('START TRANSACTION'); + if (isset($config[$cfgtoken])) { + delete_config_token($cfgtoken); + } + + $insert = db_process_sql(sprintf("INSERT INTO tconfig (token, value) VALUES ('%s', '%s')", $cfgtoken, $cfgvalue)); + db_process_sql('COMMIT'); + if ($insert) { + $config[$cfgtoken] = $cfgvalue; + return true; + } else { + return false; + } +} + + function delete_config_token($cfgtoken) { $delete = db_process_sql(sprintf('DELETE FROM tconfig WHERE token = "%s"', $cfgtoken)); @@ -4284,6 +4303,8 @@ function generator_chart_to_pdf( 'data_module_list' => $module_list, 'data_combined' => $params_combined, 'id_user' => $config['id_user'], + 'slicebar' => $_SESSION['slicebar'], + 'slicebar_value' => $config[$_SESSION['slicebar']], ]; } else { $data = [ @@ -4291,6 +4312,8 @@ function generator_chart_to_pdf( 'session_id' => $session_id, 'type_graph_pdf' => $type_graph_pdf, 'id_user' => $config['id_user'], + 'slicebar' => $_SESSION['slicebar'], + 'slicebar_value' => $config[$_SESSION['slicebar']], ]; } diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 1ee377f290..d1856b7b4c 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -756,8 +756,9 @@ function flot_slicesbar_graph( 'server_id' => $server_id, ]; // TO-DO Cambiar esto para que se pase por POST, NO SE PUEDE PASAR POR GET. - update_config_token($tokem_config, json_encode($graph_data)); - + update_check_config_token($tokem_config, json_encode($graph_data)); + $_SESSION['slicebar'] = $tokem_config; + $_SESSION['slicebar_value'] = json_encode($graph_data); $graph = ''; From 0e64721ca50e25071e1a723bba0a574d2d190a2c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 12:37:37 +0200 Subject: [PATCH 142/211] #11374 fixed bulk operation user --- pandora_console/godmode/massive/massive_add_profiles.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/massive/massive_add_profiles.php b/pandora_console/godmode/massive/massive_add_profiles.php index 38657bdf1c..6fa11d357f 100644 --- a/pandora_console/godmode/massive/massive_add_profiles.php +++ b/pandora_console/godmode/massive/massive_add_profiles.php @@ -109,7 +109,7 @@ if ($create_profiles) { } else { foreach ($profiles_id as $profile) { // Check profiles permissions for non admin user. - if (is_user_admin($config['user_id']) === false) { + if (is_user_admin($config['id_user']) === false) { $user_profiles = profile_get_profiles( [ 'pandora_management' => '<> 1', @@ -122,7 +122,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to add administrator profile whith standar user for user '.io_safe_input($user) ); - exit; + continue; } } @@ -132,7 +132,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to add profile group without permission for user '.io_safe_input($user) ); - exit; + continue; } foreach ($users_id as $user) { @@ -141,7 +141,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to edit user without permission for user '.io_safe_input($user) ); - exit; + continue; } $profile_data = db_get_row_filter('tusuario_perfil', ['id_usuario' => $user, 'id_perfil' => $profile, 'id_grupo' => $group]); From 6fc9b71a043318cb158101212bd78cb190c43579 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 13:17:40 +0200 Subject: [PATCH 143/211] Os detection fix --- pandora_server/lib/PandoraFMS/Core.pm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..b49139a60f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6689,40 +6689,40 @@ sub pandora_get_os ($$) { return 10; } - if ($os =~ m/Windows.*?(?=\(\d+%\))/i) { + if ($os =~ m/Windows/i) { return 9; } - if ($os =~ m/Cisco.*?(?=\(\d+%\))/i) { + if ($os =~ m/Cisco/i) { return 7; } - if ($os =~ m/SunOS.*?(?=\(\d+%\))/i || $os =~ m/Solaris.*?(?=\(\d+%\))/i) { + if ($os =~ m/SunOS/i || $os =~ m/Solaris/i) { return 2; } - if ($os =~ m/AIX.*?(?=\(\d+%\))/i) { + if ($os =~ m/AIX/i) { return 3; } - if ($os =~ m/HP\-UX.*?(?=\(\d+%\))/i) { + if ($os =~ m/HP\-UX/i) { return 5; } - if ($os =~ m/Apple.*?(?=\(\d+%\))/i || $os =~ m/Darwin.*?(?=\(\d+%\))/i) { + if ($os =~ m/Apple/i || $os =~ m/Darwin/i) { return 8; } - if ($os =~ m/Linux.*?(?=\(\d+%\))/i) { + if ($os =~ m/Linux/i) { return 1; } - if ($os =~ m/Enterasys.*?(?=\(\d+%\))/i || $os =~ m/3com.*?(?=\(\d+%\))/i) { + if ($os =~ m/Enterasys/i || $os =~ m/3com/i) { return 11; } - if ($os =~ m/Octopods.*?(?=\(\d+%\))/i) { + if ($os =~ m/Octopods/i) { return 13; } - if ($os =~ m/embedded.*?(?=\(\d+%\))/i) { + if ($os =~ m/embedded/i) { return 14; } - if ($os =~ m/android.*?(?=\(\d+%\))/i) { + if ($os =~ m/android/i) { return 15; } - if ($os =~ m/BSD.*?(?=\(\d+%\))/i) { + if ($os =~ m/BSD/i) { return 4; } From aa610c0c643b418bf2d53b7c7b2e0dbf38bdad5c Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 13:35:21 +0200 Subject: [PATCH 144/211] Fix os detetcion --- pandora_server/lib/PandoraFMS/Core.pm | 40 +++++++++---------- .../lib/PandoraFMS/DiscoveryServer.pm | 2 +- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..305c116d4b 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6689,40 +6689,40 @@ sub pandora_get_os ($$) { return 10; } - if ($os =~ m/Windows.*?(?=\(\d+%\))/i) { + if ($os =~ m/Windows/i) { return 9; } - if ($os =~ m/Cisco.*?(?=\(\d+%\))/i) { + if ($os =~ m/Cisco/i) { return 7; } - if ($os =~ m/SunOS.*?(?=\(\d+%\))/i || $os =~ m/Solaris.*?(?=\(\d+%\))/i) { + if ($os =~ m/SunOS/i || $os =~ m/Solaris/i) { return 2; } - if ($os =~ m/AIX.*?(?=\(\d+%\))/i) { + if ($os =~ m/AIX/i) { return 3; } - if ($os =~ m/HP\-UX.*?(?=\(\d+%\))/i) { + if ($os =~ m/HP\-UX/i) { return 5; } - if ($os =~ m/Apple.*?(?=\(\d+%\))/i || $os =~ m/Darwin.*?(?=\(\d+%\))/i) { + if ($os =~ m/Apple/i || $os =~ m/Darwin/i) { return 8; } - if ($os =~ m/Linux.*?(?=\(\d+%\))/i) { - return 1; - } - if ($os =~ m/Enterasys.*?(?=\(\d+%\))/i || $os =~ m/3com.*?(?=\(\d+%\))/i) { - return 11; - } - if ($os =~ m/Octopods.*?(?=\(\d+%\))/i) { - return 13; - } - if ($os =~ m/embedded.*?(?=\(\d+%\))/i) { - return 14; - } - if ($os =~ m/android.*?(?=\(\d+%\))/i) { + if ($os =~ m/android/i) { return 15; } - if ($os =~ m/BSD.*?(?=\(\d+%\))/i) { + if ($os =~ m/Linux/i) { + return 1; + } + if ($os =~ m/Enterasys/i || $os =~ m/3com/i) { + return 11; + } + if ($os =~ m/Octopods/i) { + return 13; + } + if ($os =~ m/embedded/i) { + return 14; + } + if ($os =~ m/BSD/i) { return 4; } diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index a556334ee0..835ae1b82a 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -432,7 +432,7 @@ sub PandoraFMS::Recon::Base::guess_os($$;$) { my $return = `"$self->{pa_config}->{nmap}" -sSU -T5 -F -O --osscan-limit $device 2>$DEVNULL`; return OS_OTHER if ($? != 0); my $str_os; - if ($return =~ /Aggressive OS guesses:\s*(.*)|OS details:\s(.*)/) { + if ($return =~ /Aggressive OS guesses:(.*?)(?>\(\d+%\),)|^OS details:(.*?)\(.*\)*$/mi) { if(defined($1) && $1 ne "") { $str_os = $1; } else { From 7a03a5bac9c60388e5f3f0c747728fedb18b1c90 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 13:37:15 +0200 Subject: [PATCH 145/211] #11381 fixed ip address name in availability report --- pandora_console/include/functions_reporting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8c8a7870e9..4596ba64aa 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -9123,7 +9123,7 @@ function reporting_availability($report, $content, $date=false, $time=false) modules_get_agentmodule_agent($item['id_agent_module']) ); - if (empty($text)) { + if (empty($row['data']['availability_item'])) { $row['data']['availability_item'] = __('No Address'); } } else { From 572c6d673426d38f3cb1e0e7fce46898313c54b8 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 14:29:36 +0200 Subject: [PATCH 146/211] Fix alertserver queue for action exec --- pandora_server/lib/PandoraFMS/Core.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..02c02f612f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -850,7 +850,7 @@ sub pandora_process_alert ($$$$$$$$;$$) { last_fired = ?, internal_counter = ? ' . $new_interval . ' WHERE id = ?', $alert->{'times_fired'}, $utimestamp, $alert->{'internal_counter'}, $id); - if ($pa_config->{'alertserver'} == 1) { + if ($pa_config->{'alertserver'} == 1 || $pa_config->{'alertserver_queue'} == 1) { pandora_queue_alert($pa_config, $dbh, [$data, $agent, $module, $alert, 1, $timestamp, 0, $extra_macros, $is_correlated_alert]); } else { From 34ae571fa01300864527203e44c9e7d7921f5fd1 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 25 May 2023 20:56:21 +0200 Subject: [PATCH 147/211] Encode log data to base64 to prevent it from breaking XML data files. --- pandora_agents/unix/plugins/grep_log | 44 ++++++++++++++-- pandora_agents/unix/plugins/grep_log_module | 42 ++++++++++++++-- .../win32/modules/pandora_module.cc | 14 ++---- pandora_agents/win32/pandora_strutils.cc | 50 +++++++++++++++++++ pandora_agents/win32/pandora_strutils.h | 1 + 5 files changed, 134 insertions(+), 17 deletions(-) diff --git a/pandora_agents/unix/plugins/grep_log b/pandora_agents/unix/plugins/grep_log index 2143464b48..1ecba6266a 100755 --- a/pandora_agents/unix/plugins/grep_log +++ b/pandora_agents/unix/plugins/grep_log @@ -22,6 +22,11 @@ use strict; use File::Basename; use Scalar::Util qw(looks_like_number); +BEGIN { + eval { + require MIME::Base64; + }; +} # Output format (module or log_module). my $Output = 'module'; @@ -65,6 +70,37 @@ if ( (defined ($ENV{GREP_LOG_TMP})) && (-d $ENV{GREP_LOG_TMP}) ) { $Idx_dir=$ENV{GREP_LOG_TMP}; } +# Define encode_base64 if it is not available via MIME::Base64. +my $encode_sub = defined(&MIME::Base64::encode_base64) ? \&MIME::Base64::encode_base64 : sub { + my ($str, $endl) = @_; + + my @ALPHABET = ('A'..'Z', 'a'..'z', 0..9, '+', '/'); + my $str_len = length($str); + my $str_base64 = ''; + + for (my $i = 0; $i < $str_len; $i += 3) { + my $chunk = substr($str, $i, 3); + my $chunk_len = length($chunk); + + my $num = 0; + $num |= ord(substr($chunk, 0, 1)) << 16 if ($chunk_len >= 1); + $num |= ord(substr($chunk, 1, 1)) << 8 if ($chunk_len >= 2); + $num |= ord(substr($chunk, 2, 1)) if ($chunk_len == 3); + + my $enc_1 = ($num & 0xfc0000) >> 18; + my $enc_2 = ($num & 0x03f000) >> 12; + my $enc_3 = ($num & 0x000fc0) >> 6; + my $enc_4 = ($num & 0x00003f); + + $str_base64 .= $ALPHABET[$enc_1]; + $str_base64 .= $ALPHABET[$enc_2]; + $str_base64 .= $chunk_len >= 2 ? $ALPHABET[$enc_3] : '='; + $str_base64 .= $chunk_len == 3 ? $ALPHABET[$enc_4] : '='; + } + + return $str_base64; +}; + ######################################################################################## # Erase blank spaces before and after the string ######################################################################################## @@ -335,11 +371,13 @@ sub print_log ($) { my $output = "\n"; $output .= "\n"; $output .= "{$line}}) { + $tmp .= $content; + } } + $output .= &$encode_sub($tmp, ''); $output .= "]]>"; $output .= "\n"; diff --git a/pandora_agents/unix/plugins/grep_log_module b/pandora_agents/unix/plugins/grep_log_module index 6fc1cff239..d15a6f7c08 100755 --- a/pandora_agents/unix/plugins/grep_log_module +++ b/pandora_agents/unix/plugins/grep_log_module @@ -22,6 +22,11 @@ use strict; use File::Basename; +BEGIN { + eval { + require MIME::Base64; + }; +} # Output format (module or log_module). my $Output = 'log_module'; @@ -53,6 +58,37 @@ my $Idx_size = 0; # Regular expression to be matched my $Reg_exp = ''; +# Define encode_base64 if it is not available via MIME::Base64. +my $encode_sub = defined(&MIME::Base64::encode_base64) ? \&MIME::Base64::encode_base64 : sub { + my ($str, $endl) = @_; + + my @ALPHABET = ('A'..'Z', 'a'..'z', 0..9, '+', '/'); + my $str_len = length($str); + my $str_base64 = ''; + + for (my $i = 0; $i < $str_len; $i += 3) { + my $chunk = substr($str, $i, 3); + my $chunk_len = length($chunk); + + my $num = 0; + $num |= ord(substr($chunk, 0, 1)) << 16 if ($chunk_len >= 1); + $num |= ord(substr($chunk, 1, 1)) << 8 if ($chunk_len >= 2); + $num |= ord(substr($chunk, 2, 1)) if ($chunk_len == 3); + + my $enc_1 = ($num & 0xfc0000) >> 18; + my $enc_2 = ($num & 0x03f000) >> 12; + my $enc_3 = ($num & 0x000fc0) >> 6; + my $enc_4 = ($num & 0x00003f); + + $str_base64 .= $ALPHABET[$enc_1]; + $str_base64 .= $ALPHABET[$enc_2]; + $str_base64 .= $chunk_len >= 2 ? $ALPHABET[$enc_3] : '='; + $str_base64 .= $chunk_len == 3 ? $ALPHABET[$enc_4] : '='; + } + + return $str_base64; +}; + ############################################################################### # SUB error_msg # Print an error message and exit. @@ -213,11 +249,9 @@ sub print_log (@) { if ($Output eq 'log_module') { my $output = "\n"; $output .= "\n"; + $output .= "base64\n"; $output .= ""; $output .= "\n"; diff --git a/pandora_agents/win32/modules/pandora_module.cc b/pandora_agents/win32/modules/pandora_module.cc index d5bd1fc21d..4a6382acf6 100644 --- a/pandora_agents/win32/modules/pandora_module.cc +++ b/pandora_agents/win32/modules/pandora_module.cc @@ -520,7 +520,7 @@ Pandora_Module::getXml () { if (this->module_type == TYPE_LOG) { module_xml = "\n\tmodule_name; - module_xml += "]]>\n\t\n\tbase64\n\tdata_list && this->data_list->size () > 1) { list::iterator iter; @@ -532,25 +532,19 @@ Pandora_Module::getXml () { data = *iter; try { - data_clean = strreplace (this->getDataOutput (data), - "%", "%%" ); - data_clean = strreplace (data_clean, "]]>", "]]>getDataOutput(data); } catch (Module_Exception e) { continue; } - - module_xml += data_clean; } } else { data = data_list->front (); try { - data_clean = strreplace (this->getDataOutput (data), "%", "%%" ); - data_clean = strreplace (data_clean, "]]>", "]]>getDataOutput (data); } catch (Module_Exception e) { } } + module_xml += base64Encode(data_clean); module_xml += "]]>"; /* Clean up */ diff --git a/pandora_agents/win32/pandora_strutils.cc b/pandora_agents/win32/pandora_strutils.cc index ea3bbf51f0..83f1019d08 100644 --- a/pandora_agents/win32/pandora_strutils.cc +++ b/pandora_agents/win32/pandora_strutils.cc @@ -24,6 +24,8 @@ #include #include #include // for strchr +#include +#include using namespace Pandora; @@ -56,6 +58,54 @@ Pandora_Strutils::trim (const string str) { return result; } +/** + * Encode the given string to base64. + * Based on: https://en.wikibooks.org/wiki/Algorithm_Implementation/Miscellaneous/Base64 + * + * @param str String to be encoded. + * + * @return The base64 encoded string. + */ +string +Pandora_Strutils::base64Encode(string str) { + string base64_str; + std::uint32_t temp; + const static char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + + std::vector buffer(begin(str), end(str)); + base64_str.reserve(((buffer.size() / 3) + (buffer.size() % 3 > 0)) * 4); + + std::vector::iterator cursor = buffer.begin(); + for(size_t idx = 0; idx < buffer.size() / 3; idx++) { + temp = (*cursor++) << 16; + temp += (*cursor++) << 8; + temp += (*cursor++); + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(1, alphabet[(temp & 0x00000FC0) >> 6]); + base64_str.append(1, alphabet[(temp & 0x0000003F)]); + } + + switch(buffer.size() % 3){ + case 1: + temp = (*cursor++) << 16; + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(2, '='); + break; + case 2: + temp = (*cursor++) << 16; + temp += (*cursor++) << 8; + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(1, alphabet[(temp & 0x00000FC0) >> 6]); + base64_str.append(1, '='); + break; + } + + return base64_str; +} + /** * Convert an unicode string to a ANSI string. * diff --git a/pandora_agents/win32/pandora_strutils.h b/pandora_agents/win32/pandora_strutils.h index c105c9c3a9..fb7562d64d 100644 --- a/pandora_agents/win32/pandora_strutils.h +++ b/pandora_agents/win32/pandora_strutils.h @@ -44,6 +44,7 @@ namespace Pandora_Strutils { string trim (const string str); + string base64Encode(string str); string strUnicodeToAnsi (LPCWSTR s); wstring strAnsiToUnicode (LPCSTR s); string inttostr (const int i); From bb1f67c960e1fc4472fe13b398527f60d5efd64e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Fri, 26 May 2023 15:18:21 -0600 Subject: [PATCH 148/211] Add "defined" validations to get_module_status if --- pandora_server/lib/PandoraFMS/Core.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..630b8ea0ce 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5199,7 +5199,7 @@ sub get_module_status ($$$$) { $warning_str = (defined ($warning_str) && valid_regex ($warning_str) == 1) ? safe_output($warning_str) : ''; # Adjust percentage max/min values. - if ($module->{'percentage_critical'} == 1) { + if (defined($module->{'percentage_critical'}) && $module->{'percentage_critical'} == 1) { if ($critical_max != 0 && $critical_min != 0) { $critical_max = $last_data_value * (1 + $critical_max / 100.0); $critical_min = $last_data_value * (1 - $critical_min / 100.0); @@ -5216,7 +5216,7 @@ sub get_module_status ($$$$) { $module->{'critical_inverse'} = 0; } } - if ($module->{'percentage_warning'} == 1) { + if (defined($module->{'percentage_warning'}) && $module->{'percentage_warning'} == 1) { if ($warning_max != 0 && $warning_min != 0) { $warning_max = $last_data_value * (1 + $warning_max / 100.0); $warning_min = $last_data_value * (1 - $warning_min / 100.0); @@ -5255,7 +5255,7 @@ sub get_module_status ($$$$) { # Critical if ($critical_min ne $critical_max) { # [critical_min, critical_max) - if ($module->{'critical_inverse'} == 0) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { return 1 if ($data >= $critical_min && $data < $critical_max); return 1 if ($data >= $critical_min && $critical_max < $critical_min); } @@ -5272,7 +5272,7 @@ sub get_module_status ($$$$) { # Warning if ($warning_min ne $warning_max) { # [warning_min, warning_max) - if ($module->{'warning_inverse'} == 0) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); return 2 if ($data >= $warning_min && $warning_max < $warning_min); } @@ -5291,7 +5291,7 @@ sub get_module_status ($$$$) { # Critical $eval_result = eval { - if ($module->{'critical_inverse'} == 0) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { $critical_str ne '' && $data =~ /$critical_str/ ; } else { $critical_str ne '' && $data !~ /$critical_str/ ; @@ -5301,7 +5301,7 @@ sub get_module_status ($$$$) { # Warning $eval_result = eval { - if ($module->{'warning_inverse'} == 0) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { $warning_str ne '' && $data =~ /$warning_str/ ; } else { $warning_str ne '' && $data !~ /$warning_str/ ; From 20425562c9144c14844911c645c182f37f36cb78 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 27 May 2023 01:00:18 +0200 Subject: [PATCH 149/211] 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 738d82859a..0adb3f4c21 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230526 +Version: 7.0NG.771-230527 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 0f2a8b9a64..bafb50cf1c 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.771-230526" +pandora_version="7.0NG.771-230527" 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 41faa4189c..21a7411482 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230526'; +use constant AGENT_BUILD => '230527'; # 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 e65a057a1f..3d032242f5 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230526 +%define release 230527 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 9384ca50d8..366c89c922 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230526 +%define release 230527 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 40246f249e..b9de6d9635 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230526" +PI_BUILD="230527" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 85cf1478e9..b297542102 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230526} +{230527} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 76e4a97a68..c6e917bf4d 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.771 Build 230526") +#define PANDORA_VERSION ("7.0NG.771 Build 230527") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 4a9570c10f..a346532db9 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.771(Build 230526))" + VALUE "ProductVersion", "(7.0NG.771(Build 230527))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fdb6f97015..c807f9084a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230526 +Version: 7.0NG.771-230527 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 1a4058f752..f80e363a00 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.771-230526" +pandora_version="7.0NG.771-230527" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5c69e24da3..048e28c8c9 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 = 'PC230526'; +$build_version = 'PC230527'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index b0948156d4..a5ff62a68c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 39068c81ff..2caceecfaf 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230526 +%define release 230527 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 378e3ceeeb..bc516405c1 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230526 +%define release 230527 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 2d9c7b6fdb..56c11ad66c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230526" +PI_BUILD="230527" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bf57f5573f..f9f555190f 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.771 Build 230526"; +my $version = "7.0NG.771 Build 230527"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 43ccece3d3..71814e30f6 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.771 Build 230526"; +my $version = "7.0NG.771 Build 230527"; # save program name for logging my $progname = basename($0); From d58c7fe2a8950aaa63ef9aa6654eac747dc06ab2 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 28 May 2023 01:00:16 +0200 Subject: [PATCH 150/211] 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 0adb3f4c21..a334c82472 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230527 +Version: 7.0NG.771-230528 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 bafb50cf1c..cf9c9b60eb 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.771-230527" +pandora_version="7.0NG.771-230528" 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 21a7411482..7b580bfe7b 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230527'; +use constant AGENT_BUILD => '230528'; # 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 3d032242f5..f90eff4f4a 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230527 +%define release 230528 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 366c89c922..e6e460abf2 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230527 +%define release 230528 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 b9de6d9635..1e10362396 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230527" +PI_BUILD="230528" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index b297542102..a2e61911a0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230527} +{230528} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index c6e917bf4d..0773696a44 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.771 Build 230527") +#define PANDORA_VERSION ("7.0NG.771 Build 230528") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index a346532db9..440d08598b 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.771(Build 230527))" + VALUE "ProductVersion", "(7.0NG.771(Build 230528))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c807f9084a..e5cdd0a3cd 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230527 +Version: 7.0NG.771-230528 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 f80e363a00..12697b89ee 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.771-230527" +pandora_version="7.0NG.771-230528" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 048e28c8c9..d69baed988 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 = 'PC230527'; +$build_version = 'PC230528'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index a5ff62a68c..d2575f0bce 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2caceecfaf..1c3d55189b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230527 +%define release 230528 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index bc516405c1..d1009fdc9c 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230527 +%define release 230528 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 56c11ad66c..b02759b352 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230527" +PI_BUILD="230528" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index f9f555190f..c350562981 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.771 Build 230527"; +my $version = "7.0NG.771 Build 230528"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 71814e30f6..47884bf7ad 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.771 Build 230527"; +my $version = "7.0NG.771 Build 230528"; # save program name for logging my $progname = basename($0); From 6a634a37c5e30f26cf3718ea4bceb980dc0e3f8c Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 29 May 2023 01:00:17 +0200 Subject: [PATCH 151/211] 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 a334c82472..ce90075db2 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230528 +Version: 7.0NG.771-230529 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 cf9c9b60eb..b0e8ff0370 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.771-230528" +pandora_version="7.0NG.771-230529" 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 7b580bfe7b..7cc3f0d495 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230528'; +use constant AGENT_BUILD => '230529'; # 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 f90eff4f4a..d8e7930d53 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230528 +%define release 230529 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 e6e460abf2..ddb80a0d94 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230528 +%define release 230529 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 1e10362396..be8a4dbf4c 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230528" +PI_BUILD="230529" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a2e61911a0..00d6766a84 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230528} +{230529} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0773696a44..de919713b7 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.771 Build 230528") +#define PANDORA_VERSION ("7.0NG.771 Build 230529") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 440d08598b..3d1d149693 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.771(Build 230528))" + VALUE "ProductVersion", "(7.0NG.771(Build 230529))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index e5cdd0a3cd..5bef9036e4 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230528 +Version: 7.0NG.771-230529 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 12697b89ee..8ca9f85525 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.771-230528" +pandora_version="7.0NG.771-230529" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d69baed988..dd9f772d5a 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 = 'PC230528'; +$build_version = 'PC230529'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d2575f0bce..682abb43ef 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 1c3d55189b..f0f899aabc 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230528 +%define release 230529 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d1009fdc9c..d918958f02 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230528 +%define release 230529 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b02759b352..9e28020733 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230528" +PI_BUILD="230529" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index c350562981..e5759af9f2 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.771 Build 230528"; +my $version = "7.0NG.771 Build 230529"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 47884bf7ad..b05bedaed4 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.771 Build 230528"; +my $version = "7.0NG.771 Build 230529"; # save program name for logging my $progname = basename($0); From a59a6ff750857cd00ffc4cd78fe5a4c65cdd6c48 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 29 May 2023 10:01:15 +0200 Subject: [PATCH 152/211] #11297 fix interval reverse on critical/warning --- pandora_console/godmode/agentes/configurar_agente.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 4f51d8d7c0..d717bce983 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1523,7 +1523,7 @@ if ($update_module === true || $create_module === true) { $warning_threshold_check_type = get_parameter('warning_thresholds_checks'); if ($warning_threshold_check_type === 'normal_warning') { $percentage_warning = 0; - $warning_inverse = 0; + $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); } else if ($warning_threshold_check_type === 'warning_inverse') { $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); $percentage_warning = 0; @@ -1536,10 +1536,10 @@ if ($update_module === true || $create_module === true) { $critical_threshold_check_type = get_parameter('critical_thresholds_checks'); if ($critical_threshold_check_type === 'normal_critical') { $percentage_critical = 0; - $critical_inverse = 0; + $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); } else if ($critical_threshold_check_type === 'critical_inverse') { - $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); - $percentage_critical = 0; + $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); + $percentage_critical = 0; } else { $percentage_critical = (int) get_parameter('critical_inverse_string_sent'); $critical_inverse = 0; From 6650bfdc03218020c425bea82a7659b9362eabac Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 29 May 2023 10:43:12 +0200 Subject: [PATCH 153/211] #11358 evaluate if field value is a object --- pandora_console/include/db/mysql.php | 46 +++++++++++++++------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/pandora_console/include/db/mysql.php b/pandora_console/include/db/mysql.php index 564e566247..97880fdcbf 100644 --- a/pandora_console/include/db/mysql.php +++ b/pandora_console/include/db/mysql.php @@ -1190,30 +1190,32 @@ function mysql_db_format_array_to_update_sql($values) $fields = []; foreach ($values as $field => $value) { - if (is_numeric($field)) { - array_push($fields, $value); - continue; - } else if ($field[0] == '`') { - $field = str_replace('`', '', $field); - } - - if ($value === null) { - $sql = sprintf('`%s` = NULL', $field); - } else if (is_int($value) || is_bool($value)) { - $sql = sprintf('`%s` = %d', $field, $value); - } else if (is_float($value) || is_double($value)) { - $sql = sprintf('`%s` = %f', $field, $value); - } else { - // String - if (isset($value[0]) && $value[0] == '`') { - // Don't round with quotes if it references a field - $sql = sprintf('`%s` = %s', $field, $value); - } else { - $sql = sprintf("`%s` = '%s'", $field, $value); + if (is_object($value) === false) { + if (is_numeric($field)) { + array_push($fields, $value); + continue; + } else if ($field[0] == '`') { + $field = str_replace('`', '', $field); } - } - array_push($fields, $sql); + if ($value === null) { + $sql = sprintf('`%s` = NULL', $field); + } else if (is_int($value) || is_bool($value)) { + $sql = sprintf('`%s` = %d', $field, $value); + } else if (is_float($value) || is_double($value)) { + $sql = sprintf('`%s` = %f', $field, $value); + } else { + // String + if (isset($value[0]) && $value[0] == '`') { + // Don't round with quotes if it references a field + $sql = sprintf('`%s` = %s', $field, $value); + } else { + $sql = sprintf("`%s` = '%s'", $field, $value); + } + } + + array_push($fields, $sql); + } } return implode(', ', $fields); From fb8a54c42e4090080537bf46d193297937f4e834 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 13:41:17 +0200 Subject: [PATCH 154/211] #11195 fixed widget groups when select all --- .../include/lib/Dashboard/Widgets/system_group_status.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php index 4b8924d668..02df4c2888 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -395,6 +395,12 @@ class SystemGroupStatusWidget extends Widget $user_groups = users_get_groups(false, 'AR', $return_all_group); $selected_groups = explode(',', $this->values['groupId'][0]); + if (in_array(0, $selected_groups) === true) { + $selected_groups = []; + foreach (groups_get_all() as $key => $name_group) { + $selected_groups[] = groups_get_id($name_group); + } + } // Recursion. if ($this->values['groupRecursion'] === true) { From 883351b68df13d9ecb11e308d1ab365ad7da09ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 29 May 2023 10:02:19 -0600 Subject: [PATCH 155/211] Avoid unexpected else when variables are undefined --- pandora_server/lib/PandoraFMS/Core.pm | 50 ++++++++++++++++----------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 630b8ea0ce..df163ec28f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5253,9 +5253,10 @@ sub get_module_status ($$$$) { if ($module_type !~ m/_string/) { # Critical - if ($critical_min ne $critical_max) { + if ($critical_min ne $critical_max && defined($module->{'critical_inverse'})) { + # [critical_min, critical_max) - if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { + if ($module->{'critical_inverse'} == 0) { return 1 if ($data >= $critical_min && $data < $critical_max); return 1 if ($data >= $critical_min && $critical_max < $critical_min); } @@ -5270,9 +5271,10 @@ sub get_module_status ($$$$) { } # Warning - if ($warning_min ne $warning_max) { + if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { + # [warning_min, warning_max) - if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { + if ($module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); return 2 if ($data >= $warning_min && $warning_max < $warning_min); } @@ -5290,24 +5292,32 @@ sub get_module_status ($$$$) { else { # Critical - $eval_result = eval { - if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { - $critical_str ne '' && $data =~ /$critical_str/ ; - } else { - $critical_str ne '' && $data !~ /$critical_str/ ; - } - }; - return 1 if ($eval_result); + if(defined($module->{'critical_inverse'})){ + + $eval_result = eval { + if ($module->{'critical_inverse'} == 0) { + $critical_str ne '' && $data =~ /$critical_str/ ; + } else { + $critical_str ne '' && $data !~ /$critical_str/ ; + } + }; + + return 1 if ($eval_result); + } # Warning - $eval_result = eval { - if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { - $warning_str ne '' && $data =~ /$warning_str/ ; - } else { - $warning_str ne '' && $data !~ /$warning_str/ ; - } - }; - return 2 if ($eval_result); + if(defined($module->{'critical_inverse'})){ + + $eval_result = eval { + if ($module->{'warning_inverse'} == 0) { + $warning_str ne '' && $data =~ /$warning_str/ ; + } else { + $warning_str ne '' && $data !~ /$warning_str/ ; + } + }; + + return 2 if ($eval_result); + } } # Normal From 467796208bd99ce4a6bf7e956844f68fae144ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 29 May 2023 10:17:50 -0600 Subject: [PATCH 156/211] Small adjustment in warning_inverse --- pandora_server/lib/PandoraFMS/Core.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index df163ec28f..30a6f6c780 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5272,7 +5272,7 @@ sub get_module_status ($$$$) { # Warning if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { - + # [warning_min, warning_max) if ($module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); @@ -5306,7 +5306,7 @@ sub get_module_status ($$$$) { } # Warning - if(defined($module->{'critical_inverse'})){ + if(defined($module->{'warning_inverse'})){ $eval_result = eval { if ($module->{'warning_inverse'} == 0) { From 97455d4304268c3ffea4897cc080ce79f9eedad0 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 30 May 2023 01:00:18 +0200 Subject: [PATCH 157/211] 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 ce90075db2..068d25ba61 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230529 +Version: 7.0NG.771-230530 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 b0e8ff0370..0ca3e7bc19 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.771-230529" +pandora_version="7.0NG.771-230530" 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 7cc3f0d495..61818d4d77 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230529'; +use constant AGENT_BUILD => '230530'; # 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 d8e7930d53..61b7de98c3 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230529 +%define release 230530 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 ddb80a0d94..69cdf3c0e9 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230529 +%define release 230530 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 be8a4dbf4c..563121f5e2 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230529" +PI_BUILD="230530" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 00d6766a84..7709331714 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230529} +{230530} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index de919713b7..394ea74ed3 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.771 Build 230529") +#define PANDORA_VERSION ("7.0NG.771 Build 230530") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 3d1d149693..ea51a460fc 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.771(Build 230529))" + VALUE "ProductVersion", "(7.0NG.771(Build 230530))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5bef9036e4..a8053b5563 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230529 +Version: 7.0NG.771-230530 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 8ca9f85525..45449be129 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.771-230529" +pandora_version="7.0NG.771-230530" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index dd9f772d5a..55bdd44779 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 = 'PC230529'; +$build_version = 'PC230530'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 682abb43ef..7cb1d40aec 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index f0f899aabc..65e55331b9 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230529 +%define release 230530 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d918958f02..3fb9655291 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230529 +%define release 230530 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 9e28020733..6e6f49d985 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230529" +PI_BUILD="230530" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index e5759af9f2..fa7b89786a 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.771 Build 230529"; +my $version = "7.0NG.771 Build 230530"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b05bedaed4..c2fd71141a 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.771 Build 230529"; +my $version = "7.0NG.771 Build 230530"; # save program name for logging my $progname = basename($0); From 19696b1f89ebf88d4008f466775ddca906578206 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 08:50:58 +0200 Subject: [PATCH 158/211] #10967 Fix blue background in event list dialog --- pandora_console/include/styles/js/datatables.min.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pandora_console/include/styles/js/datatables.min.css b/pandora_console/include/styles/js/datatables.min.css index 2d108fe8d3..a9a1d5285c 100644 --- a/pandora_console/include/styles/js/datatables.min.css +++ b/pandora_console/include/styles/js/datatables.min.css @@ -924,9 +924,8 @@ a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover { border: 1px solid #003eff; - background: #007fff; + background: #ececec; font-weight: normal; - color: #fff; } .ui-icon-background, .ui-state-active .ui-icon-background { @@ -936,7 +935,6 @@ a.ui-button:active, .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { - color: #fff; text-decoration: none; } .ui-state-highlight, From 351a274639af9a2e661128593677f77cd42ba034 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 09:50:40 +0200 Subject: [PATCH 159/211] #11297 fix inverse interval for remote SNMP module --- pandora_console/godmode/agentes/configurar_agente.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index d717bce983..c7378ab3a6 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1523,10 +1523,10 @@ if ($update_module === true || $create_module === true) { $warning_threshold_check_type = get_parameter('warning_thresholds_checks'); if ($warning_threshold_check_type === 'normal_warning') { $percentage_warning = 0; - $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); + $warning_inverse = 0; } else if ($warning_threshold_check_type === 'warning_inverse') { - $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); - $percentage_warning = 0; + $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); + $percentage_warning = 0; } else { $percentage_warning = (int) get_parameter('warning_inverse_string_sent'); $warning_inverse = 0; @@ -1536,7 +1536,7 @@ if ($update_module === true || $create_module === true) { $critical_threshold_check_type = get_parameter('critical_thresholds_checks'); if ($critical_threshold_check_type === 'normal_critical') { $percentage_critical = 0; - $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); + $critical_inverse = 0; } else if ($critical_threshold_check_type === 'critical_inverse') { $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); $percentage_critical = 0; @@ -1550,6 +1550,7 @@ if ($update_module === true || $create_module === true) { || $id_module_type === MODULE_TYPE_ASYNC_STRING || $id_module_type === MODULE_TYPE_REMOTE_TCP_STRING || $id_module_type === MODULE_TYPE_REMOTE_CMD_STRING + || $id_module_type === MODULE_TYPE_REMOTE_SNMP_STRING ) { // Warning inverse string checkbox. $warning_string_checkbox = get_parameter('warning_inverse_string'); From cf843eba7a41f9bf3e991042131e52a436115143 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 11:47:34 +0200 Subject: [PATCH 160/211] #10851 Fix order by agent foreach --- .../include/functions_inventory.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index c91a375225..ab58844052 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -806,9 +806,12 @@ function inventory_get_datatable( $agent_data[$row['id_agente']][] = $row; } - foreach ($agent_data as $id_agent => $data_rows) { - $rows_tmp['agent'] = $row['name_agent']; - foreach ($data_rows as $row) { + foreach ($agent_data as $id_agent => $data_agent) { + $rows_tmp['agent'] = $data_agent['name_agent']; + foreach ($data_agent as $key => $agent_row) { + $data_agent[$key]['timestamp'] = $agent_row['last_update_timestamp']; + $data_agent[$key]['utimestamp'] = $agent_row['last_update']; + if ($utimestamp > 0) { $data_row = db_get_row_sql( sprintf( @@ -820,22 +823,19 @@ function inventory_get_datatable( AND id_agent_module_inventory = %d ORDER BY utimestamp DESC', $utimestamp, - $row['id_agent_module_inventory'] + $agent_row['id_agent_module_inventory'] ) ); if ($data_row !== false) { - $row['data'] = $data_row['data']; - $row['timestamp'] = $data_row['timestamp']; - $row['utimestamp'] = $data_row['utimestamp']; + $data_agent[$key]['data'] = $data_row['data']; } else { continue; } } } - $rows[0]['timestamp'] = $row['timestamp']; - $rows_tmp['row'] = $rows; + $rows_tmp['row'] = $data_agent; array_push($agents_rows, $rows_tmp); } From 346518e6e9613eb93fd5b6ea64073e115a90a764 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 30 May 2023 12:17:41 +0200 Subject: [PATCH 161/211] #11400 fixed group icons with cache --- .../include/rest-api/models/CachedModel.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/pandora_console/include/rest-api/models/CachedModel.php b/pandora_console/include/rest-api/models/CachedModel.php index 6bf9043c62..29a63e1439 100644 --- a/pandora_console/include/rest-api/models/CachedModel.php +++ b/pandora_console/include/rest-api/models/CachedModel.php @@ -79,6 +79,33 @@ abstract class CachedModel extends Model if ($ratio == 0 && $filter['cache_expiration'] > 0 && $widthRatio == 0) { $data = static::fetchCachedData($filter); $save_cache = true; + if (isset($filter['type']) === true + && (int) $filter['type'] === GROUP_ITEM + && empty($data) === false + ) { + // GROUP ITEM with cache. + if (isset($data['statusImageSrc']) === true) { + $img = explode('images/console/icons/', $data['statusImageSrc']); + if (empty($img[1]) === false) { + $img_path = 'images/console/icons/'.$img[1]; + $data['statusImageSrc'] = ui_get_full_url( + $img_path, + false, + false, + false + ); + } + + if (empty($img[0]) === false + && isset($data['link']) === true + ) { + $img_aux = explode('images/console/icons/', $data['statusImageSrc']); + if ($img_aux[0] !== $img[0]) { + $data['link'] = str_replace($img[0], $img_aux[0], $data['link']); + } + } + } + } } if (isset($data) === false) { From 3d7d5aed3abd95d4f2eab5e2288319ca52a32977 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 12:44:24 +0200 Subject: [PATCH 162/211] #11405 Fix table class --- pandora_console/godmode/servers/plugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 34ad71dd9b..75db97e1e7 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -978,14 +978,14 @@ if (empty($create) === false || empty($view) === false) { if ($rows !== false) { $pluginTable = new stdClass(); $pluginTable->id = 'plugin_table'; - $pluginTable->class = (is_metaconsole() === true) ? 'databox data' : 'info_table'; + $pluginTable->class = 'info_table'; $pluginTable->head = []; $pluginTable->head[0] = __('Name'); $pluginTable->head[1] = __('Type'); $pluginTable->head[2] = __('Command'); if ($management_allowed === true) { - $pluginTable->head[3] = ''.__('Op.').''; + $pluginTable->head[3] = __('Operations'); } $pluginTable->data = []; From 3ff8b115f709b4b4abf7d9d2edee8ba425b658fc Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 30 May 2023 13:46:43 +0200 Subject: [PATCH 163/211] #11354 The tips modal is hidden when the about modal is opened. --- pandora_console/include/javascript/pandora.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index f5d444ae36..22815792e0 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2298,6 +2298,8 @@ var formatterDataVerticalBar = function(value, ctx) { $(document).ready(function() { $("#icon_about").click(function() { $("#icon_about").addClass("selected"); + // Hidden tips modal. + $(".window").css("display", "none"); jQuery.post( "ajax.php", From cdb01f11058c21263720b0e807f62b16e0936c36 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 14:03:39 +0200 Subject: [PATCH 164/211] #10851 Fix variable name --- pandora_console/operation/inventory/inventory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index fd30943e8d..9ee25710a4 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -675,10 +675,10 @@ $table->data[1][1] = html_print_label_input_block( if (is_metaconsole() === false) { $dates = inventory_get_dates( $inventory_module, - $inventory_agent, + $inventory_id_agent, $inventory_id_group ); - + hd($dates, true); $table->data[1][2] = html_print_label_input_block( __('Date'), html_print_select( From 6d843537782ca6e69cbd4d69e63a2da86853a5fb Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 14:09:32 +0200 Subject: [PATCH 165/211] #10851 Fix id agent and delete hd --- pandora_console/include/functions_inventory.php | 2 +- pandora_console/operation/inventory/inventory.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index ab58844052..0337b28ed0 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -922,7 +922,7 @@ function inventory_get_dates($module_inventory_name, $inventory_agent, $inventor AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory AND tagente.id_agente = tagent_module_inventory.id_agente'; - if ($inventory_agent !== 'All') { + if ($inventory_agent !== 0) { $sql .= ' AND tagent_module_inventory.id_agente IN ('."'".implode(',', (array) $inventory_agent)."'".')'; } diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index 9ee25710a4..1e25980c52 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -678,7 +678,6 @@ if (is_metaconsole() === false) { $inventory_id_agent, $inventory_id_group ); - hd($dates, true); $table->data[1][2] = html_print_label_input_block( __('Date'), html_print_select( From fdfd55643e10e00565c36dcf6db827b935d15ec3 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 14:57:02 +0200 Subject: [PATCH 166/211] #11001 tips default en_gb --- pandora_console/include/class/TipsWindow.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index a40ca9685c..544b68a7cf 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -282,6 +282,13 @@ class TipsWindow $tip['title'] = io_safe_output($tip['title']); $tip['text'] = io_safe_output($tip['text']); $tip['url'] = io_safe_output($tip['url']); + } else { + $language = 'en_GB'; + $sql = 'SELECT id, title, text, url + FROM twelcome_tip + WHERE enable = "1" AND id_lang = "'.$language.'"'; + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; + $tip = db_get_row_sql($sql); } if ($return) { From 2f92bf51ace148e053acdf7e47112be0a1129569 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 15:02:54 +0200 Subject: [PATCH 167/211] #11409 style update online --- pandora_console/update_manager_client/resources/styles/um.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css index 12c3947238..0da988139b 100644 --- a/pandora_console/update_manager_client/resources/styles/um.css +++ b/pandora_console/update_manager_client/resources/styles/um.css @@ -108,7 +108,7 @@ a.update_manager_button:after { color: #82b92e; font-size: 6em; font-weight: bold; - margin: 30px 0 !important; + margin: 50px 0 !important; } .update_manager_warning p { From bf513a5c7a05c7d9d564d5da02d15fd6f09ed20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Tue, 30 May 2023 08:28:47 -0600 Subject: [PATCH 168/211] Evaluate as 0 undefined values --- pandora_server/lib/PandoraFMS/Core.pm | 69 ++++++++++++--------------- 1 file changed, 31 insertions(+), 38 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 30a6f6c780..8e407e9703 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5253,71 +5253,64 @@ sub get_module_status ($$$$) { if ($module_type !~ m/_string/) { # Critical - if ($critical_min ne $critical_max && defined($module->{'critical_inverse'})) { + if ($critical_min ne $critical_max) { - # [critical_min, critical_max) - if ($module->{'critical_inverse'} == 0) { - return 1 if ($data >= $critical_min && $data < $critical_max); - return 1 if ($data >= $critical_min && $critical_max < $critical_min); - } # (-inf, critical_min), [critical_max, +inf) - else { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 1) { if ($critical_max < $critical_min) { return 1 if ($data < $critical_min); } else { return 1 if ($data < $critical_min || $data >= $critical_max); } } + # [critical_min, critical_max) + else { + return 1 if ($data >= $critical_min && $data < $critical_max); + return 1 if ($data >= $critical_min && $critical_max < $critical_min); + } } # Warning - if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { - - # [warning_min, warning_max) - if ($module->{'warning_inverse'} == 0) { - return 2 if ($data >= $warning_min && $data < $warning_max); - return 2 if ($data >= $warning_min && $warning_max < $warning_min); - } + if ($warning_min ne $warning_max) { # (-inf, warning_min), [warning_max, +inf) - else { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 1) { if ($warning_max < $warning_min) { return 2 if ($data < $warning_min); } else { return 2 if ($data < $warning_min || $data >= $warning_max); } } + # [warning_min, warning_max) + else { + return 2 if ($data >= $warning_min && $data < $warning_max); + return 2 if ($data >= $warning_min && $warning_max < $warning_min); + } } } # String else { # Critical - if(defined($module->{'critical_inverse'})){ - - $eval_result = eval { - if ($module->{'critical_inverse'} == 0) { - $critical_str ne '' && $data =~ /$critical_str/ ; - } else { - $critical_str ne '' && $data !~ /$critical_str/ ; - } - }; + $eval_result = eval { + if (defined($module->{'critical_inverse'} && $module->{'critical_inverse'} == 1) { + $critical_str ne '' && $data !~ /$critical_str/ ; + } else { + $critical_str ne '' && $data =~ /$critical_str/ ; + } + }; - return 1 if ($eval_result); - } - + return 1 if ($eval_result); + # Warning - if(defined($module->{'warning_inverse'})){ - - $eval_result = eval { - if ($module->{'warning_inverse'} == 0) { - $warning_str ne '' && $data =~ /$warning_str/ ; - } else { - $warning_str ne '' && $data !~ /$warning_str/ ; - } - }; + $eval_result = eval { + if (defined($module->{'warning_inverse'} && $module->{'warning_inverse'} == 1) { + $warning_str ne '' && $data !~ /$warning_str/ ; + } else { + $warning_str ne '' && $data =~ /$warning_str/ ; + } + }; - return 2 if ($eval_result); - } + return 2 if ($eval_result); } # Normal From 84f32fdcac656d66b1b6ca69fac250ba7c269175 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 16:31:39 +0200 Subject: [PATCH 169/211] #11236 added button in server metaconsole for edit remote config --- .../godmode/servers/modificar_server.php | 58 +++++++++++++------ .../godmode/servers/servers.build_table.php | 2 +- 2 files changed, 41 insertions(+), 19 deletions(-) diff --git a/pandora_console/godmode/servers/modificar_server.php b/pandora_console/godmode/servers/modificar_server.php index 844b0a618f..cb99f3b4ef 100644 --- a/pandora_console/godmode/servers/modificar_server.php +++ b/pandora_console/godmode/servers/modificar_server.php @@ -29,8 +29,8 @@ // Load global vars. global $config; -require_once 'include/functions_servers.php'; -require_once 'include/functions_graph.php'; +require_once $config['homedir'].'/include/functions_servers.php'; +require_once $config['homedir'].'/include/functions_graph.php'; check_login(); @@ -205,24 +205,46 @@ if (isset($_GET['server']) === true) { $buttons[$tab]['active'] = true; - ui_print_standard_header( - __('Remote Configuration'), - 'images/gm_servers.png', - false, - 'servers', - true, - $buttons, - [ + if (is_metaconsole() === true) { + ui_print_standard_header( + __('Remote Configuration'), + 'images/gm_servers.png', + false, + 'servers', + true, + [], [ - 'link' => '', - 'label' => __('Servers'), - ], + [ + 'link' => '', + 'label' => __('Servers'), + ], + [ + 'link' => 'index.php?sec=advanced&sec2=advanced/servers', + 'label' => __('%s servers', get_product_name()), + ], + ] + ); + } else { + ui_print_standard_header( + __('Remote Configuration'), + 'images/gm_servers.png', + false, + 'servers', + true, + $buttons, [ - 'link' => 'index.php?sec=gservers&sec2=godmode/servers/modificar_server', - 'label' => __('%s servers', get_product_name()), - ], - ] - ); + [ + 'link' => '', + 'label' => __('Servers'), + ], + [ + 'link' => 'index.php?sec=gservers&sec2=godmode/servers/modificar_server', + 'label' => __('%s servers', get_product_name()), + ], + ] + ); + } + if ($tab === 'standard_editor') { $advanced_editor = false; diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index b38ff6591a..8d2418cc5e 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -259,7 +259,7 @@ foreach ($servers as $server) { 'images/agents@svg.svg', true, [ - 'title' => __('Manage satellite hosts'), + 'title' => __('Manage server conf'), 'class' => 'main_menu_icon invert_filter', ] ); From accb760cb76ab3ac00a19eb3bb5d9799f889d03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Tue, 30 May 2023 08:44:52 -0600 Subject: [PATCH 170/211] Small adjustments --- pandora_server/lib/PandoraFMS/Core.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 8e407e9703..384b2aa0d5 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5292,7 +5292,7 @@ sub get_module_status ($$$$) { # Critical $eval_result = eval { - if (defined($module->{'critical_inverse'} && $module->{'critical_inverse'} == 1) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 1) { $critical_str ne '' && $data !~ /$critical_str/ ; } else { $critical_str ne '' && $data =~ /$critical_str/ ; @@ -5303,7 +5303,7 @@ sub get_module_status ($$$$) { # Warning $eval_result = eval { - if (defined($module->{'warning_inverse'} && $module->{'warning_inverse'} == 1) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 1) { $warning_str ne '' && $data !~ /$warning_str/ ; } else { $warning_str ne '' && $data =~ /$warning_str/ ; From 2a7eb1e06912350af38f6ecff1eda92570ba9ee0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 17:17:34 +0200 Subject: [PATCH 171/211] #11280 fixed acoustic console name --- pandora_console/godmode/menu.php | 4 ++-- pandora_console/include/class/EventSound.class.php | 4 ++-- pandora_console/operation/events/events.php | 6 +++--- pandora_console/operation/events/sound_events.php | 2 +- pandora_console/operation/menu.php | 8 ++++---- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index f6e4aac358..0546647846 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -452,8 +452,8 @@ if ((bool) check_acl($config['id_user'], 0, 'PM') === true || (bool) check_acl($ } } - $sub['godmode/events/configuration_sounds']['text'] = __('Accoustic console setup'); - $sub['godmode/events/configuration_sounds']['id'] = 'Accoustic console setup'; + $sub['godmode/events/configuration_sounds']['text'] = __('Acoustic console setup'); + $sub['godmode/events/configuration_sounds']['id'] = 'Acoustic console setup'; $sub['godmode/events/configuration_sounds']['pages'] = ['godmode/events/configuration_sounds']; $menu_godmode['gextensions']['sub'] = $sub; diff --git a/pandora_console/include/class/EventSound.class.php b/pandora_console/include/class/EventSound.class.php index 41e54cc4ff..7d9bfbca6e 100644 --- a/pandora_console/include/class/EventSound.class.php +++ b/pandora_console/include/class/EventSound.class.php @@ -209,7 +209,7 @@ class EventSound extends HTML $titleHeader = __('Add new sound'); } else { $helpHeader = 'servers_ha_clusters_tab'; - $titleHeader = __('Accoustic console sound list'); + $titleHeader = __('Acoustic console sound list'); } // Header. @@ -227,7 +227,7 @@ class EventSound extends HTML ], [ 'link' => '', - 'label' => __('Accoustic console setup'), + 'label' => __('Acoustic console setup'), ], ] ); diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index f0e69a427c..d1d653777a 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -1560,7 +1560,7 @@ if ($pure) { ] ).''; - // Accoustic console. + // Acoustic console. $sound_event['active'] = false; // Sound Events. @@ -1583,7 +1583,7 @@ if ($pure) { 'images/sound_console@svg.svg', true, [ - 'title' => __('Accoustic console'), + 'title' => __('Acoustic console'), 'class' => 'invert_filter main_menu_icon', ] ).''; @@ -1633,7 +1633,7 @@ if ($pure) { switch ($section) { case 'sound_event': $onheader['sound_event']['active'] = true; - $section_string = __('Accoustic console'); + $section_string = __('Acoustic console'); break; case 'history': diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index c4a968e3df..89ae198e01 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -59,7 +59,7 @@ echo ''; echo ''; ?> -<?php echo __('Accoustic console'); ?>) +<?php echo __('Acoustic console'); ?>) diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 4e72aaac16..96462b0eed 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -563,11 +563,11 @@ if ($access_console_node === true) { $sub['operation/events/events_rss.php?user='.$config['id_user'].'&hashup='.$hashup.'&fb64='.$fb64]['type'] = 'direct'; } - // Accoustic console. + // Acoustic console. $data_sound = base64_encode( json_encode( [ - 'title' => __('Accoustic console'), + 'title' => __('Acoustic console'), 'start' => __('Start'), 'stop' => __('Stop'), 'noAlert' => __('No alert'), @@ -580,8 +580,8 @@ if ($access_console_node === true) { ); $javascript = 'javascript: openSoundEventModal(`'.$data_sound.'`);'; - $sub[$javascript]['text'] = __('Accoustic console'); - $sub[$javascript]['id'] = 'Accoustic console Modal'; + $sub[$javascript]['text'] = __('Acoustic console'); + $sub[$javascript]['id'] = 'Acoustic console Modal'; $sub[$javascript]['type'] = 'direct'; echo ''; From eb1e28ce7df780b1e4c7fb1c3e0939014dcb735a Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 17:18:58 +0200 Subject: [PATCH 172/211] #11280 fixed acoustic console name --- pandora_console/operation/events/sound_events.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index 89ae198e01..bae7c0cdd2 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -59,7 +59,7 @@ echo ''; echo ''; ?> -<?php echo __('Acoustic console'); ?>) +<?php echo __('Acoustic console'); ?> From 13725892f9a1fe06e9e2881d95cabed0070f406c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 17:26:51 +0200 Subject: [PATCH 173/211] #11409 buttons update online change --- .../update_manager_client/resources/styles/um.css | 13 ++----------- .../update_manager_client/views/online.php | 10 ++++++---- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css index 0da988139b..6595bc4e82 100644 --- a/pandora_console/update_manager_client/resources/styles/um.css +++ b/pandora_console/update_manager_client/resources/styles/um.css @@ -315,19 +315,10 @@ a.update_manager_button:after { } #um-buttons button { - margin: 0 1em 1em 1em; - border: none; padding: 10px; cursor: pointer; - background: #efefef; -} - -#um-buttons button:hover { - background: #ddd; -} - -#um-buttons button:active { - background: #ccc; + width: 285px; + margin: 20px; } .ui-widget.ui-widget-content { diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php index f60b0f5e52..d85b26ecb8 100644 --- a/pandora_console/update_manager_client/views/online.php +++ b/pandora_console/update_manager_client/views/online.php @@ -61,8 +61,10 @@ global $config;
@@ -99,8 +101,8 @@ global $config; window.onload = function() { var bsearch = document.getElementById('um-search'); - var bnext = document.getElementById('um-next'); - var blast = document.getElementById('um-last'); + var bnext = document.getElementById('button-um-next'); + var blast = document.getElementById('button-um-last'); var result = document.getElementById('um-result'); Date: Tue, 30 May 2023 17:41:12 +0200 Subject: [PATCH 174/211] #11417 fixed accoustic console --- pandora_console/include/styles/sound_events.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/sound_events.css b/pandora_console/include/styles/sound_events.css index 5bab51a89d..3b36dc67a2 100644 --- a/pandora_console/include/styles/sound_events.css +++ b/pandora_console/include/styles/sound_events.css @@ -4,6 +4,9 @@ div.container-button-play > button#button-start-search { transition: none !important; } +.wizard { + text-align: left; +} #modal-sound { display: flex; flex-direction: column; @@ -66,7 +69,7 @@ div.container-button-play > button#button-start-search { width: inherit; position: absolute; top: -12px; - left: 50%; + left: 52%; } #tabs-sound-modal ul.wizard li.interval-sounds label:first-of-type, From 71d196778b5e5b1b0beb75dcf6eb1be538e84e6d Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 17:41:34 +0200 Subject: [PATCH 175/211] #11409 update online fix styles --- .../lib/UpdateManager/UI/Manager.php | 2 +- .../update_manager_client/resources/javascript/umc.js | 4 ++++ .../update_manager_client/resources/styles/um.css | 8 ++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php index 9c6abff902..626899e56e 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php @@ -481,7 +481,7 @@ class Manager if (count($updates) > 0) { $next = $updates[0]; - $return = '

'.\__('Next update').':'; + $return = '

'.\__('Next update').': '; $return .= $next['version'].''; $return .= ' - Date: Wed, 31 May 2023 01:00:20 +0200 Subject: [PATCH 176/211] 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 068d25ba61..0fe7c93e93 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230530 +Version: 7.0NG.771-230531 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 0ca3e7bc19..1983b62c04 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.771-230530" +pandora_version="7.0NG.771-230531" 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 61818d4d77..4a064315bd 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230530'; +use constant AGENT_BUILD => '230531'; # 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 61b7de98c3..3125e9c2bb 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230530 +%define release 230531 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 69cdf3c0e9..7acb408822 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230530 +%define release 230531 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 563121f5e2..fffd893af9 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230530" +PI_BUILD="230531" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7709331714..a3ff172ec1 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230530} +{230531} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 394ea74ed3..d01ac3a5a9 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.771 Build 230530") +#define PANDORA_VERSION ("7.0NG.771 Build 230531") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index ea51a460fc..bfbc09f5a2 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.771(Build 230530))" + VALUE "ProductVersion", "(7.0NG.771(Build 230531))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a8053b5563..661d94abb2 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230530 +Version: 7.0NG.771-230531 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 45449be129..6b10b1a37b 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.771-230530" +pandora_version="7.0NG.771-230531" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 55bdd44779..8a4b2c0117 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 = 'PC230530'; +$build_version = 'PC230531'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 7cb1d40aec..f34cee66df 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@

[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 65e55331b9..8768bfc072 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230530 +%define release 230531 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 3fb9655291..d4b42166b1 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230530 +%define release 230531 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 6e6f49d985..309fde18be 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230530" +PI_BUILD="230531" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index fa7b89786a..20e720c704 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.771 Build 230530"; +my $version = "7.0NG.771 Build 230531"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index c2fd71141a..3da69ef276 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.771 Build 230530"; +my $version = "7.0NG.771 Build 230531"; # save program name for logging my $progname = basename($0); From 577428d193326d9d33840402607ffa5d5fdf8ae1 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 31 May 2023 13:07:24 +0200 Subject: [PATCH 177/211] #11001 images tips default en_gb --- pandora_console/include/class/TipsWindow.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 544b68a7cf..0aafe10ff0 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -289,6 +289,12 @@ class TipsWindow WHERE enable = "1" AND id_lang = "'.$language.'"'; $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); + + $tip['files'] = $this->getFilesFromTip($tip['id']); + + $tip['title'] = io_safe_output($tip['title']); + $tip['text'] = io_safe_output($tip['text']); + $tip['url'] = io_safe_output($tip['url']); } if ($return) { From 101ba8dad3cc7fb5f12dd011c55f0a2bbec49e34 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 31 May 2023 14:20:33 +0200 Subject: [PATCH 178/211] #11001 tips correction --- .../include/class/TipsWindow.class.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 0aafe10ff0..94a6f6a4ba 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -275,14 +275,14 @@ class TipsWindow $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); - + $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips']; if (empty($tip) === false) { $tip['files'] = $this->getFilesFromTip($tip['id']); $tip['title'] = io_safe_output($tip['title']); $tip['text'] = io_safe_output($tip['text']); $tip['url'] = io_safe_output($tip['url']); - } else { + } else if ($check_tips === '0') { $language = 'en_GB'; $sql = 'SELECT id, title, text, url FROM twelcome_tip @@ -325,6 +325,15 @@ class TipsWindow global $config; $profilesUser = users_get_user_profile($config['id_user']); $idProfilesFilter = '0'; + $userInfo = users_get_user_by_id($config['id_user']); + $language = ($userInfo['language'] !== 'default') ? $userInfo['language'] : $config['language']; + + $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips']; + + if ($check_tips === '0') { + $language = 'en_GB'; + } + foreach ($profilesUser as $key => $profile) { $idProfilesFilter .= ','.$profile['id_perfil']; } @@ -334,10 +343,9 @@ class TipsWindow WHERE enable = "1" '; $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); - $sql .= sprintf(' AND id_lang = "%s"', $config['language']); - - $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; + $sql .= sprintf(' AND id_lang = "%s"', $language); + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; return db_get_sql($sql); } From 0658282306746dcde0f0e8a766bf61885984ee16 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 31 May 2023 15:10:01 +0200 Subject: [PATCH 179/211] #11406 Fixed the bug that allows to show the delete icon of the OS component --- pandora_console/godmode/setup/os.list.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index 0322fe79f1..5dbd74ec86 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -66,7 +66,7 @@ $table->head[1] = __('Icon'); $table->head[2] = __('Name'); $table->head[3] = __('Description'); if ($is_management_allowed === true) { - $table->head[4] = ''; + $table->head[4] = __('Actions'); } if ($is_management_allowed === true) { @@ -132,8 +132,7 @@ foreach ($osList as $os) { $data[] = html_print_anchor( [ 'href' => $hrefDelete, - 'class' => 'invert_filter main_menu_icon', - 'content' => html_print_image('images/delete.svg', true), + 'content' => html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon invert_filter']), ], true ); From ad0dcf45d96c7e25380a2b667cc3c70ec585d59f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 31 May 2023 15:34:19 +0200 Subject: [PATCH 180/211] #10979 added grafana plugin --- pandora_console/extensions/grafana/.htaccess | 7 + pandora_console/extensions/grafana/index.php | 66 +++++++++ pandora_console/extensions/grafana/query.php | 139 ++++++++++++++++++ pandora_console/extensions/grafana/search.php | 87 +++++++++++ 4 files changed, 299 insertions(+) create mode 100644 pandora_console/extensions/grafana/.htaccess create mode 100644 pandora_console/extensions/grafana/index.php create mode 100644 pandora_console/extensions/grafana/query.php create mode 100644 pandora_console/extensions/grafana/search.php diff --git a/pandora_console/extensions/grafana/.htaccess b/pandora_console/extensions/grafana/.htaccess new file mode 100644 index 0000000000..7b8e46129e --- /dev/null +++ b/pandora_console/extensions/grafana/.htaccess @@ -0,0 +1,7 @@ +# /etc/httpd/conf/httpd.conf -> AllowOverride All -> service httpd restart + +RewriteEngine on + +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME}\.php -f +RewriteRule ^(.*)$ $1.php \ No newline at end of file diff --git a/pandora_console/extensions/grafana/index.php b/pandora_console/extensions/grafana/index.php new file mode 100644 index 0000000000..e925e56233 --- /dev/null +++ b/pandora_console/extensions/grafana/index.php @@ -0,0 +1,66 @@ + 200, + 'message' => 'Access granted', + ]; + } else { + $result_array = [ + 'code' => 403, + 'message' => 'Access forbidden', + ]; + } + } else { + $result_array = [ + 'code' => 401, + 'message' => 'Unauthorized', + ]; + } +} else { + // OPTIONS request automatically works + if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') { + $result_array = [ + 'code' => 200, + 'message' => 'Options request accepted', + ]; + } else { + $result_array = [ + 'code' => 401, + 'message' => 'Unauthorized', + ]; + } +} + +// Numeric data in array must be numeric data in json (not text) +$result = json_encode($result_array, JSON_NUMERIC_CHECK); + +echo $result; diff --git a/pandora_console/extensions/grafana/query.php b/pandora_console/extensions/grafana/query.php new file mode 100644 index 0000000000..c5812a32c9 --- /dev/null +++ b/pandora_console/extensions/grafana/query.php @@ -0,0 +1,139 @@ + $target_data['module'], + 'period' => (strtotime($payload['range']['to']) - strtotime($payload['range']['from'])), + 'date' => strtotime($payload['range']['to']), + 'return_data' => 1, + 'show_unknown' => true, + 'fullscale' => (bool) $target_data['tip'], + 'time_interval' => $target_data['interval'], + ]; + + // Get all data. + $data = grafico_modulo_sparse($params); + + $unknown_timestamps = []; + + // Set unknown data as null. + foreach ($data['unknown1']['data'] as $d) { + if (($d[1] == 1 && !$params['fullscale']) || ($d[1] == 0 && $params['fullscale'])) { + $result_data[] = [ + null, + $d[0], + ]; + } + + $unknown_timestamps[] = $d[0]; + } + + // Get each data if not in unknown timestamps + foreach ($data['sum1']['data'] as $d) { + if ($d[1] != false && !in_array($d[0], $unknown_timestamps)) { + $result_data[] = [ + $d[1], + $d[0], + ]; + } + } + + // Sort all data by utimestamp (Grafana needs it). + usort( + $result_data, + function ($a, $b) { + return $a[1] > $b[1] ? 1 : -1; + } + ); + + $rows = []; + + foreach ($result_data as $k => $v) { + if (($result_data[$k][0] !== $result_data[($k - 1)][0] + || $result_data[$k][0] !== $result_data[($k + 1)][0]) + || ($result_data[($k - 1)][0] === null + && $result_data[$k][0] !== null + && $result_data[$k][1] != (strtotime($payload['range']['to']) * 1000)) + || ($result_data[($k - 1)][0] === $result_data[$k][0] && $result_data[$k][1] == (strtotime($payload['range']['to']) * 1000)) + ) { + $rows[] = $result_data[$k]; + } + } + + if (!$params['fullscale']) { + $target_data['target'] .= ' (avg)'; + } + + // Set all target info and data + $result_array[] = [ + 'type' => 'table', + 'target' => $target_data['target'], + 'refId' => $target_data['target'], + 'columns' => [ + [ + 'text' => $target_data['target'], + ], + [ + 'text' => 'Time', + 'type' => 'time', + ], + ], + 'datapoints' => array_values($rows), + ]; + } + } + } + } +} + +// Numeric data in array must be numeric data in json (not text). +$result = json_encode($result_array, JSON_NUMERIC_CHECK); + +echo $result; diff --git a/pandora_console/extensions/grafana/search.php b/pandora_console/extensions/grafana/search.php new file mode 100644 index 0000000000..48a4f819a9 --- /dev/null +++ b/pandora_console/extensions/grafana/search.php @@ -0,0 +1,87 @@ + 0, + 'text' => 'All', + ]; + + // Get groups that match the search + $sql = 'SELECT nombre, id_grupo id FROM tgrupo WHERE LOWER(nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%")'; + + // If search is for agents + } else if ($payload['type'] == 'agent') { + // Get agents that match the search + $sql = 'SELECT a.alias nombre, a.id_agente id FROM tagente a, tgrupo g WHERE a.disabled = 0 AND a.id_grupo = g.id_grupo AND LOWER(a.alias) LIKE LOWER("%'.io_safe_input($payload['search']).'%")'; + + // If search group is not all, add extra filter + if ($payload['extra'] != 0) { + $sql .= ' AND g.id_grupo = "'.io_safe_input($payload['extra']).'"'; + } + + // If search is for modules + } else if ($payload['type'] == 'module') { + // Get modules that match the search (not string) + $sql = 'SELECT m.nombre nombre, m.id_agente_modulo id FROM tagente_modulo m, tagente a, ttipo_modulo t WHERE m.disabled = 0 AND m.id_agente = a.id_agente AND t.id_tipo = m.id_tipo_modulo AND a.id_agente = "'.io_safe_input($payload['extra']).'" AND LOWER(m.nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%") AND t.nombre NOT LIKE "%string"'; + } + + // Run query + $sql_results = db_get_all_rows_sql($sql); + + foreach ($sql_results as $sql_result) { + // If search is for groups, only add those with permissions + if ($payload['type'] == 'group') { + if (check_acl($user_in_db, $sql_result['id'], 'AR')) { + $result_array[] = [ + 'value' => $sql_result['id'], + 'text' => io_safe_output($sql_result['nombre']), + ]; + } + } else { + $result_array[] = [ + 'value' => $sql_result['id'], + 'text' => io_safe_output($sql_result['nombre']), + ]; + } + } + } + } +} + +$result = json_encode($result_array, JSON_UNESCAPED_UNICODE); + +echo $result; From d15a3904fbbfeff843322711cc3d8ea3b42bf273 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 1 Jun 2023 01:00:19 +0200 Subject: [PATCH 181/211] 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 0fe7c93e93..ec108607af 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230531 +Version: 7.0NG.771-230601 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 1983b62c04..3b5feeee14 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.771-230531" +pandora_version="7.0NG.771-230601" 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 4a064315bd..344e125ffc 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230531'; +use constant AGENT_BUILD => '230601'; # 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 3125e9c2bb..0c7345a377 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230531 +%define release 230601 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 7acb408822..3d1c044da5 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230531 +%define release 230601 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 fffd893af9..254fd16ca3 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230531" +PI_BUILD="230601" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a3ff172ec1..eb23e0bd05 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230531} +{230601} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d01ac3a5a9..d32fad17dd 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.771 Build 230531") +#define PANDORA_VERSION ("7.0NG.771 Build 230601") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index bfbc09f5a2..eeb739c5c1 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.771(Build 230531))" + VALUE "ProductVersion", "(7.0NG.771(Build 230601))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 661d94abb2..d06abfe8ae 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230531 +Version: 7.0NG.771-230601 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 6b10b1a37b..2e62b33f4c 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.771-230531" +pandora_version="7.0NG.771-230601" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8a4b2c0117..47c0ee51ef 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 = 'PC230531'; +$build_version = 'PC230601'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index f34cee66df..b756b1c325 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 8768bfc072..1a45a66a8d 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230531 +%define release 230601 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d4b42166b1..8dd2252d7b 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230531 +%define release 230601 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 309fde18be..b9e47a6bc2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230531" +PI_BUILD="230601" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 20e720c704..bd60360889 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.771 Build 230531"; +my $version = "7.0NG.771 Build 230601"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 3da69ef276..d42cc6db58 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.771 Build 230531"; +my $version = "7.0NG.771 Build 230601"; # save program name for logging my $progname = basename($0); From 162c33733f58d3aae112fab0217c8e418ad197bf Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 1 Jun 2023 10:31:14 +0200 Subject: [PATCH 182/211] #11430 Added a validation that checks if the User id already exists --- pandora_console/godmode/users/configure_user.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 210d7e0945..808261ef61 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -384,6 +384,8 @@ if ($create_user === true) { // Generate new API token. $values['api_token'] = api_token_generate(); + // Validate the user ID if it already exists. + $user_exists = get_user_info($id); if (empty($id) === true) { ui_print_error_message(__('User ID cannot be empty')); @@ -392,6 +394,13 @@ if ($create_user === true) { $password_new = ''; $password_confirm = ''; $new_user = true; + } else if (isset($user_exists['id_user'])) { + $is_err = true; + ui_print_error_message(__('User ID already exists')); + $user_info = $values; + $password_new = ''; + $password_confirm = ''; + $new_user = true; } else if (preg_match('/^\s+|\s+$/', io_safe_output($id))) { ui_print_error_message(__('Invalid user ID: leading or trailing blank spaces not allowed')); $is_err = true; From 7d0eeab261de55281879bd43008db90ee427a8ce Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 1 Jun 2023 10:32:30 +0200 Subject: [PATCH 183/211] #11424 Check if group and secondary group match and remove. --- .../godmode/massive/massive_edit_agents.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index a5a31f6685..c7fadfc7f0 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -524,6 +524,17 @@ function edit_massive_agent( alerts_validate_alert_agent($id_agent); } } + + if (empty($values['id_grupo']) === false) { + // Check if group and secondary group match and remove. + $remove_sg = (bool) db_process_sql_delete( + 'tagent_secondary_group', + [ + 'id_agent' => (int) $id_agent, + 'id_group' => (int) $values['id_grupo'], + ] + ); + } } $info = []; From f7c5d6b296e3b2bad6b7a5426963617401a6c1f0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 1 Jun 2023 10:43:48 +0200 Subject: [PATCH 184/211] #11432 added tip in Threshold in alert popup --- pandora_console/include/ajax/alert_list.ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/alert_list.ajax.php b/pandora_console/include/ajax/alert_list.ajax.php index 7d9e372d7e..4f5b120a6d 100644 --- a/pandora_console/include/ajax/alert_list.ajax.php +++ b/pandora_console/include/ajax/alert_list.ajax.php @@ -537,7 +537,7 @@ if ($show_update_action_menu) { $data .= ''; $data .= ''; $data .= ''; - $data .= __('Threshold'); + $data .= __('Threshold').ui_print_help_tip(__('If a value of 0 is assigned, the Threshold of the action will be used.'), true); $data .= ''; $data .= ''; $data .= html_print_extended_select_for_time( From 4f1d5e217ab658a0237ee7895a0bff236522a71e Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 1 Jun 2023 12:00:46 +0200 Subject: [PATCH 185/211] #11416 Added recursive group search in AD --- pandora_console/include/functions_config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index ec6b775434..468c228733 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -607,6 +607,10 @@ function config_update_config() $error_update[] = __('Start TLS'); } + if (config_update_value('recursive_search', get_parameter('recursive_search'), true) === false) { + $error_update[] = __('Recursive search'); + } + if (config_update_value('ad_advanced_config', get_parameter('ad_advanced_config'), true) === false) { $error_update[] = __('Advanced Config AD'); } @@ -3082,6 +3086,10 @@ function config_process_config() config_update_value('ad_start_tls', 0); } + if (!isset($config['recursive_search'])) { + config_update_value('recursive_search', 1); + } + if (!isset($config['ad_advanced_config'])) { config_update_value('ad_advanced_config', 0); } From 4e1e9a1d991b5792ef9c42d307f8802cc0bfd0a2 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 1 Jun 2023 12:27:58 +0200 Subject: [PATCH 186/211] #11431 Fix alert conditional table and menu --- pandora_console/godmode/menu.php | 1 - .../operation/agentes/alerts_status.php | 42 +++++++++---------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 0546647846..c4163611a2 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -259,7 +259,6 @@ if ($access_console_node === true) { if ((bool) check_acl($config['id_user'], 0, 'LW') === true || (bool) check_acl($config['id_user'], 0, 'LM') === true - || (bool) check_acl($config['id_user'], 0, 'AD') === true ) { $menu_godmode['galertas']['text'] = __('Alerts'); $menu_godmode['galertas']['sec2'] = 'godmode/alerts/alert_list'; diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 8c251903af..b3c69730f3 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -271,29 +271,27 @@ if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) che } } -if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) { - array_push( - $column_names, - ['text' => 'Module'], - ['text' => 'Template'], - [ - 'title' => __('Action'), - 'text' => __('Action'), - 'style' => 'min-width: 15%;', - ], - ['text' => 'Last fired'], - ['text' => 'Status'] - ); +array_push( + $column_names, + ['text' => 'Module'], + ['text' => 'Template'], + [ + 'title' => __('Action'), + 'text' => __('Action'), + 'style' => 'min-width: 15%;', + ], + ['text' => 'Last fired'], + ['text' => 'Status'] +); - $columns = array_merge( - $columns, - ['agent_module_name'], - ['template_name'], - ['action'], - ['last_fired'], - ['status'] - ); -} +$columns = array_merge( + $columns, + ['agent_module_name'], + ['template_name'], + ['action'], + ['last_fired'], + ['status'] +); if (is_metaconsole() === false) { if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) { From 92842df7b824a52d27d982d5e1ccd8ebdeb28c7e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 1 Jun 2023 15:35:43 +0200 Subject: [PATCH 187/211] #11432 added tips in threshold and setted default value how 0 --- pandora_console/godmode/alerts/alert_list.builder.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_action.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_template.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php index af380c396c..ec0bfb3807 100644 --- a/pandora_console/godmode/alerts/alert_list.builder.php +++ b/pandora_console/godmode/alerts/alert_list.builder.php @@ -166,10 +166,10 @@ $table->data[1][1] = html_print_label_input_block( ); $table->data[2][0] = html_print_label_input_block( - __('Threshold'), + __('Threshold').ui_print_help_tip(__('It takes precedence over the action\'s threshold configuration.'), true), html_print_extended_select_for_time( 'module_action_threshold', - 0, + '0', '', '', '', diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php index 7906cd9dde..fb654828fe 100644 --- a/pandora_console/godmode/alerts/configure_alert_action.php +++ b/pandora_console/godmode/alerts/configure_alert_action.php @@ -144,7 +144,7 @@ if ($disabled) { $name = ''; $id_command = ''; $group = 0; -$action_threshold = 0; +$action_threshold = '0'; // All group is 0. if ($id) { $action = alerts_get_alert_action($id); @@ -284,7 +284,7 @@ $table->data[1][0] = html_print_label_input_block( ); $table->data[1][1] = html_print_label_input_block( - __('Threshold'), + __('Threshold').ui_print_help_tip(__('An alert action is executed only once within this time interval, regardless of how many times the alert is triggered.'), true), html_print_extended_select_for_time( 'action_threshold', $action_threshold, diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index cad5896fa2..a1abf2a218 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -688,7 +688,7 @@ if ($step == 2) { ); $table->data[2][0] = html_print_label_input_block( - __('Time threshold'), + __('Time threshold').ui_print_help_tip(__('Reset the alert counter within the configured period if there is no manual recovery or validation of the alert.'), true), html_print_extended_select_for_time( 'threshold', $threshold, From f113af4b6e3f7cd83c6e48d939f5e3cf377ded9f Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 2 Jun 2023 01:00:19 +0200 Subject: [PATCH 188/211] 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 ec108607af..be19f983bc 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230601 +Version: 7.0NG.771-230602 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 3b5feeee14..198aa0581e 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.771-230601" +pandora_version="7.0NG.771-230602" 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 344e125ffc..18030d24cc 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230601'; +use constant AGENT_BUILD => '230602'; # 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 0c7345a377..33366145fe 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230601 +%define release 230602 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 3d1c044da5..3307562908 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230601 +%define release 230602 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 254fd16ca3..72c5c5900c 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230601" +PI_BUILD="230602" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index eb23e0bd05..752c41fba1 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230601} +{230602} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d32fad17dd..b2742e2b10 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.771 Build 230601") +#define PANDORA_VERSION ("7.0NG.771 Build 230602") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index eeb739c5c1..53469a399a 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.771(Build 230601))" + VALUE "ProductVersion", "(7.0NG.771(Build 230602))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index d06abfe8ae..5947e929a9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230601 +Version: 7.0NG.771-230602 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 2e62b33f4c..a24dc47813 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.771-230601" +pandora_version="7.0NG.771-230602" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 47c0ee51ef..2833b6cd9b 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 = 'PC230601'; +$build_version = 'PC230602'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index b756b1c325..cdfff922be 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 1a45a66a8d..0a0ddb5efb 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230601 +%define release 230602 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 8dd2252d7b..afb8a6747d 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230601 +%define release 230602 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b9e47a6bc2..98f711ac71 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230601" +PI_BUILD="230602" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bd60360889..812bee41b7 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.771 Build 230601"; +my $version = "7.0NG.771 Build 230602"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index d42cc6db58..0d6c5b4b12 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.771 Build 230601"; +my $version = "7.0NG.771 Build 230602"; # save program name for logging my $progname = basename($0); From c1dd5d39c5bfa6064d8a4787232c9e6eaab75725 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 13:03:20 +0200 Subject: [PATCH 189/211] #11446 Add column in tlayout_template_data --- pandora_console/extras/mr/64.sql | 3 +++ pandora_console/pandoradb.sql | 1 + 2 files changed, 4 insertions(+) diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql index 272f0848b2..f1dc8afc4c 100644 --- a/pandora_console/extras/mr/64.sql +++ b/pandora_console/extras/mr/64.sql @@ -71,6 +71,9 @@ WHERE name='Cisco _nameOID_ power state'; ALTER TABLE `tlayout_data` ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; +ALTER TABLE `tlayout_template_data` +ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; + ALTER TABLE `tusuario` ADD COLUMN `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default' AFTER `data_section`; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8d1ef299df..8416e1d2ec 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3696,6 +3696,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` ( `label_position` VARCHAR(50) NOT NULL DEFAULT 'down', `border_color` VARCHAR(200) DEFAULT '', `fill_color` VARCHAR(200) DEFAULT '', + `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`, `show_statistics` TINYINT NOT NULL DEFAULT 0, `linked_layout_node_id` INT NOT NULL DEFAULT 0, `linked_layout_status_type` ENUM ('default', 'weight', 'service') DEFAULT 'default', From 6c4ee040ff8fc7dc8c54d809cdeef621f229ab57 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 13:05:15 +0200 Subject: [PATCH 190/211] #11446 Fix create table --- 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 8416e1d2ec..8706e37fed 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3696,7 +3696,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` ( `label_position` VARCHAR(50) NOT NULL DEFAULT 'down', `border_color` VARCHAR(200) DEFAULT '', `fill_color` VARCHAR(200) DEFAULT '', - `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`, + `recursive_group` TINYINT NOT NULL DEFAULT '0', `show_statistics` TINYINT NOT NULL DEFAULT 0, `linked_layout_node_id` INT NOT NULL DEFAULT 0, `linked_layout_status_type` ENUM ('default', 'weight', 'service') DEFAULT 'default', From 9d5dc354b6dff74810b112d9b6ce18e618552e26 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 2 Jun 2023 13:11:41 +0200 Subject: [PATCH 191/211] #11444 fixed wizard in visual console meta --- .../godmode/reporting/visual_console_builder.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index 670721111c..d39212e737 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -635,15 +635,20 @@ switch ($activeTab) { } else { if (is_metaconsole() === true) { $agents_ids = []; + $servers_ids = []; foreach ($id_agents as $id_agent_id) { $server_and_agent = explode('|', $id_agent_id); $agents_ids[] = $server_and_agent[1]; + $servers_ids[] = $server_and_agent[0]; } $rows = db_get_all_rows_filter( 'tmetaconsole_agent', - ['id_tagente' => $agents_ids] + [ + 'id_tagente' => $agents_ids, + 'id_tmetaconsole_setup' => $servers_ids, + ] ); $agents = []; From 6f375f497ff152f362bcc814c229b5fde46195d9 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 2 Jun 2023 16:51:53 +0200 Subject: [PATCH 192/211] Force omnishell_client to use JSON::PP. The binary compiled with PAR::Packer for Pandora FMS doesn't work well with JSON:XS, probably because JSON::Backend::XS is defined in the __DATA__ section of JSON.pm and that doesn't work well with PAR::Filter. If this becomes a bottleneck, a workaround would be possible (e.g., redefining JSON::Backend::XS in omnishell_client.pl). --- pandora_agents/win32/omnishell/omnishell_client.pl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pandora_agents/win32/omnishell/omnishell_client.pl b/pandora_agents/win32/omnishell/omnishell_client.pl index 9132c90d5b..fe7f5696da 100644 --- a/pandora_agents/win32/omnishell/omnishell_client.pl +++ b/pandora_agents/win32/omnishell/omnishell_client.pl @@ -12,6 +12,14 @@ use warnings; use File::Basename; BEGIN { push @INC, '/usr/lib/perl5'; } + +# NOTE: The binary compiled with PAR::Packer for Pandora FMS doesn't work well +# with JSON:XS, probably because JSON::Backend::XS is defined in the __DATA__ +# section of JSON.pm and that doesn't work well with PAR::Filter. If this +# becomes a bottleneck, a workaround would be possible (e.g., redefining +# JSON::Backend::XS here). +BEGIN { $ENV{PERL_JSON_BACKEND} = 'JSON::PP' }; + use PandoraFMS::PluginTools; use PandoraFMS::Omnishell; @@ -90,4 +98,4 @@ if ($@) { exit 0; } -exit 0; \ No newline at end of file +exit 0; From f33d21f06f084a8475e3caef98f351cbf5dba5d2 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 2 Jun 2023 17:07:54 +0200 Subject: [PATCH 193/211] Update omnishell_client.exe. --- pandora_agents/win32/bin/util/omnishell_client.exe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_agents/win32/bin/util/omnishell_client.exe b/pandora_agents/win32/bin/util/omnishell_client.exe index 3c3e4b04cb..e7903b3a77 100644 --- a/pandora_agents/win32/bin/util/omnishell_client.exe +++ b/pandora_agents/win32/bin/util/omnishell_client.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a0d742e4e1944a599fe7609544719c82ab560590784f0a82733fdba8a7964a3 -size 7630848 +oid sha256:ad4d006cf2662a57f2e062b5adbfe8702d2147ec4c4d3dc9a1019938fe7d5b22 +size 16557020 From e2550c22e3778dec14356f64774960793be4e16f Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 3 Jun 2023 01:00:18 +0200 Subject: [PATCH 194/211] 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 be19f983bc..035633cbec 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230602 +Version: 7.0NG.771-230603 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 198aa0581e..5db8a763b1 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.771-230602" +pandora_version="7.0NG.771-230603" 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 18030d24cc..058bcdccfc 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230602'; +use constant AGENT_BUILD => '230603'; # 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 33366145fe..bc9ad74009 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230602 +%define release 230603 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 3307562908..239c408406 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230602 +%define release 230603 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 72c5c5900c..bff318b6fa 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230602" +PI_BUILD="230603" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 752c41fba1..edb716e7ad 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230602} +{230603} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index b2742e2b10..e90bb98edf 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.771 Build 230602") +#define PANDORA_VERSION ("7.0NG.771 Build 230603") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 53469a399a..5043e862e2 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.771(Build 230602))" + VALUE "ProductVersion", "(7.0NG.771(Build 230603))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5947e929a9..e9621b17b3 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230602 +Version: 7.0NG.771-230603 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 a24dc47813..b7c1fd161c 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.771-230602" +pandora_version="7.0NG.771-230603" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 2833b6cd9b..8e3c803d18 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 = 'PC230602'; +$build_version = 'PC230603'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index cdfff922be..13469c833c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 0a0ddb5efb..b5b3bec799 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230602 +%define release 230603 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index afb8a6747d..b20a23aa93 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230602 +%define release 230603 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 98f711ac71..323e32a1c5 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230602" +PI_BUILD="230603" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 812bee41b7..3c3f11f025 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.771 Build 230602"; +my $version = "7.0NG.771 Build 230603"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 0d6c5b4b12..07c7bf6ad1 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.771 Build 230602"; +my $version = "7.0NG.771 Build 230603"; # save program name for logging my $progname = basename($0); From efdb2bdbb9da96626874a43348e340d1357fe9fe Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 4 Jun 2023 01:00:16 +0200 Subject: [PATCH 195/211] 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 035633cbec..02930843a5 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230603 +Version: 7.0NG.771-230604 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 5db8a763b1..72a83e1850 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.771-230603" +pandora_version="7.0NG.771-230604" 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 058bcdccfc..2cd1feff55 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230603'; +use constant AGENT_BUILD => '230604'; # 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 bc9ad74009..480b5a83ef 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230603 +%define release 230604 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 239c408406..6ba2277f76 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230603 +%define release 230604 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 bff318b6fa..e9f3b12c51 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230603" +PI_BUILD="230604" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index edb716e7ad..cbbcdf59f2 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230603} +{230604} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index e90bb98edf..943b13c90a 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.771 Build 230603") +#define PANDORA_VERSION ("7.0NG.771 Build 230604") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 5043e862e2..93feceae64 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.771(Build 230603))" + VALUE "ProductVersion", "(7.0NG.771(Build 230604))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index e9621b17b3..c23be0b1e2 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230603 +Version: 7.0NG.771-230604 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 b7c1fd161c..a0b088574c 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.771-230603" +pandora_version="7.0NG.771-230604" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8e3c803d18..d040577c2f 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 = 'PC230603'; +$build_version = 'PC230604'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 13469c833c..dbf8e04049 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b5b3bec799..6dd431746e 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230603 +%define release 230604 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b20a23aa93..676643eeee 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230603 +%define release 230604 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 323e32a1c5..08619d011e 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230603" +PI_BUILD="230604" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 3c3f11f025..ff42b89e3b 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.771 Build 230603"; +my $version = "7.0NG.771 Build 230604"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 07c7bf6ad1..248b71009e 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.771 Build 230603"; +my $version = "7.0NG.771 Build 230604"; # save program name for logging my $progname = basename($0); From 0c864ca988600865684b8c2d3a00016809970d37 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 5 Jun 2023 01:00:18 +0200 Subject: [PATCH 196/211] 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 02930843a5..ffa848fc9d 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230604 +Version: 7.0NG.771-230605 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 72a83e1850..de263ae568 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.771-230604" +pandora_version="7.0NG.771-230605" 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 2cd1feff55..86bddb4c8e 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230604'; +use constant AGENT_BUILD => '230605'; # 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 480b5a83ef..7d99a72820 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230604 +%define release 230605 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 6ba2277f76..0e02987128 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230604 +%define release 230605 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 e9f3b12c51..44b7e405c9 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230604" +PI_BUILD="230605" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index cbbcdf59f2..1ca48a7bfe 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230604} +{230605} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 943b13c90a..71f0ef5d7e 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.771 Build 230604") +#define PANDORA_VERSION ("7.0NG.771 Build 230605") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 93feceae64..52d52b18c0 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.771(Build 230604))" + VALUE "ProductVersion", "(7.0NG.771(Build 230605))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c23be0b1e2..b6ab11de8a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230604 +Version: 7.0NG.771-230605 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 a0b088574c..84374e378f 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.771-230604" +pandora_version="7.0NG.771-230605" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d040577c2f..a4ee6993e6 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 = 'PC230604'; +$build_version = 'PC230605'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index dbf8e04049..318bc7d98d 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 6dd431746e..6be4c4a961 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230604 +%define release 230605 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 676643eeee..f744bf305d 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230604 +%define release 230605 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 08619d011e..749340a982 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230604" +PI_BUILD="230605" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ff42b89e3b..34c2ed8bf5 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.771 Build 230604"; +my $version = "7.0NG.771 Build 230605"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 248b71009e..1fdd4300a8 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.771 Build 230604"; +my $version = "7.0NG.771 Build 230605"; # save program name for logging my $progname = basename($0); From 1e0c62732a81f7ce6a33e95d76dd55d71af11691 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 13:39:04 +0200 Subject: [PATCH 197/211] #11444 fixed bug in metacosole visual when added modules in differents node --- pandora_console/godmode/reporting/visual_console_builder.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index d39212e737..a898ff017a 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -693,7 +693,9 @@ switch ($activeTab) { foreach ($modules_serial as $data_serialized) { $data = explode('|', $data_serialized); - $id_modules[] = $data[0]; + if ($id_server == $data[2]) { + $id_modules[] = $data[0]; + } } } } else { From 7e829dd03ceb8631f46db481b4e0ea9fa5c94be3 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 25 Apr 2023 19:03:41 +0200 Subject: [PATCH 198/211] Make sure all results from WMI queries are consumed. If there are unconsumed results left from a WMI query an error is generated in the event log. --- pandora_agents/win32/windows/pandora_wmi.cc | 38 ++++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/pandora_agents/win32/windows/pandora_wmi.cc b/pandora_agents/win32/windows/pandora_wmi.cc index a7db16b017..a7b2c6302b 100644 --- a/pandora_agents/win32/windows/pandora_wmi.cc +++ b/pandora_agents/win32/windows/pandora_wmi.cc @@ -99,7 +99,7 @@ Pandora_Wmi::isServiceRunning (string service_name) { string query; char *state; string str_state; - int retval; + int retval = -1; query = "SELECT * FROM Win32_Service WHERE Name = \"" + service_name + "\""; @@ -112,23 +112,27 @@ Pandora_Wmi::isServiceRunning (string service_name) { FOR_EACH (quickfix, quickfixes, NULL) { dhGetValue (L"%s", &state, quickfix, L".State"); - str_state = state; - if (str_state == "Running") { - retval = 1; - } - else { - retval = 0; + if (retval == -1) { + str_state = state; + if (str_state == "Running") { + retval = 1; + } + else { + retval = 0; + } } dhFreeString (state); - - return retval; } NEXT_THROW (quickfix); } catch (string errstr) { pandoraLog ("isServiceRunning error. %s", errstr.c_str ()); } - pandoraDebug ("Service %s not found.", service_name.c_str ()); - return 0; + if (retval == -1) { + pandoraDebug ("Service %s not found.", service_name.c_str ()); + return 0; + } + + return retval; } /** @@ -1261,7 +1265,7 @@ Pandora_Wmi::getSystemAddress () { CDispPtr wmi_svc = NULL, nic_info = NULL; VARIANT ip_addresses; char *caption = NULL, *mac_address = NULL; - string ret = ""; + string str_addr, ret = ""; try { @@ -1274,12 +1278,12 @@ Pandora_Wmi::getSystemAddress () { dhGetValue (L"%v", &ip_addresses, nic_info_item, L".IPAddress"); - if (&ip_addresses != NULL) + if (&ip_addresses != NULL && ret == "") { - ret = getIPs(&ip_addresses); - if(ret != "0.0.0.0") { - break; - } + str_addr = getIPs(&ip_addresses); + if (str_addr != "0.0.0.0") { + ret = str_addr; + } } } NEXT_THROW (nic_info_item); } catch (string errstr) { From 635518eae9703ccdbf5abe8eaab90d67b864f1e4 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:15:25 +0200 Subject: [PATCH 199/211] #11458 fixed visual console when setting background none --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 16f86884d9..edd5ea3c55 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); } From d72959fa7bfe61265ff6c44ca06fc924d2388b17 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:16:28 +0200 Subject: [PATCH 200/211] Revert "#11458 fixed visual console when setting background none" This reverts commit 635518eae9703ccdbf5abe8eaab90d67b864f1e4. --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index edd5ea3c55..16f86884d9 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); } From 151882859ab72a66289eb1a4df1c151268439a8c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 15:20:02 +0200 Subject: [PATCH 201/211] #11456 fixed visual console when setting background none --- .../include/rest-api/models/VisualConsole/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 16f86884d9..edd5ea3c55 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -181,7 +181,7 @@ final class Container extends Model null ); - return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); + return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage); } From 11a8bd688d3e0d8cdeb4fcb4a5f1d44122c6e645 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 6 Jun 2023 01:00:20 +0200 Subject: [PATCH 202/211] 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 ffa848fc9d..e78897627b 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230605 +Version: 7.0NG.771-230606 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 de263ae568..b53d21b582 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.771-230605" +pandora_version="7.0NG.771-230606" 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 86bddb4c8e..71899cd924 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230605'; +use constant AGENT_BUILD => '230606'; # 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 7d99a72820..3f79168d10 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230605 +%define release 230606 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 0e02987128..10564720b8 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230605 +%define release 230606 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 44b7e405c9..5c92f3b928 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230605" +PI_BUILD="230606" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1ca48a7bfe..fe704d2a25 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230605} +{230606} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 71f0ef5d7e..f5d6faf8cc 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.771 Build 230605") +#define PANDORA_VERSION ("7.0NG.771 Build 230606") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 52d52b18c0..3732d5976a 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.771(Build 230605))" + VALUE "ProductVersion", "(7.0NG.771(Build 230606))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b6ab11de8a..a85d5a6ce4 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230605 +Version: 7.0NG.771-230606 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 84374e378f..915e6bc340 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.771-230605" +pandora_version="7.0NG.771-230606" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index a4ee6993e6..e8dc60e6a7 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 = 'PC230605'; +$build_version = 'PC230606'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 318bc7d98d..84dd9b37fc 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 6be4c4a961..c354747685 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index f744bf305d..b443a481d0 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230605 +%define release 230606 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 749340a982..b8063be345 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230605" +PI_BUILD="230606" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 34c2ed8bf5..13812fbe5b 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.771 Build 230605"; +my $version = "7.0NG.771 Build 230606"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1fdd4300a8..a4f7f6c547 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.771 Build 230605"; +my $version = "7.0NG.771 Build 230606"; # save program name for logging my $progname = basename($0); From 75f227ec9f33868b01b4152748e863ba09767065 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 17:12:13 +0200 Subject: [PATCH 203/211] #11481 fixed widgets dashboard styles --- .../include/lib/Dashboard/Widgets/module_icon.php | 8 +++++--- .../include/lib/Dashboard/Widgets/module_status.php | 6 ++++-- .../include/lib/Dashboard/Widgets/module_value.php | 6 ++++-- .../include/lib/Dashboard/Widgets/sla_percent.php | 4 +++- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 6790d70616..a58b046124 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -384,7 +384,7 @@ class ModuleIconWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => users_access_to_agent($values['agentId']) === false ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -563,10 +563,12 @@ class ModuleIconWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. @@ -596,7 +598,7 @@ class ModuleIconWidget extends Widget // Div image. $style_icon = 'flex: 0 1 '.$sizeIcon.'px;'; - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon.$color_icon.'.png', true, @@ -604,7 +606,7 @@ class ModuleIconWidget extends Widget ); $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= remove_right_zeros( number_format($data_module, $config['graph_precision'], $config['decimal_separator'], $config['thousand_separator']) ).$unit; diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index a9e72fd528..c4980f253f 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -375,7 +375,7 @@ class ModuleStatusWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -560,17 +560,19 @@ class ModuleStatusWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_15px'; } // General div. $output .= '
'; // Div image. - $output .= '
'; + $output .= '
'; $output .= html_print_image( 'images/console/icons/'.$icon, true, diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index 83521f6b25..cf2f0e0e4a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -359,7 +359,7 @@ class ModuleValueWidget extends Widget 'agent_id' => $values['agentId'], 'metaconsole_id' => $values['metaconsoleId'], 'style' => 'width: inherit;', - 'filter_modules' => (users_access_to_agent($values['agentId']) === false) ? [$values['moduleId']] : [], + 'filter_modules' => (users_access_to_agent($values['agentId'], 'AR', false, is_metaconsole()) === false) ? [$values['moduleId']] : [], 'nothing' => __('None'), 'nothing_value' => 0, ], @@ -471,17 +471,19 @@ class ModuleValueWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; if (is_numeric($data_module) === true) { $dataDatos = remove_right_zeros( diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 2e7483d58e..e6b334b779 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -516,16 +516,18 @@ class SLAPercentWidget extends Widget $output .= '
'; $orientation = ''; + $margin_bottom = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $margin_bottom = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; $output .= $sla_array['sla_fixed'].'%'; $output .= '
'; From 9519ab00568a0ac8b8bc4d43b98465051a41e207 Mon Sep 17 00:00:00 2001 From: slerena Date: Tue, 6 Jun 2023 17:50:36 +0000 Subject: [PATCH 204/211] Update pandora_agent.conf --- pandora_agents/unix/Linux/pandora_agent.conf | 61 ++++++++++++-------- 1 file changed, 37 insertions(+), 24 deletions(-) diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index e4a37617fc..d819206cae 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,31 +1,31 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.771, GNU/Linux +# Version 7.0.772 LTS Linux # Licensed under GPL license v2, -# Copyright (c) 2003-2021 Artica Soluciones Tecnologicas -# http://www.pandorafms.com +# Copyright (c) 2004-2023 Pandora FMS +# https://pandorafms.com # General Parameters # ================== -server_ip localhost -server_path /var/spool/pandora/data_in +server_ip localhost +server_path /var/spool/pandora/data_in temporal /tmp logfile /var/log/pandora/pandora_agent.log #include /etc/pandora/pandora_agent_alt.conf #broker_agent name_agent -# Interval in seconds, 300 by default -interval 300 +# Interval in seconds, 300 by default (5 minutes) +interval 300 # Debug mode renames XML in the temp folder and continues running -debug 0 +debug 0 # Optional. UDP Server to receive orders from outside # By default is disabled, set 1 to enable # Set port (41122 by default) # Set address to restrict who can order a agent restart (0.0.0.0 = anybody) -# + udp_server 0 udp_server_port 41122 udp_server_auth_address 0.0.0.0 @@ -33,12 +33,13 @@ udp_server_auth_address 0.0.0.0 #process_xeyes_start xeyes #process_xeyes_stop killall xeyes -# By default, agent takes machine name -#agent_name adama +# By default, agent takes hostname +#agent_name adama # To define agent name by specific command, define 'agent_name_cmd'. # (In the following example, agent name is 'hostname_IP') -# If set to __rand__ the agent will generate a random name. +# If set to __rand__ the agent will generate a random name, used by default to generate a unique name + #agent_name_cmd LANG=C; /bin/echo -n `hostname`; /bin/echo -n "_"; /bin/echo `/sbin/ifconfig eth0 | /bin/grep 'inet addr' | /usr/bin/awk '{print $2;}' | /usr/bin/cut -d: -f2` agent_name_cmd __rand__ @@ -52,7 +53,7 @@ agent_name_cmd __rand__ #agent_alias_cmd # Agent description -#description This is a demo agent for Linux +#description This is an agent running Linux # Group assigned for this agent (descriptive, p.e: Servers) group Servers @@ -78,20 +79,19 @@ address auto # Those parameters define the geographical position of the agent # gis_exec: Call a script that returns a string with a fixed -# format of latitude,longitude,altitude +# format of latitude, longitude, altitude. Used for custom integration with GIS # i.e.: 41.377,-5.105,2.365 -#gis_exec /tmp/gis.sh +#gis_exec /mypath/my_gis_script.sh # This sets the GIS coordinates as fixed values: -# latitude + #latitude 0 -# longitude #longitude 0 -# altitude #altitude 0 #GPS Position description + #position_description Madrid, centro # By default agent try to take default encoding defined in host. @@ -133,7 +133,8 @@ transfer_mode tentacle # is much more safe #cron_mode -# If set to 1 allows the agent to be configured via the web console (Only Enterprise version) +# If set to 1 allows the agent to be configured via the web console (Only use this in Enterprise version) +# when is set to 1, local .conf file changes are overwritten. Set to 0 if you want to edit the .conf file remote_config 0 # Default 0, set to 1 to avoid module executions and report to server @@ -157,7 +158,7 @@ remote_config 0 # Number of threads to execute modules in parallel #agent_threads 1 -# User the agent will run as +# User the agent will run as. By default uses root, but could be configured to run as other user #pandora_user pandora # Enable or disable XML buffer. @@ -177,9 +178,9 @@ temporal_max_files 1024 # Agent mode: Learn (default), No-learn, Autodisable # agent_mode autodisable -# eHorus agent configuration file path: +# Pandora RC (former eHorus) agent configuration file path. # The agent will create a custom field named eHorusID that contains -# the eHorus agent's identifying key +# the PandoraRC agent's identifying key ehorus_conf /etc/ehorus/ehorus_agent.conf # Secondary groups. You can select several groups separated by comma. @@ -272,10 +273,22 @@ module_plugin autodiscover --default # Plugin for inventory on the agent. #module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route -# Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. -# This is for LOG monitoring, only on enterprise version +# Log collection modules. This will collect log files for forensic analysis and store everything +# This is for LOG monitoring. Different than log monitoring. #module_plugin grep_log_module /var/log/messages Syslog \.\* +# Another samples of monitoring modules + +# Command snapshot + +#module_begin +#module_name process_table +#module_type generic_data_string +#module_exec ps aux +#module_description Command snapshot of running processes +#module_group System +#module_end + #module_begin #module_name HTTPD_Status #module_type generic_proc From 8cb5e8769c0a28f75c76d234d39c73eacca95985 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 7 Jun 2023 01:00:27 +0200 Subject: [PATCH 205/211] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 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 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index e78897627b..49281be530 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.771-230606 +Version: 7.0NG.771-230607 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 b53d21b582..1248cd98a8 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.771-230606" +pandora_version="7.0NG.771-230607" 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/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index d819206cae..efb7e45b6f 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0.772 LTS Linux +# Version 7.0NG.771 # Licensed under GPL license v2, # Copyright (c) 2004-2023 Pandora FMS # https://pandorafms.com diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 71899cd924..cba3683d63 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230606'; +use constant AGENT_BUILD => '230607'; # 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 3f79168d10..87eed5cdd5 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230606 +%define release 230607 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 10564720b8..6a7ac453f9 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230606 +%define release 230607 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 5c92f3b928..23038a0443 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230606" +PI_BUILD="230607" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index fe704d2a25..55feddb1ec 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230606} +{230607} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f5d6faf8cc..6d6b83b581 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.771 Build 230606") +#define PANDORA_VERSION ("7.0NG.771 Build 230607") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 3732d5976a..dead47eaeb 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.771(Build 230606))" + VALUE "ProductVersion", "(7.0NG.771(Build 230607))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a85d5a6ce4..840ef27ca7 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230606 +Version: 7.0NG.771-230607 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 915e6bc340..f79ad89a02 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.771-230606" +pandora_version="7.0NG.771-230607" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e8dc60e6a7..8721542bc1 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 = 'PC230606'; +$build_version = 'PC230607'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 84dd9b37fc..6e34c7d23a 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index c354747685..a1259cef25 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b443a481d0..9b50a92602 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230606 +%define release 230607 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b8063be345..f274d964f1 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230606" +PI_BUILD="230607" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 13812fbe5b..ccb6c1b0d8 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.771 Build 230606"; +my $version = "7.0NG.771 Build 230607"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index a4f7f6c547..e219d0ebc6 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.771 Build 230606"; +my $version = "7.0NG.771 Build 230607"; # save program name for logging my $progname = basename($0); From 674c49fc915d1f732618fd3c65c9961bf9f15bee Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 Jun 2023 08:12:14 +0200 Subject: [PATCH 206/211] mr and translates pandora_enterprise#11457 --- pandora_console/extras/mr/63.sql | 2 + pandora_console/include/languages/es.mo | Bin 812700 -> 822359 bytes pandora_console/include/languages/es.po | 12617 ++++++++--------- pandora_console/include/languages/fr.mo | Bin 836584 -> 846438 bytes pandora_console/include/languages/fr.po | 12603 ++++++++--------- pandora_console/include/languages/index.pot | 12618 +++++++++--------- pandora_console/pandoradb_data.sql | 6 +- 7 files changed, 19782 insertions(+), 18064 deletions(-) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index 9aca7c604c..8d0b323acb 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -40,4 +40,6 @@ CREATE TABLE IF NOT EXISTS `tsesion_filter_log_viewer` ( ALTER TABLE `talert_template_module_actions` ADD COLUMN `recovered` TINYINT NOT NULL DEFAULT 0; +UPDATE tconfig SET value = 'Renaissance' WHERE token LIKE 'lts_name'; + COMMIT; diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index c224f28c31fe4fc77453a87e777031922c6deb5e..d620479ee3797b916f4af98a279755aa15e06b01 100644 GIT binary patch delta 210738 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℞8|>mE$W2~O+(kl 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
EU;ra`%XF>09W#Bw@ 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 delta 202361 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%0Aoqo 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 WwK-#eUt^2uJJiqgG9Qis`u_n7M_;r6 diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 7e6b0bb062..0630536209 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-09 10:50+0200\n" -"PO-Revision-Date: 2023-05-09 12:15+0200\n" +"POT-Creation-Date: 2023-06-06 09:26+0200\n" +"PO-Revision-Date: 2023-06-06 10:19+0200\n" "Last-Translator: Laura Cano \n" "Language-Team: Spanish\n" "Language: es\n" @@ -19,17 +19,38 @@ msgstr "" "X-Launchpad-Export-Date: 2021-04-22 12:47+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "%s consolas registradas" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "Servidores" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "ID de consola" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -67,7 +88,7 @@ msgstr "ID de consola" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -196,21 +217,21 @@ msgstr "ID de consola" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -218,7 +239,7 @@ msgstr "ID de consola" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -230,8 +251,8 @@ msgstr "ID de consola" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -239,26 +260,26 @@ msgstr "ID de consola" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -266,12 +287,12 @@ msgstr "ID de consola" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -283,8 +304,7 @@ msgstr "ID de consola" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -292,8 +312,8 @@ msgstr "ID de consola" msgid "Description" msgstr "Descripción" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -303,29 +323,29 @@ msgstr "Descripción" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "Versión" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "Última ejecución" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "Tipo de consola" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "Zona horaria" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -333,7 +353,7 @@ msgstr "Zona horaria" msgid "Public URL" msgstr "URL pública" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -352,20 +372,21 @@ msgstr "URL pública" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 ../../include/class/ConfigPEN.class.php:603 +#: ../../include/ajax/events.php:2309 ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "Opciones" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -389,15 +410,16 @@ msgstr "Opciones" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -405,7 +427,7 @@ msgstr "Opciones" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -433,8 +455,8 @@ msgstr "Opciones" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -453,26 +475,26 @@ msgstr "Opciones" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 ../../godmode/extensions.php:282 #: ../../godmode/extensions.php:290 ../../godmode/extensions.php:300 #: ../../godmode/extensions.php:308 ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -481,16 +503,16 @@ msgstr "Opciones" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 ../../godmode/setup/news.php:354 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 ../../godmode/setup/news.php:358 #: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:196 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -498,38 +520,38 @@ msgstr "Opciones" #: ../../godmode/reporting/map_builder.php:555 #: ../../godmode/reporting/graphs.php:419 ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 ../../godmode/category/category.php:190 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -541,7 +563,7 @@ msgstr "Opciones" msgid "Delete" msgstr "Eliminar" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." @@ -549,7 +571,7 @@ msgstr "" "¿Está seguro?

ADVERTENCIA: También debe eliminar las " "opciones de config.php en su consola o eliminar la consola completa." -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 @@ -576,23 +598,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -601,23 +623,24 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834 msgid "Cancel" msgstr "Cancelar" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -627,24 +650,25 @@ msgstr "Cancelar" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 #: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "Finalizado correctamente" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -654,8 +678,8 @@ msgstr "Finalizado correctamente" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -669,19 +693,21 @@ msgstr "Finalizado correctamente" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "Fallo" @@ -707,21 +733,21 @@ msgstr "Fallo" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -730,20 +756,20 @@ msgstr "Fallo" #: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74 +#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "Alertas" @@ -766,7 +792,7 @@ msgstr "Días especiales" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -786,10 +812,10 @@ msgstr "Días especiales" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 -#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537 +#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -798,7 +824,7 @@ msgstr "Días especiales" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -817,7 +843,7 @@ msgstr "metaconsola" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -835,10 +861,10 @@ msgstr "metaconsola" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 -#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539 +#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -847,7 +873,7 @@ msgstr "metaconsola" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -872,7 +898,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -899,7 +925,7 @@ msgstr "ID" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -922,7 +948,7 @@ msgstr "ID" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -985,25 +1011,25 @@ msgstr "ID" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1012,44 +1038,49 @@ msgstr "ID" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1117,7 +1148,7 @@ msgstr "Nombre" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1133,31 +1164,31 @@ msgstr "Nombre" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1167,7 +1198,7 @@ msgstr "Nombre" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1177,10 +1208,10 @@ msgstr "Nombre" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1195,10 +1226,10 @@ msgstr "Nombre" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1208,43 +1239,45 @@ msgstr "Nombre" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 #: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1252,37 +1285,37 @@ msgstr "Nombre" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 -#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332 #: ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Grupo" @@ -1297,7 +1330,7 @@ msgstr "Grupo" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1308,16 +1341,16 @@ msgstr "Grupo" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "Búsqueda libre" @@ -1369,8 +1402,8 @@ msgstr "Búsqueda libre" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1395,50 +1428,50 @@ msgstr "Búsqueda libre" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1464,27 +1497,27 @@ msgstr "Configurar día especial" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 -#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257 +#: ../../operation/inventory/inventory.php:682 +#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302 msgid "Date" msgstr "Fecha" @@ -1500,7 +1533,7 @@ msgstr "Fecha" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "Lunes" @@ -1516,7 +1549,7 @@ msgstr "Lunes" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "Martes" @@ -1532,7 +1565,7 @@ msgstr "Martes" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "Miércoles" @@ -1548,7 +1581,7 @@ msgstr "Miércoles" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "Jueves" @@ -1564,7 +1597,7 @@ msgstr "Jueves" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "Viernes" @@ -1580,7 +1613,7 @@ msgstr "Viernes" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "Sábado" @@ -1596,7 +1629,7 @@ msgstr "Sábado" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "Domingo" @@ -1668,7 +1701,7 @@ msgstr "Mismo día de la semana" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1703,7 +1736,7 @@ msgstr "Mismo día de la semana" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1718,24 +1751,24 @@ msgstr "Mismo día de la semana" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1743,18 +1776,18 @@ msgstr "Mismo día de la semana" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1762,24 +1795,24 @@ msgstr "Mismo día de la semana" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1791,7 +1824,7 @@ msgstr "Actualizar" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "Cargando, esta operación podría llevar varios minutos..." @@ -1817,7 +1850,7 @@ msgstr "Marca esta casilla si quieres sobrescribir los días existentes." #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "Subir" @@ -1841,25 +1874,26 @@ msgstr "Mostrar rango " #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1874,7 +1908,7 @@ msgstr "Por defecto" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "Dom" @@ -1883,7 +1917,7 @@ msgstr "Dom" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "Lun" @@ -1892,7 +1926,7 @@ msgstr "Lun" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "Mar" @@ -1901,7 +1935,7 @@ msgstr "Mar" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "Mié" @@ -1910,7 +1944,7 @@ msgstr "Mié" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "Jue" @@ -1919,7 +1953,7 @@ msgstr "Jue" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "Vie" @@ -1928,7 +1962,7 @@ msgstr "Vie" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "Sáb" @@ -2045,7 +2079,7 @@ msgstr "Mostrar plantillas" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2066,34 +2100,34 @@ msgstr "Mostrar plantillas" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2110,12 +2144,12 @@ msgstr "Editar" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2152,7 +2186,7 @@ msgstr "Editar" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2166,27 +2200,29 @@ msgstr "Editar" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283 #: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2198,10 +2234,10 @@ msgstr "Editar" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393 +#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392 #: ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 @@ -2217,7 +2253,7 @@ msgstr "Editar" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2226,25 +2262,26 @@ msgstr "Editar" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2257,12 +2294,12 @@ msgstr "¿Estás seguro?" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401 msgid "Remove" msgstr "Eliminar" @@ -2272,7 +2309,7 @@ msgstr "Cargar calendario" #: ../../views/cluster/list.php:31 msgid "Cluster view" -msgstr "Visor de clústers" +msgstr "Vista de clústers" #: ../../views/cluster/list.php:40 #: ../../enterprise/meta/general/main_header.php:91 @@ -2291,11 +2328,12 @@ msgstr "Visor de clústers" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260 +#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2303,17 +2341,17 @@ msgstr "Visor de clústers" #: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Monitorización" @@ -2326,13 +2364,13 @@ msgid "Clusters" msgstr "Clústers" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2349,46 +2387,46 @@ msgstr "Clústers" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354 #: ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125 +#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952 +#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2401,27 +2439,27 @@ msgstr "Clústers" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "Tipo" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "Nodos" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2432,8 +2470,8 @@ msgstr "Nodos" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2469,15 +2507,15 @@ msgstr "Nodos" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2486,63 +2524,72 @@ msgstr "Nodos" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 -#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626 +#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 -#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "Estado" @@ -2566,10 +2613,10 @@ msgstr "Estado" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "Filtrar grupo" @@ -2615,27 +2662,27 @@ msgstr "Editar el clúster" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2646,24 +2693,24 @@ msgstr "Deshabilitado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "Modo silencioso" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "Agente en parada programada" @@ -2688,25 +2735,24 @@ msgstr "Forzar cálculo del estado del clúster" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "SO" @@ -2716,12 +2762,12 @@ msgid "IP address" msgstr "Dirección IP" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2734,92 +2780,92 @@ msgstr "Dirección IP" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "N/A" -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2830,12 +2876,12 @@ msgid "Cluster agent" msgstr "Agente del clúster" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "Eventos (últimas 24h)" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "Actualizar" @@ -2853,24 +2899,24 @@ msgstr "Nuevo widget" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Modo pantalla completa" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "Volver a modo normal" @@ -2898,11 +2944,11 @@ msgstr "Actualizar el panel de control" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2927,23 +2973,23 @@ msgstr "Mostrar el enlace al dashboard público" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175 -#: ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175 +#: ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "Actualizar" @@ -2955,9 +3001,10 @@ msgstr "Añadir celda" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -2968,7 +3015,7 @@ msgid "Hello! These are the tips of the day." msgstr "¡Hola! Estos son los tips del día." #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" msgstr "Mostrar tips de uso al inicio" @@ -3008,11 +3055,11 @@ msgstr "Dashboards" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357 #: ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3024,7 +3071,7 @@ msgstr "Dashboards" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3048,7 +3095,7 @@ msgstr "Eliminado correctamente" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3065,18 +3112,18 @@ msgstr "Eliminado correctamente" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3105,15 +3152,15 @@ msgstr "Favorito" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "Pantalla completa" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3121,8 +3168,8 @@ msgstr "Pantalla completa" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "Copiar" @@ -3148,8 +3195,8 @@ msgid "Please select widget" msgstr "Seleccione un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "Hasta el próximo" @@ -3170,7 +3217,7 @@ msgstr "Favorito" msgid "Configure widget" msgstr "Configurar widget" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "Eliminar widget" @@ -3187,13 +3234,13 @@ msgstr "Cambiar cada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "Anterior" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "Parar" @@ -3221,9 +3268,9 @@ msgstr "Pausar" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "Siguiente" @@ -3263,7 +3310,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "Administrador de configuración de red" @@ -3336,7 +3383,7 @@ msgid "Device model" msgstr "Modelo del dispositivo" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "Modo de conexión" @@ -3358,11 +3405,11 @@ msgstr "conectarse mediante telnet" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3413,7 +3460,7 @@ msgstr "Estado de NCM" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "Guardar" @@ -3440,10 +3487,10 @@ msgstr "Tipo de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "Resultado" @@ -3508,9 +3555,9 @@ msgstr "Ejecutar snippet" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "Vista previa" @@ -3539,7 +3586,7 @@ msgstr "Vista previa" #: ../../enterprise/operation/services/services.list.php:208 #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3547,42 +3594,42 @@ msgstr "Vista previa" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 -#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815 -#: ../../general/logon_ok.php:151 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820 +#: ../../general/logon_ok.php:160 msgid "Unknown" msgstr "Desconocido" @@ -3666,31 +3713,32 @@ msgstr "Diferencia" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 -#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309 +#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310 #: ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "Acciones" @@ -3744,9 +3792,9 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255 +#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254 #: ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 @@ -3754,6 +3802,7 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada" #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "Configuración" @@ -3822,11 +3871,11 @@ msgid "Customize script execution" msgstr "Personalizar la ejecución del script" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "Ejecutar" @@ -3841,13 +3890,13 @@ msgstr "Ejecutar" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4009,7 +4058,7 @@ msgstr "Configurar agentes para usar plantillas NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Dirección" @@ -4033,14 +4082,14 @@ msgstr "Última tarea en cola" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "Última actualización" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4048,7 +4097,7 @@ msgstr "Última actualización" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4100,7 +4149,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4126,51 +4175,51 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846 -#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856 +#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "Advertencia" @@ -4189,15 +4238,15 @@ msgstr "icono" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "Padre" @@ -4223,9 +4272,9 @@ msgstr "Padre" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4246,12 +4295,12 @@ msgstr "Padre" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4344,8 +4393,8 @@ msgstr "Padre" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4356,7 +4405,7 @@ msgstr "Padre" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4369,40 +4418,40 @@ msgstr "Padre" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4419,13 +4468,13 @@ msgstr "Padre" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4452,23 +4501,23 @@ msgstr "Padre" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4482,25 +4531,25 @@ msgstr "Padre" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4510,24 +4559,24 @@ msgstr "Padre" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4539,6 +4588,8 @@ msgstr "Padre" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4554,29 +4605,28 @@ msgstr "Padre" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "Ninguno" @@ -4584,12 +4634,21 @@ msgstr "Ninguno" msgid "Create visualmap" msgstr "Crear mapa visual" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "Servidores de %s" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "No hay ningún servidor configurado en la base de datos" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4600,7 +4659,7 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4616,10 +4675,10 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4632,12 +4691,12 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4646,53 +4705,53 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../include/functions_reports.php:765 #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 -#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745 -#: ../../include/functions_html.php:5982 +#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755 +#: ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "Módulos" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "Retraso" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "Media de retraso (seg.)/Módulos retrasados" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "H/C" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "Hilos/Cola actual de módulos" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "Actualizado" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4701,47 +4760,54 @@ msgstr "Actualizado" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "Op." -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "Este es un servidor maestro" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "de" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "Gestionar configuración del servidorservidor Satélite" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" "Los módulos ejecutados por este servidor podrían dejar de funcionar. ¿Quieres " "continuar?" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "Vista táctica del servidor" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "Demasiados módulos en cola" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4751,10 +4817,10 @@ msgstr "" "Tiene demasiados elementos en la cola de procesamiento. Esto puede suceder si " "su servidor está sobrecargado y/o configurado incorrectamente. Podría tratarse " "de algo temporal o un cuello de botella. Si está asociado con un retraso en la " -"monitorizaión, con módulos que pasan a desconocido, intente aumentar el número " -"de subprocesos." +"monitorización, con módulos que pasan a desconocido, intente aumentar el " +"número de subprocesos." -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4762,39 +4828,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "Cerrar" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "command center" @@ -4809,7 +4877,7 @@ msgstr "" "favor, vaya a %s" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "Gestión de etiquetas" @@ -4826,7 +4894,7 @@ msgstr "Administración de SO" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "Grupos de módulos" @@ -4870,56 +4938,56 @@ msgid "Successfully update" msgstr "Actualizado correctamente" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "Estilos visuales" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "Formato de fecha a mostrar" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "Ejemplo" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "Marca horaria, comparación horaria o modo compacto" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "Fecha en comparación" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "Fecha literal" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "Modo compacto" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "Color de la gráfica #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "Color de la gráfica #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "Color de la gráfica #3" @@ -4933,10 +5001,10 @@ msgstr "La precisión debe ser un número entero entre 0 y 5" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "Percentil" @@ -4947,46 +5015,46 @@ msgstr "Mostrar el percentil 95 en los gráficos" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "Valor para la interfaz gráfica" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "Tamaño de bloque para la paginación" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "Número de elementos en gráfica personalizada" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "Usar bordes redondeados" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "Tabla adaptada al contenido" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "Deshabilitar ayuda" @@ -5013,10 +5081,10 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5053,15 +5121,15 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5076,11 +5144,11 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5088,28 +5156,28 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 -#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 -#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 +#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614 #: ../../include/functions.php:1127 ../../include/functions.php:1387 -#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96 +#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428 #: ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5119,23 +5187,23 @@ msgstr "Deshabilitar ayuda" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984 #: ../../operation/heatmap.php:122 ../../operation/tree.php:205 -#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5146,24 +5214,24 @@ msgstr "Deshabilitar ayuda" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "Todo" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "En gráficos booleanos" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "Visor de gráfico TIP" @@ -5172,17 +5240,17 @@ msgid "This option may cause performance issues" msgstr "Esta opción puede generar problemas de rendimiento" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "Mostrar solo la media por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "Mostrar MÁX/MEDIA/MÍN por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "Modo de gráfico" @@ -5191,16 +5259,16 @@ msgid "Zoom graphs:" msgstr "Gráficas ampliadas:" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "Tipo de gráficos de módulos" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258 @@ -5211,16 +5279,16 @@ msgstr "Área" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465 #: ../../operation/reporting/graph_viewer.php:356 @@ -5239,33 +5307,33 @@ msgstr "Número de elementos recuperados para cada instancia en algunas vistas" #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "segundos" @@ -5275,45 +5343,45 @@ msgstr "segundos" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "minutos" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "horas" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "días" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "meses" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "años" @@ -5372,66 +5440,66 @@ msgstr "Añadir nuevo valor personalizado para intervalos" #: ../../godmode/agentes/planned_downtime.editor.php:1493 #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 -#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402 -#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401 +#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386 msgid "Add" msgstr "Añadir" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "Borrar intervalo" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "Mostrar solo el nombre del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "Mostrar los datos de los módulos proc en otro formato" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "Texto mostrado cuando el estado del módulo proc es OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "Texto mostrado cuando el estado del módulo proc es Crítico" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "Personalizar favicon" @@ -5444,7 +5512,7 @@ msgstr "" "estar en formato .ico y tener un tamaño de 16x16." #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "Fondo del logo personalizado" @@ -5462,108 +5530,107 @@ msgstr "Puedes poner tus propias imágenes en el directorio images/backgrounds/" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "Vista" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "Logo personalizado (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "Icono menú reducido" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "Logo personalizado (fondo blanco de cabecera)" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "Logo personalizado (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "Splash personalizado (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "Nombre del producto" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "Aviso de copyright" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "% de opacidad de fondo (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "Título (encabezado)" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "Subtítulo (encabezado)" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "Título 1 (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "Título 2 (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "URL de documentos (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "URL soporte (inicio de sesión)" @@ -5573,17 +5640,17 @@ msgstr "Familia tipográfica de las gráficas" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "Efectos visuales y animación" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "Fondo aleatorio (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "Vista de la consola visual heredada" @@ -5592,26 +5659,26 @@ msgid "To use the old view when using the Visual Console visor" msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "hora" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "Caducidad del caché por defecto" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "No hay chaché" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "Intervalo de actualización por defecto en la consola visual" @@ -5620,34 +5687,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "Este intervalo afectará todas las páginas de la consola visual." #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "Utilizar siempre 1000" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "Utilizar siempre 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "Multiplicador de datos para usar en gráficas/datos" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "No permitir orientación de la consola visual en la vista móvil" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "Mostrar fotograma de elemento al activarse la alerta" @@ -5656,7 +5725,7 @@ msgid "Reports configuration" msgstr "Configuración de informes" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "Mostrar la información del informe con la descripción" @@ -5669,7 +5738,7 @@ msgstr "" "informes por defecto." #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "Portada de informe personalizado" @@ -5683,21 +5752,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "Tamaño de fuente de PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "Tamaño de fuente en SLA (em)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "Altura de la imagen de la gráfica en informes HTML" @@ -5711,21 +5780,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "Separador CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "Separador decimal CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "Descripción del intervalo" @@ -5742,9 +5811,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "Logo personalizado" @@ -5769,17 +5838,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "Portada de informe personalizado" @@ -5787,8 +5856,8 @@ msgstr "Portada de informe personalizado" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "Encabezado" @@ -5797,23 +5866,93 @@ msgstr "Encabezado" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "Primera página" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "Información de la consola visual heredada" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" +"A partir de la versión LTS 772 Pandora FMS no soportará la consola visual en " +"modo Legacy" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "Logo de vista previa" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "Vista previa de Splash" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "Vista previa del fondo" @@ -5945,12 +6084,12 @@ msgstr "Servidor de origen" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "Recursión de grupos" @@ -5995,7 +6134,7 @@ msgstr "Servidor de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6063,8 +6202,8 @@ msgstr "Mover" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias del agente" @@ -6080,8 +6219,8 @@ msgstr "Nodo de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6095,9 +6234,9 @@ msgstr "Nodo de destino" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6128,7 +6267,7 @@ msgstr "Prioridad" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "Paso" @@ -6156,8 +6295,8 @@ msgstr "Creando agente en el nodo de destino" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6186,12 +6325,12 @@ msgid "checking migration requirements" msgstr "Comprobando requisitos de migración" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "Servidor eliminado correctamente" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "Hubo un problema al eliminar el servidor" @@ -6217,12 +6356,12 @@ msgstr "No se ha podido actualizar la cadena de traducción" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "Idioma" @@ -6252,7 +6391,7 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6260,8 +6399,8 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6278,23 +6417,23 @@ msgstr "Texto libre para buscar (*)" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484 -#: ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485 +#: ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6302,13 +6441,12 @@ msgstr "Texto libre para buscar (*)" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Buscar" @@ -6328,8 +6466,8 @@ msgstr "Buscar" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6339,14 +6477,14 @@ msgstr "Buscar" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6357,16 +6495,17 @@ msgstr "Buscar" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6395,7 +6534,7 @@ msgstr "Personalizar traducción" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "No hay datos que mostrar" @@ -6409,14 +6548,14 @@ msgstr "No hay datos que mostrar" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "Personalizado" @@ -6443,8 +6582,8 @@ msgid "Imei" msgstr "IMEI" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "Relaciones" @@ -6480,21 +6619,21 @@ msgstr "Mostrar lista de relaciones" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6512,7 +6651,7 @@ msgstr "Dirección del nodo" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6534,7 +6673,7 @@ msgstr "Dirección del nodo" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6544,26 +6683,26 @@ msgstr "Dirección del nodo" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6572,7 +6711,7 @@ msgstr "Dirección del nodo" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "Acción" @@ -6591,7 +6730,7 @@ msgstr "Contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "Habilitar política de contraseñas" @@ -6626,7 +6765,7 @@ msgstr "Habilitar política de contraseñas" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6635,11 +6774,11 @@ msgstr "Habilitar política de contraseñas" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6654,13 +6793,13 @@ msgstr "Habilitar política de contraseñas" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "Sí" @@ -6696,7 +6835,7 @@ msgstr "Sí" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6705,11 +6844,11 @@ msgstr "Sí" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6720,28 +6859,28 @@ msgstr "Sí" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "No" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "Contraseña con tamaño mínimo" @@ -6753,7 +6892,7 @@ msgstr " Caracteres" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "Expiración de contraseña" @@ -6769,7 +6908,7 @@ msgstr " Días" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "Usuario bloqueado si la identificación falla" @@ -6781,7 +6920,7 @@ msgstr " Minutos" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "Número de intentos de identificación fallidos" @@ -6797,56 +6936,56 @@ msgstr " Intentos" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "Comparar la contraseña anterior" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "Activar histórico de contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "Aplicar la política de contraseñas a los usuarios administradores" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "Forzar cambio de contraseña en el primer inicio de sesión" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "La contraseña debe contener números." #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "La contraseña debe contener símbolos." #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "Activar reseteo de contraseña" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "Lista de contraseñas prohibidas" @@ -6915,56 +7054,56 @@ msgstr "" "que dichos ajustes ignorarán los ajustes de la consola." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "Configuración de email" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "Desde dir" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "Desde nombre" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "Servidor SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "Puerto SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "Encriptación" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "ninguno" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "Usuario de email" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "Contraseña de email" @@ -6988,11 +7127,11 @@ msgstr "Configuración de contraseñas" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "Visor de logs" @@ -7000,12 +7139,12 @@ msgstr "Visor de logs" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "Base de datos histórica" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "Autentificación" @@ -7022,7 +7161,7 @@ msgstr "Configuración del rendimiento" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7039,7 +7178,7 @@ msgid "Mail" msgstr "Correo electrónico" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "Notificaciones" @@ -7111,8 +7250,8 @@ msgstr "Actualización en línea" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104 #: ../../godmode/module_library/module_library_view.php:48 @@ -7165,37 +7304,19 @@ msgstr "Aplicar políticas" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73 +#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73 msgid "Policies" msgstr "Políticas" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "Servidores" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "Aplicar" @@ -7291,8 +7412,8 @@ msgstr "No se puede eliminar" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7304,7 +7425,7 @@ msgstr "Activado correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7316,8 +7437,8 @@ msgstr "No se pudo activar" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7388,29 +7509,30 @@ msgstr "Edición de elemento de Metaconsola %s" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "Etiqueta" @@ -7500,12 +7622,12 @@ msgstr "Puerto de la BD" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "Opciones avanzadas" @@ -7614,7 +7736,7 @@ msgstr "Sincronización de bases de datos" #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "Gestionar" @@ -7657,7 +7779,7 @@ msgstr "Error al crear el enlace" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7666,7 +7788,7 @@ msgstr "Error al crear el enlace" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7686,7 +7808,7 @@ msgstr "Error al modificar el enlace" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7703,21 +7825,21 @@ msgstr "Error al modificar el enlace" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7775,7 +7897,7 @@ msgstr "Aplicar políticas" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "Principal" @@ -7851,41 +7973,49 @@ msgstr "Colecciones" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "Datos" @@ -7945,7 +8075,7 @@ msgstr "Colección de ficheros creada correctamente" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "Archivos" @@ -8051,7 +8181,7 @@ msgstr "Error al mover los datos de aprovisionamiento personalizado" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "Editar archivo" @@ -8137,27 +8267,28 @@ msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "Seleccionar hora" @@ -8169,28 +8300,29 @@ msgstr "Seleccionar hora" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "Hora" @@ -8201,28 +8333,29 @@ msgstr "Hora" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "Hora" @@ -8233,28 +8366,29 @@ msgstr "Hora" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "Minuto" @@ -8265,27 +8399,28 @@ msgstr "Minuto" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "Segundo" @@ -8296,36 +8431,37 @@ msgstr "Segundo" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "Ahora" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8350,17 +8486,17 @@ msgstr "Contraseña («hash») de inicio de sesión automático" #: ../../enterprise/meta/advanced/metasetup.setup.php:110 #: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838 msgid "System" msgstr "Sistema" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 -#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937 +#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942 msgid "Database" msgstr "Base de datos" @@ -8420,7 +8556,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8429,7 +8565,7 @@ msgstr "África" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8438,7 +8574,7 @@ msgstr "América" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8447,7 +8583,7 @@ msgstr "Antártida" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8456,7 +8592,7 @@ msgstr "Ártico" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8465,7 +8601,7 @@ msgstr "Asia" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8474,7 +8610,7 @@ msgstr "Atlántico" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8483,7 +8619,7 @@ msgstr "Australia" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8492,7 +8628,7 @@ msgstr "Europa" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8501,7 +8637,7 @@ msgstr "Índico" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8510,7 +8646,7 @@ msgstr "Pacífico" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8523,7 +8659,6 @@ msgstr "Cambiar zona horaria" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8567,9 +8702,9 @@ msgstr "Forzar usando la URL pública definida." #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "Desactiva los filtros de vista activa personalizados" @@ -8634,7 +8769,7 @@ msgstr "Habilitar actualización de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "Tamaño de la colección" @@ -8695,16 +8830,19 @@ msgstr "Localización de logs: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "Habilitar informe de consola" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "Comprobar intervalo de conexión" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and a " "New event with that Extra ID is received, it will be created as "In " @@ -8716,12 +8854,13 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" -msgstr "Mantener en proceso el estado para nuevos eventos con ID adicional" +msgstr "Mantener el estado En proceso para nuevos eventos con ID adicional" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "Error al conectar con %s" @@ -8782,23 +8921,23 @@ msgstr "%s alertas de políticas eliminadas correctamente" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "Origen" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610 +#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "Esta Metaconsola" @@ -8808,26 +8947,26 @@ msgstr "Esta Metaconsola" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "Política" @@ -8876,12 +9015,12 @@ msgstr "Ejectuado:" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "hace" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "Rendimiento" @@ -8899,13 +9038,13 @@ msgstr "Usar estadísticas en tiempo real" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 -#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842 +#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "Nº max. de días antes de borrar eventos de auditoría interna" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 -#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882 +#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "Nº de horas predeterminado para la visualización de eventos" @@ -8932,26 +9071,26 @@ msgid "maximum number of events to be displayed per node" msgstr "Número máximo de eventos a mostrar por nodo" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 -#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944 +#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "Límite de líneas en log CSV" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918 +#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "Nº máx. de campos de macro de datos" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 -#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874 +#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "Límite de eventos por consulta" #: ../../enterprise/meta/advanced/metasetup.performance.php:255 #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "Máx. días antes de purga de datos" @@ -9009,7 +9148,7 @@ msgid "To manage collections you must activate centralized management" msgstr "Para administrar colecciones, active la gestión centralizada" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "Buscar por nombre de usuario, nombre completo o email" @@ -9024,7 +9163,7 @@ msgstr "Error: el directorio principal de las colecciones no existe" #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "Colección" @@ -9038,7 +9177,7 @@ msgstr "Nombre corto" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "¿Estás seguro de que quieres eliminarlo?" @@ -9092,12 +9231,12 @@ msgid "There are no collections defined yet." msgstr "No hay colecciones definidas todavía." #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "Operación eliminada correctamente de la cola" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "La operación no puede ser eliminada de la cola." @@ -9105,42 +9244,42 @@ msgstr "La operación no puede ser eliminada de la cola." #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 -#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78 -#: ../../general/main_menu.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 +#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79 +#: ../../general/main_menu.php:86 msgid "Operation" msgstr "Operación" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "Aplicar (base de datos y archivos)" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "Aplicar (solo en la base de datos)" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "Completo" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "Incompleto" @@ -9151,13 +9290,13 @@ msgstr "Incompleto" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9167,18 +9306,18 @@ msgstr "Incompleto" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305 +#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521 -#: ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522 +#: ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9186,32 +9325,33 @@ msgstr "Incompleto" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 -#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 +#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "Filtro" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "Mostrar opciones" @@ -9229,21 +9369,21 @@ msgstr "Mostrar opciones" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "Servidor" @@ -9253,11 +9393,11 @@ msgstr "Servidor" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9274,8 +9414,8 @@ msgstr "Servidor" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 @@ -9292,34 +9432,34 @@ msgstr "Servidor" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "Agentes" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9329,18 +9469,18 @@ msgid "Progress" msgstr "Progreso" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "Política " #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "Tiempo de espera de la aplicación de la política" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "Eliminar de la cola" @@ -9418,17 +9558,17 @@ msgstr "Cola vacía" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9444,55 +9584,55 @@ msgstr "Cola vacía" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9501,22 +9641,24 @@ msgstr "Cola vacía" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9527,20 +9669,20 @@ msgstr "Cola vacía" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "Agente" @@ -9562,14 +9704,13 @@ msgstr "Agente" #: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "IP" @@ -9591,43 +9732,43 @@ msgstr "Estado de agente" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "Normal" @@ -9664,24 +9805,24 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9690,18 +9831,18 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "Crítico" @@ -9726,15 +9867,16 @@ msgstr "Vista de campos personalizados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "Recurrencia" @@ -9747,21 +9889,21 @@ msgstr "Recurrencia" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "No normal" @@ -9772,30 +9914,30 @@ msgstr "No normal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "No iniciados" @@ -9811,14 +9953,14 @@ msgstr "Módulo de estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "Guardar filtro" @@ -9827,21 +9969,20 @@ msgstr "Guardar filtro" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "Cargar filtro" @@ -9855,8 +9996,8 @@ msgid "Custom Fields Data" msgstr "Datos de campos personalizados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "Búsqueda por módulo" @@ -9865,8 +10006,8 @@ msgstr "Búsqueda por módulo" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9875,11 +10016,11 @@ msgstr "Mostrar" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9890,170 +10031,170 @@ msgstr "Exportar a CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "Procesando" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "Agentes OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "Agentes desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "Monitor crítico" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "Monitor en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "Monitor normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "Monitor en estado desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "Monitor en estado no iniciado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "Agentes por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "Monitores por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "Agentes en normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "Agentes en desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "Módulos críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "Módulos de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "Módulos normales" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "Módulos desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "Módulos no iniciados" @@ -10085,7 +10226,7 @@ msgstr "No hay búsquedas personalizadas definidas." #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10094,9 +10235,9 @@ msgstr "Confirmar" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "Crear agente" @@ -10182,18 +10323,18 @@ msgstr "Crear alerta" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10202,41 +10343,41 @@ msgstr "Crear alerta" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10245,17 +10386,19 @@ msgstr "Crear alerta" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10263,16 +10406,16 @@ msgstr "Crear alerta" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "Módulo" @@ -10288,18 +10431,18 @@ msgstr "Módulo" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "Plantilla" @@ -10379,8 +10522,8 @@ msgstr "Crear nueva acción" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10401,8 +10544,8 @@ msgstr "Configuración avanzada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "Crear módulo" @@ -10441,11 +10584,11 @@ msgstr "Se han encontrado caracteres no válidos en el nombre del módulo." #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "Asistente" @@ -10460,8 +10603,8 @@ msgstr "Gestionar módulos" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "Búsqueda de agente" @@ -10475,18 +10618,22 @@ msgstr "Selecciona el agente donde quieres crear el módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 +#: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "Atrás" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "Crear módulo" @@ -10563,14 +10710,14 @@ msgstr "Por favor, introduce un intervalo." #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "Tipo módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "Monitor" @@ -10585,7 +10732,7 @@ msgstr "Comprobación web" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10593,15 +10740,17 @@ msgstr "Comprobación web" #: ../../godmode/reporting/reporting_builder.item_editor.php:1720 #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085 -#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095 +#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 -#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 +#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Grupo del módulo" @@ -10621,14 +10770,14 @@ msgstr "Wizard paso a paso" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "Avanzado" @@ -10639,7 +10788,7 @@ msgstr "Haz clic en Crear para continuar" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "Por favor, selecciona un módulo." @@ -10649,7 +10798,7 @@ msgstr "Por favor, selecciona un módulo." #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10657,8 +10806,8 @@ msgstr "Por favor, selecciona un módulo." #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "Finalizar" @@ -10693,8 +10842,8 @@ msgstr "Vacío" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "Nuevo" @@ -10714,18 +10863,18 @@ msgid "Please, select an agent" msgstr "Por favor, selecciona un agente." #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10734,10 +10883,10 @@ msgstr "Cargando" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10761,21 +10910,21 @@ msgstr "Ya hay otro agente con ese nombre." #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "Intervalo del agente x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we do " "not recommend its use." msgstr "" -"Esta característica se eliminará en la versión 771 y sus\n" +"Esta función se eliminará en la versión 771 y sus\n" " funciones se transferirán a diferentes herramientas de la " "Metaconsola (operaciones masivas, edición de alertas de agentes, etc.).\n" " Las funciones actuales del asistente son mínimas y no " @@ -10787,9 +10936,10 @@ msgstr "Vista de grupo" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "Vista de grupo" @@ -10836,9 +10986,9 @@ msgid "% Monitors Not init" msgstr "% módulos no iniciados" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "No hay ningún agente definido" @@ -10853,15 +11003,15 @@ msgstr "Grupo o etiqueta" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "Total" @@ -10870,18 +11020,18 @@ msgstr "Total" #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 #: ../../include/functions.php:1284 ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "Alerta disparada" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this reason, " @@ -10893,9 +11043,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10919,14 +11071,14 @@ msgstr "Informe de estado" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952 +#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220 #: ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "Eventos" @@ -10950,14 +11102,14 @@ msgstr "Ver eventos" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "Crear filtro" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "Respuestas de evento" @@ -10967,24 +11119,23 @@ msgstr "Respuestas de evento" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "Campos personalizados" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "Respuestas" @@ -10999,25 +11150,25 @@ msgid "Fields" msgstr "Campos" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "Campos disponibles" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "Campos seleccionados" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "Añadir campos para seleccionar" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "Eliminar campos para seleccionar" @@ -11028,7 +11179,7 @@ msgid "Show event fields" msgstr "Mostrar campos de eventos" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" @@ -11086,9 +11237,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "Ordenar" @@ -11179,7 +11330,7 @@ msgstr "Error al duplicar nombre" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "Gestión de usuarios" @@ -11189,7 +11340,7 @@ msgstr "Gestión de usuarios" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "Gestionar perfiles" @@ -11224,11 +11375,10 @@ msgstr "Gestión de usuarios" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "Alias" @@ -11240,18 +11390,18 @@ msgstr "Alias" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Dirección IP" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11260,7 +11410,7 @@ msgstr "Dirección IP" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "Comprobar" @@ -11274,9 +11424,9 @@ msgstr "Comprobar" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "General" @@ -11302,7 +11452,7 @@ msgstr "Deshacer los cambios" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "Automático" @@ -11310,7 +11460,7 @@ msgstr "Automático" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "Forzar clave primaria" @@ -11325,8 +11475,8 @@ msgstr "Forzar clave primaria" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11337,23 +11487,22 @@ msgstr "Forzar clave primaria" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "Usuario" @@ -11367,8 +11516,8 @@ msgstr "Usuario" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11384,22 +11533,21 @@ msgstr "Usuario" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 -#: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 +#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561 +#: ../../include/functions_config.php:747 ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "Contraseña" @@ -11413,14 +11561,14 @@ msgid "Response" msgstr "Respuesta" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "Comprueba el tipo" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11440,47 +11588,47 @@ msgstr "Eliminar comprobación" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "cargar básicos" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "Cargar una estructura básica en las comprobaciones web" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "Cargar la estructura correcta de las comprobaciones web" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "La primera línea tiene que ser \"task_begin\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "La configuración de comprobaciones web está vacía." #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "La última línea tiene que ser \"task_end\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "Hay una línea con un token desconocido \"token_fail\"." #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "Las comprobaciones web se han efectuado correctamente." @@ -11513,42 +11661,41 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "Intervalo" @@ -11562,9 +11709,9 @@ msgstr "Intervalo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "Unidad" @@ -11587,7 +11734,7 @@ msgstr "Comunidad SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "Credenciales" @@ -11612,9 +11759,10 @@ msgstr "Credenciales" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11642,9 +11790,10 @@ msgstr "Mín." #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11674,8 +11823,8 @@ msgstr "Máx." #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11684,13 +11833,13 @@ msgstr "Intervalo inverso" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "Umbrales" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "Proxy URL" @@ -11715,7 +11864,7 @@ msgid "Alerts in module" msgstr "Alertas en el módulo" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "Descripción de la alerta" @@ -11750,7 +11899,7 @@ msgstr "Error al crear las alertas; operación cancelada" #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "Módulo añadido correctamente" @@ -11826,7 +11975,7 @@ msgstr "Cada día" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "Días" @@ -11841,7 +11990,7 @@ msgid "and" msgstr "y" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11867,8 +12016,8 @@ msgstr "Umbral de tiempo" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11894,10 +12043,10 @@ msgstr "De" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "a" @@ -11921,9 +12070,9 @@ msgstr "Identificación del evento" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "Nombre del evento" @@ -11931,15 +12080,15 @@ msgstr "Nombre del evento" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "Nombre del agente" @@ -11954,38 +12103,39 @@ msgstr "Nombre del agente" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "Marca temporal" @@ -11995,12 +12145,12 @@ msgstr "Marca temporal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803 msgid "Event type" msgstr "Tipo de evento" @@ -12009,20 +12159,20 @@ msgstr "Tipo de evento" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "Nombre del módulo" @@ -12033,14 +12183,14 @@ msgstr "Nombre del módulo" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 #: ../../include/class/SnmpConsole.class.php:506 #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "Alerta" @@ -12051,35 +12201,35 @@ msgstr "Alerta" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904 msgid "Severity" msgstr "Gravedad" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960 msgid "Comment" msgstr "Comentar" @@ -12090,7 +12240,7 @@ msgstr "Comentar" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12102,27 +12252,27 @@ msgstr "Comentar" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" msgstr "Etiquetas" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631 msgid "Extra id" msgstr "ID extra" @@ -12130,13 +12280,13 @@ msgstr "ID extra" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "Propietario" @@ -12149,7 +12299,7 @@ msgstr "ACK Marca temporal" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298 msgid "Instructions" msgstr "Instrucciones" @@ -12165,11 +12315,11 @@ msgid "Server name" msgstr "Nombre del servidor" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "Estado del módulo" @@ -12213,8 +12363,8 @@ msgstr "Ir a la Wiki de Pandora FMS" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "Ayuda" @@ -12235,8 +12385,8 @@ msgid "Change password" msgstr "Cambiar contraseña" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "Las contraseñas deben coincidir" @@ -12261,8 +12411,7 @@ msgstr "METACONSOLA" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "Crear" @@ -12324,7 +12473,7 @@ msgstr "Operaciones de usuario" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "Gestión de agentes" @@ -12340,7 +12489,7 @@ msgid "No admin user" msgstr "No hay usuario administrador" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "Activar la Metaconsola" @@ -12388,26 +12537,26 @@ msgstr "Puerto ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "Número de logs vistos" #: ../../enterprise/meta/include/functions_meta.php:554 -#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559 +#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "Método de autentificación" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "Alternativa si falla la autentificación" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "Crear usuarios remotos automáticamente" @@ -12415,8 +12564,8 @@ msgstr "Crear usuarios remotos automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "Crear el perfil automáticamente" @@ -12424,8 +12573,8 @@ msgstr "Crear el perfil automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "Crear perfil de grupo automáticamente" @@ -12433,29 +12582,29 @@ msgstr "Crear perfil de grupo automáticamente" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "Crear etiquetas de perfil automáticamente" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "Jerarquía no asignada automáticamente" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "Crear una lista negra automáticamente" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 -#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../godmode/users/configure_user.php:1546 +#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "Doble autentificación" @@ -12465,7 +12614,7 @@ msgstr "2FA_all_users" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 ../../include/functions_config.php:825 msgid "Session timeout" msgstr "Sesión expirada" @@ -12473,7 +12622,7 @@ msgstr "Sesión expirada" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 ../../include/functions_config.php:832 msgid "Save Password" msgstr "Guardar contraseña" @@ -12482,58 +12631,58 @@ msgid "Timezone visual" msgstr "Visualización de zona horaria" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "Servidor de directorio activo" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "Puerto del directorio activo" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 -#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 +#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "Start TLS" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "Configuración avanzada AD" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "Dominio" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "Permisos avanzados de AD" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "Permisos LDAP avanzados" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "Configuración LDAP avanzada" @@ -12541,47 +12690,47 @@ msgstr "Configuración LDAP avanzada" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "Auto-habilitar acceso al nodo" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "Ruta de SAML" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "Saml origen" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "Parámetro de ID de usuario saml" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "Parámetro de correo de saml" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "Parámetro de nombre de grupo saml" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "Parámetro de tipo de attr saml" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "Parámetro de perfiles y etiquetas saml" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "Separador de perfil y etiqueta saml" @@ -12590,42 +12739,42 @@ msgid "SAML profile parameters" msgstr "Parámetros de perfil SAML" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "Parámetro de etiqueta saml" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "Servidor LDAP" #: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627 +#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639 msgid "LDAP port" msgstr "Puerto LDAP" #: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631 +#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643 msgid "LDAP version" msgstr "Versión LDAP" #: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651 msgid "Base DN" msgstr "DN base" #: ../../enterprise/meta/include/functions_meta.php:1016 -#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643 +#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655 msgid "Login attribute" msgstr "Atributo de acceso" #: ../../enterprise/meta/include/functions_meta.php:1026 -#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "Inicio de sesión de administrador LDAP" #: ../../enterprise/meta/include/functions_meta.php:1036 -#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "Contraseña de administrador LDAP" @@ -12635,22 +12784,22 @@ msgid "Ldap search timeout (secs)" msgstr "Tiempo de espera de búsqueda LDAP (segundos)" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "LDAP secundario habilitado" #: ../../enterprise/meta/include/functions_meta.php:1065 -#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "Servidor LDAP secundario" #: ../../enterprise/meta/include/functions_meta.php:1075 -#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "Puerto LDAP secundario" #: ../../enterprise/meta/include/functions_meta.php:1085 -#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "Versión LDAP secundaria" @@ -12660,39 +12809,39 @@ msgid "Secondary start TLS" msgstr "TLS de inicio secundario" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "Base secundaria DN" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "Atributo de inicio de sesión secundario" #: ../../enterprise/meta/include/functions_meta.php:1125 -#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683 +#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "Inicio de sesión LDAP secundario del administrador" #: ../../enterprise/meta/include/functions_meta.php:1135 -#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687 +#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "Contraseña LDAP secundaria del administrador" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "Identificar atributo de usuario" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "Guardar perfil" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "Función LDAP" @@ -12704,9 +12853,9 @@ msgstr "Host %s" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 msgid "MySQL port" msgstr "Puerto de MySQL" @@ -12715,10 +12864,10 @@ msgstr "Puerto de MySQL" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "Nombre de la base de datos" @@ -12727,13 +12876,13 @@ msgid "Babel Enterprise host" msgstr "Servidor de Babel Enterprise" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "Servidor de Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "Marca o comparación temporal" @@ -12750,7 +12899,7 @@ msgid "Graph color (max)" msgstr "Color del gráfico (máx.)" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "Precisión de los datos en los informes" @@ -12767,8 +12916,8 @@ msgid "type mode zoom charts" msgstr "zoom de gráfica" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "Fondo aleatorio" @@ -12777,7 +12926,7 @@ msgid "Type of charts" msgstr "Tipo de gráficos" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "Icono menú reducido" @@ -12786,32 +12935,32 @@ msgid "Custom logo (white background)" msgstr "Logo personalizado (fondo blanco)" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "Logo personalizado en la pantalla de bienvenida" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "Login de Splash personalizado" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "Título1 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "Título2 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "Encabezado de título personalizado" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "Encabezado de subtítulos meta personalizado" @@ -12828,42 +12977,42 @@ msgid "Custom copyright notice" msgstr "Aviso de copyright personalizado" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "Ruta de la tipografía" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "Usar multiplicador de datos" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "Información del informe personalizado" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "Tipo de letra" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "Pie de página" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "Usar la consola visual heredada" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "Caducidad del caché de los elementos de la consola visual por defecto" @@ -12872,7 +13021,7 @@ msgid "Realtime stats" msgstr "Estadísticas en tiempo real" #: ../../enterprise/meta/include/functions_meta.php:2050 -#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894 +#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "Usar la gráfica de acceso del agente" @@ -12893,35 +13042,35 @@ msgid "Node address default" msgstr "Dirección del nodo por defecto" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "La base de datos activa y la histórica no pueden ser la misma." #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "Host" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "Activar base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "Activar histórico de eventos" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "Usuario de la base de datos" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "Contraseña de la base de datos" @@ -12934,45 +13083,45 @@ msgid "Database advanced" msgstr "Base de datos avanzada" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "Eventos en día" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "Retraso" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "Purga de la base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "Particiones de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "Purga de eventod de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "Purga de cadenas de base de datos histórica" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "Interfaz de la BD" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "Error al conectarse al %s de nodo" @@ -12986,7 +13135,6 @@ msgstr "Grupos de componentes" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "Componentes locales" @@ -13009,13 +13157,13 @@ msgstr "Gestión de plugins" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "Módulos de inventario" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "Registro de plugins" @@ -13050,32 +13198,32 @@ msgstr "%s - Flexible Monitoring System" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 #: ../../include/ajax/double_auth.ajax.php:270 #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 -#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273 -#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306 +#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274 +#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "Error" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "Comandos" @@ -13093,8 +13241,8 @@ msgid "User to reset password" msgstr "Usuario de la contraseña a resetear" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "Restablecer la contraseña" @@ -13104,8 +13252,8 @@ msgstr "Restablecer la contraseña" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" @@ -13113,7 +13261,7 @@ msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "CENTRO DE COMANDO" @@ -13194,21 +13342,19 @@ msgstr "Error al eliminar la relación" msgid "Relation deleted successfully" msgstr "Relación eliminada con éxito" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "Se ha perdido la conexión con el servidor" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet connection " "or contact with administrator." @@ -13234,55 +13380,55 @@ msgstr "Inicio de sesión caducado" msgid "Login error" msgstr "Error de conexión" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "Contraseña modificada correctamente" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "No se pudo modificar la contraseña" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "Este usuario no ha solicitado un cambio de contraseña" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "El ID de usuario no puede estar vacío" -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "Error en la solicitud para restablecer la contraseña" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "Este usuario no tiene una dirección válida de email" -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "Este es un mensaje enviado automáticamente para el usuario " -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "Haz clic en el enlace de abajo para restablecer la contraseña" -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "Restablecer la contraseña" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "No respondas a este email." -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "Error al enviar el email" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge process." @@ -13290,17 +13436,17 @@ msgstr "" "El sistema no está centralizado, vaya a %s para realizar un proceso de fusión " "de bases de datos." -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "Hay nodos con RM diferente a esta (%d):" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "Mantenga todo el entorno actualizado a la misma versión." -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "No se puede encontrar la página" @@ -13319,22 +13465,21 @@ msgstr "Agentes encontrados" #: ../../enterprise/operation/agentes/policy_view.php:400 #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 -#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576 +#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "Último contacto" @@ -13343,8 +13488,8 @@ msgid "There are no agents included in this group" msgstr "No hay ningún agente en este grupo" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "Políticas encontradas" @@ -13375,21 +13520,24 @@ msgstr "No hay políticas incluidas en este grupo" msgid "%s %s - %s - MR %s" msgstr "%s %s - %s - MR %s" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "Página generada en" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "No tienes permiso para acceder a esta página" @@ -13446,8 +13594,8 @@ msgstr "Actualización automática desactivada" #: ../../enterprise/meta/general/header.php:266 #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 -#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 -#: ../../mobile/operation/home.php:148 ../../general/header.php:443 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527 +#: ../../mobile/operation/home.php:167 ../../general/header.php:443 #: ../../general/header.php:445 msgid "Logout" msgstr "Salir" @@ -13463,7 +13611,7 @@ msgid "Please navigate to %s" msgstr "Por favor, navegue hasta %s" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas" @@ -13471,8 +13619,8 @@ msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "Vista de árbol" @@ -13497,7 +13645,7 @@ msgstr "Visor de monitores" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Informes" @@ -13515,7 +13663,7 @@ msgstr "Plantillas de informes" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "Asistente de plantillas" @@ -13543,7 +13691,8 @@ msgstr "Asistente de plantillas" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13558,7 +13707,7 @@ msgstr "Pantallas" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13585,8 +13734,8 @@ msgstr "Consola visual de asistente" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13642,7 +13791,7 @@ msgid "Command Center" msgstr "command center" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "Licencia" @@ -13657,8 +13806,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "Enlaces" @@ -13693,9 +13842,9 @@ msgstr "Registros de auditoría" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13756,39 +13905,40 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "Inventario" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "Lista de eventos" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "Consola sonora" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493 -#: ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "Inicio" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "Sin alertas" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "Silenciar alarma" @@ -13812,7 +13962,7 @@ msgstr "Mensajes" #: ../../enterprise/meta/general/main_menu.php:409 #: ../../enterprise/operation/services/services.list.php:57 msgid "List of services" -msgstr "de los Servicios" +msgstr "Lista de servicios" #: ../../enterprise/meta/general/main_menu.php:498 #: ../../enterprise/meta/general/main_menu.php:499 @@ -13822,7 +13972,7 @@ msgstr "Correlación de alertas" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "Detalles de alerta" @@ -13835,7 +13985,7 @@ msgstr "Detalles de alerta" msgid "Centralised management" msgstr "Gestión centralizada" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13853,12 +14003,12 @@ msgstr "Herramienta de fusión" msgid "List of Links" msgstr "Lista de enlaces" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "Logs de auditoría del sistema" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "Acerca de" @@ -13876,18 +14026,18 @@ msgid "Authentication code" msgstr "Código de autentificación" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "Código de comprobación" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "Iniciar sesión" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "Entrar con SAML" @@ -13977,15 +14127,15 @@ msgstr "O deshabilite %s Enterprise" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "Validar" @@ -14072,7 +14222,7 @@ msgstr "Póngase en contacto con %s para renovar la licencia." #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "Renovar" @@ -14155,7 +14305,7 @@ msgstr "Gestión de sistemas" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "Administrador" @@ -14202,7 +14352,7 @@ msgstr "Vista VMware" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14213,7 +14363,7 @@ msgstr "Herramientas administrativas" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "Gestor de extensión" @@ -14268,7 +14418,7 @@ msgstr "Separador" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "Ir" @@ -14446,24 +14596,24 @@ msgstr "Host ESX" #: ../../enterprise/operation/agentes/tag_view.php:1137 #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1416 ../../include/functions.php:1455 -#: ../../include/functions_modules.php:2905 +#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 +#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142 -#: ../../operation/events/events.php:633 ../../operation/events/events.php:710 -#: ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:638 ../../operation/events/events.php:715 +#: ../../operation/events/events.php:741 msgid "NORMAL" msgstr "NORMAL" @@ -14476,24 +14626,24 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1153 #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1404 ../../include/functions.php:1436 -#: ../../include/functions_modules.php:2899 +#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 +#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150 -#: ../../operation/events/events.php:608 ../../operation/events/events.php:716 -#: ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153 +#: ../../operation/events/events.php:613 ../../operation/events/events.php:721 +#: ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "CRÍTICO" @@ -14507,25 +14657,25 @@ msgstr "CRÍTICO" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1407 ../../include/functions.php:1443 -#: ../../include/functions_modules.php:2902 +#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 +#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:704 -#: ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:643 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:763 msgid "WARNING" msgstr "ADVERTENCIA" @@ -14541,31 +14691,31 @@ msgstr "ADVERTENCIA" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1420 ../../include/functions.php:1446 -#: ../../include/functions_modules.php:2911 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 +#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:644 ../../operation/events/events.php:723 -#: ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:649 ../../operation/events/events.php:728 +#: ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "DESCONOCIDO" @@ -14787,7 +14937,7 @@ msgid "Power Status: " msgstr "Estado: " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "Estado: " @@ -14800,7 +14950,7 @@ msgid "Export agents" msgstr "Exportar agentes" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14920,12 +15070,12 @@ msgstr "Estado advertencia" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14944,12 +15094,12 @@ msgstr "Mín." #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14966,7 +15116,7 @@ msgstr "Máx." #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -14983,7 +15133,7 @@ msgstr "Str." #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -14998,12 +15148,14 @@ msgstr "Define el umbral como un porcentaje de disminución/incremento del valor #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "Cambiar al estado crítico después de" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "intervalos en estado de advertencia." @@ -15023,7 +15175,7 @@ msgstr "Estado crítico" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "Umbral FF" @@ -15031,7 +15183,7 @@ msgstr "Umbral FF" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "Mantener los contadores" @@ -15041,7 +15193,7 @@ msgstr "Mantener los contadores" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15052,7 +15204,7 @@ msgstr "Todos los cambios de estado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15062,7 +15214,7 @@ msgstr "Cada cambio de estado" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "A normal" @@ -15071,7 +15223,7 @@ msgstr "A normal" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "A advertencia" @@ -15080,7 +15232,7 @@ msgstr "A advertencia" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "A crítico" @@ -15090,15 +15242,16 @@ msgstr "A crítico" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "Histórico de datos" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "FF tiempo de espera" @@ -15121,9 +15274,9 @@ msgstr "Solo debe establecerse este valor en los módulos asíncronos." #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "Valor mínimo" @@ -15135,9 +15288,9 @@ msgstr "Cualquier valor por debajo de este número será descartado." #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "Valor máximo" @@ -15149,9 +15302,9 @@ msgstr "Cualquier valor por encima de este número será descartado." #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15166,24 +15319,24 @@ msgid "Check the correct structure of the data configuration" msgstr "Comprobar la estructura correcta de la configuración de datos" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "La primera línea tiene que ser \"module_begin\"." #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "La configuración de datos está vacía." #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "La última línea tiene que ser \"module_end\"." #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" @@ -15192,7 +15345,7 @@ msgstr "" "yourmodulename\" a la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" @@ -15201,24 +15354,24 @@ msgstr "" "\" a la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto." #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "Error en la sintaxis; comprueba la configuración de datos." #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "La configuración de datos se ha efectuado correctamente." #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "Instrucciones de crítico" @@ -15233,7 +15386,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado crítico" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "Instrucciones de advertencia" @@ -15248,7 +15401,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "Instrucciones de desconocido" @@ -15263,7 +15416,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado desconocido" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15271,13 +15424,13 @@ msgstr "Categoría" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "Etiquetas disponibles" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "Añadir etiquetas al módulo" @@ -15289,7 +15442,7 @@ msgstr "Eliminar etiquetas del módulo" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "Etiquetas seleccionadas" @@ -15300,42 +15453,42 @@ msgstr "Macros" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "Valor por defecto" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "Añadir macro" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "Eliminar macro" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "Estado normal" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "Estado de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "Estado crítico" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "" "Por favor, introduce un máximo de advertencia mayor que el mínimo de " @@ -15343,7 +15496,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crítico." @@ -15352,7 +15505,7 @@ msgid "Please introduce a positicve percentage value" msgstr "Introduzca un valor porcentual positivo" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15373,9 +15526,9 @@ msgstr "Creado correctamente desde %s" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15384,8 +15537,8 @@ msgstr "Creado correctamente desde %s" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15407,14 +15560,14 @@ msgstr "" "las políticas está en modo lectura. Vaya a %s para administrarlo." #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "Creado correctamente" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15425,22 +15578,22 @@ msgstr "Creado correctamente" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "No se pudo actualizar" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "Actualizado correctamente" @@ -15449,7 +15602,7 @@ msgstr "Actualizado correctamente" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "Supresión múltiple correcta" @@ -15458,14 +15611,14 @@ msgstr "Supresión múltiple correcta" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "No borrado. Error al borrar datos múltiples." #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "Búsqueda libre" @@ -15474,15 +15627,15 @@ msgid "Search by name, description or data, list matches." msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "Duplicar" @@ -15558,7 +15711,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "Ejecución" @@ -15646,8 +15799,8 @@ msgstr "Lanzar script" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15677,20 +15830,20 @@ msgstr "Lanzar script" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15712,28 +15865,27 @@ msgstr "Lanzar script" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "Sin cambios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "Grupos secundarios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "Añadir grupos secundarios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "Eliminar grupos secundarios" @@ -15744,7 +15896,7 @@ msgstr "Añadir política" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "Op" @@ -15826,13 +15978,13 @@ msgstr "No hay autoconfiguraciones definidas" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "Activar" @@ -15844,14 +15996,14 @@ msgstr "Activar" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413 +#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "Desactivar" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "Añadir definición de nueva configuración" @@ -15875,10 +16027,10 @@ msgstr "Administrador de configuración de red" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "Plugins" @@ -15905,12 +16057,12 @@ msgid "Show files" msgstr "Mostrar archivos" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "No se encontraron datos." @@ -15919,9 +16071,9 @@ msgstr "No se encontraron datos." #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "P." @@ -15937,7 +16089,7 @@ msgid "Capacity planning" msgstr "Planificación de la capacidad" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15948,7 +16100,8 @@ msgstr "Planificación de la capacidad" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "Servicio" @@ -15965,59 +16118,59 @@ msgstr "Media sintética" msgid "Trending module" msgstr "Módulo de tendencias" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "Valor fijo" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "Añadir módulo a la operación como suma" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "Añadir módulo a la operación como resta" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "Añadir módulo a la operación como multiplicador " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "Añadir módulo a la operación como divisor" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "Eliminar los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "Añadir módulo al promedio de la operación" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "Eliminar los módulos de las operaciones de apilado" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "Mover hacia abajo los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "Mover hacia arriba los módulos seleccionados" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "Seleccionar servicio" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "Filtro de Netflow" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "Seleccionar filtro" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "Valor porcentual" @@ -16134,15 +16287,19 @@ msgstr "Configuración manual" msgid "No component was found" msgstr "No se encontró ningún componente" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "Valor de macro" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "Mostrar datos de configuración" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "Ocultar datos de configuración" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "Configuración de datos" @@ -16180,7 +16337,7 @@ msgid "Add Modules" msgstr "Añadir módulos" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "Eliminar módulo" @@ -16224,8 +16381,8 @@ msgstr "" "completa %s." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 -#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "Perfil" @@ -16247,7 +16404,7 @@ msgid "Only Selenium 3." msgstr "Solo Selenium 3." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "Cambiar todos los estados" @@ -16272,15 +16429,15 @@ msgstr "Pega el test de selenium, exportado como HTML, aquí" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "ID personalizado" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16290,7 +16447,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "Intervalo FF" @@ -16303,7 +16460,7 @@ msgstr "Tiempo del intervalo de flip flop de ejecución del módulo (en segundos #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "Reintentos" @@ -16317,7 +16474,7 @@ msgstr "Número de intentos que el módulo intentará activar" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "Macros personalizadas" @@ -16343,13 +16500,15 @@ msgstr "Editor de mapas de red vacío" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16358,15 +16517,15 @@ msgstr "Mapas topológicos" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "Mapa de red" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "No se encontró ningún mapa de red." @@ -16472,7 +16631,7 @@ msgstr "Crear un módulo de análisis web nuevo" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16508,7 +16667,7 @@ msgstr "No se puede añadir a los plugins pendientes de eliminar." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16519,7 +16678,7 @@ msgstr "Eliminación revertida correctamente" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16541,7 +16700,7 @@ msgid "There are no defined plugins" msgstr "No hay plugins definidos" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16555,7 +16714,7 @@ msgstr "Esta política se está aplicando y no puede ser modificada" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16642,8 +16801,8 @@ msgstr "Siempre" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "Activado" @@ -16655,7 +16814,7 @@ msgid "Until" msgstr "Hasta" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16668,12 +16827,12 @@ msgid "There is not alerts configured in this policy." msgstr "No hay alertas configuradas en esta política." #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "Desactivar modo standby" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "Activar modo standby" @@ -16692,9 +16851,9 @@ msgstr "Añadir alerta" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "Añadir acción" @@ -16754,40 +16913,40 @@ msgstr "Opciones de base" msgid "Could not be added module(s). You must select a policy" msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política." -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s" -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "El módulo (%s/%s) no se pudo añadir a la política %s" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "Para definir plugins, use la pestaña de configuración de plugins." -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "El módulo no se pudo añadir." -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" "El tipo de datos en la configuración está vacío, elige uno del combo del " "formulario." -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" "El nombre del módulo en la configuración está vacío, elige uno del combo del " "formulario." -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " @@ -16796,95 +16955,95 @@ msgstr "" "Añadido correctamente a la cola de módulos pendientes de eliminación. Será " "eliminado en la próxima aplicación de políticas." -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "No se pudo añadir a la lista para eliminar todos los módulos." -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "copia de %s" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "copia de %s (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "Módulo duplicado correctamente" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "No se puede duplicar" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "Mostrar en modo jerarquía" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "Componente local" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "Módulo deshabilitado" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "Módulo habilitado" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "Habilitar el módulo" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "Deshabilitar el módulo" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "No hay módulos definidos" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "No se proporcionó ningún nombre de módulo." -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "No se proporcionó ninguna IP de destino." -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "No se proporcionó ningún OID de SMTP." -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "Por favor, selecciona algún módulo para copiar." -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "No hay políticas con este identificador" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " @@ -16894,118 +17053,118 @@ msgstr "" "política la aplicará automáticamente a todos los nuevos agentes añadidos a ese " "grupo." -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "%s: Operaciones eliminadas correctamente de la cola" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "Operaciones eliminadas correctamente de la cola" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "Las operaciones no pueden ser eliminadas de la cola." -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información." -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "Actualización pendiente" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "Actualizar agentes pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "Añadir a la cola para aplicarlo" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "Añadir a la cola de aplicación solo de cambios de base de datos" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "Actualizar grupos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "Enlazar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "Se enlazará en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "Desenlazar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "Será desenlazado en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "Eliminación pendiente" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "Eliminar agentes pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "Se eliminará en la siguiente aplicación de políticas" -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "Eliminar grupos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "Eliminar módulos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "Eliminar módulos de inventario pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "Eliminar alertas pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "Eliminar alertas externas pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "Eliminar colecciones de archivos pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "Eliminar plugins pendientes" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "Consejos" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "Resumen de cola" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -17013,28 +17172,28 @@ msgstr "Resumen de cola" msgid "Toggle filter(s)" msgstr "Conmutar filtro(s)" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "Nodo" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "Vaciar cola" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "Esta operación podría tardar bastante tiempo." -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "Aplicar todas las colas" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "Borrar todos los elementos" @@ -17361,7 +17520,7 @@ msgstr "Agentes en la política" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17375,12 +17534,12 @@ msgstr "Agentes en la política" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "Grupos" @@ -17399,10 +17558,10 @@ msgstr "Grupos en la política" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "Configuración remota" @@ -17420,7 +17579,7 @@ msgstr "R." #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17439,7 +17598,7 @@ msgstr "U." #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17526,16 +17685,20 @@ msgstr "Asistente de agente" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17551,13 +17714,13 @@ msgstr "OID personalizado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texto" @@ -17565,8 +17728,8 @@ msgstr "Texto" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "Editor de traps SNMP" @@ -17835,7 +17998,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "Error al crear las alertas para estos módulos. Resuelve el problema." #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17846,8 +18009,9 @@ msgstr "Plantilla de alerta" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "Expresión regular" @@ -17930,8 +18094,9 @@ msgstr " política de" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17951,30 +18116,30 @@ msgstr " política de" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327 -#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329 -#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331 -#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334 -#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336 -#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352 -#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396 -#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440 +#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342 +#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344 +#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346 +#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349 +#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351 +#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367 +#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411 +#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "Cualquiera" @@ -17989,7 +18154,7 @@ msgstr "a políticas" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -18017,7 +18182,7 @@ msgstr "No hay políticas de destino que copiar" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "Grupo de agentes" @@ -18036,8 +18201,8 @@ msgid "When select agents" msgstr "Al seleccionar agentes" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18046,12 +18211,12 @@ msgstr "Al seleccionar agentes" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "Mostrar módulos comunes" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -18060,7 +18225,7 @@ msgstr "Mostrar módulos comunes" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "Mostrar todos los módulos" @@ -18092,7 +18257,7 @@ msgstr "Operaciones masivas" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "Inicio cero (0)" @@ -18100,7 +18265,7 @@ msgstr "Inicio cero (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "Comienzo de inicio (1)" @@ -18108,7 +18273,7 @@ msgstr "Comienzo de inicio (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "Enlace interrumpido (2)" @@ -18116,7 +18281,7 @@ msgstr "Enlace interrumpido (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "Enlace activo (3)" @@ -18124,7 +18289,7 @@ msgstr "Enlace activo (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "Fallo de autentificación (4)" @@ -18134,14 +18299,15 @@ msgstr "Fallo de autentificación (4)" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18160,12 +18326,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "Error al eliminar las alertas (%s / %s)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "Seleccione una alerta SNMP" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." @@ -18174,8 +18340,8 @@ msgstr "" "(IP) SNMP, Valor único, cada OIDs/Datos personalizado." #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18188,30 +18354,34 @@ msgid "SNMP Alerts to be deleted" msgstr "Alertas SNMP para añadir" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "No se ha encontrado la alerta SNMP." -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "Alertas actualizadas correctamente (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "No se han podido actualizar las alertas (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "Se debe modificar al menos un parámetro" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "Alertas SNMP para editar" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "Valor/OID personalizado" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18219,38 +18389,38 @@ msgstr "Valor/OID personalizado" msgid "SNMP Agent" msgstr "Agente SNMP" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "Valor único" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "Número mínimo de alertas" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "Número máximo de alertas" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "Otros valores" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "Posición" @@ -18262,15 +18432,15 @@ msgstr "Módulos sin usar" msgid "Modules used" msgstr "Módulos usados" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "Alertas borradas correctamente" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "Error al borrar las alertas en estos módulos" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "Módulos de agentes en la política" @@ -18281,23 +18451,25 @@ msgstr "Mínimo dinámico" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "Comunidad SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "SNMP OID" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18307,55 +18479,55 @@ msgstr "IP objetivo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "Versión SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "Autentificación de usuario" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "Autentificación de contraseña" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18363,24 +18535,24 @@ msgstr "Método de privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "DES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "AES" @@ -18388,11 +18560,11 @@ msgstr "AES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18400,47 +18572,47 @@ msgstr "Conexión privada" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "Método de autentificación" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "MD5" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "SHA" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18448,30 +18620,30 @@ msgstr "Nivel de seguridad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "Método sin autentificación ni privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "Método con autentificación y sin privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "Método con autentificación y privacidad" @@ -18479,13 +18651,13 @@ msgstr "Método con autentificación y privacidad" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 -#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573 +#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "Sin asignar" @@ -18495,15 +18667,15 @@ msgstr "Sin asignar" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "Usuario" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "Servidor de exportación" @@ -18534,16 +18706,16 @@ msgid "Linked" msgstr "Enlazado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "Desenlazado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "Descartar eventos desconocidos" @@ -18555,7 +18727,7 @@ msgstr "" "El módulo todavía almacena datos pero las alertas y los eventos se detendrán." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "Tiempo de espera" @@ -18566,15 +18738,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "Segundos que el agente tendrá que esperar para la ejecución del módulo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "Enviar TCP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "Recibir TCP" @@ -18606,13 +18778,13 @@ msgstr "Campo número" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "Plugin" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18621,7 +18793,7 @@ msgstr "Plugin" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18629,33 +18801,33 @@ msgstr "Comando" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "Credencial" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "Heredado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "Linux" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "Windows" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "SO objetivo" @@ -18680,11 +18852,11 @@ msgstr "La comprobación de seguridad está OK." msgid "Security check is fail." msgstr "La comprobación de seguridad ha fallado." -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "Información extendida:" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "Cambios:" @@ -18695,7 +18867,7 @@ msgstr "ACL de grupo" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "Condición" @@ -18734,11 +18906,11 @@ msgstr "Nombre de la alerta" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "Disparada por última vez" @@ -18747,9 +18919,9 @@ msgstr "Disparada por última vez" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327 -#: ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "Alerta desactivada" @@ -18785,26 +18957,26 @@ msgstr "Montador de alertas de inventario" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 -#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933 -#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044 -#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227 -#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713 -#: ../../include/functions_html.php:6714 +#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944 +#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055 +#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235 +#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741 +#: ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "Lista" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "Creador" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "No disponible" @@ -18907,7 +19079,7 @@ msgstr "Editar elementos" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "Borrar elementos" @@ -18962,7 +19134,7 @@ msgstr "Agentes para almacenar datos" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "Manual" @@ -19057,61 +19229,6 @@ msgstr "Alerta de servicio en desconocido" msgid "S.L.A. critical service alert" msgstr "Alerta de servicio en crítico de S.L.A" -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "OK" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19137,8 +19254,8 @@ msgstr "Servicio no válido" #: ../../enterprise/include/functions_reporting.php:3500 #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "Dinámico" @@ -19336,7 +19453,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." +"tagente_datos_string). Monthly partitions." msgstr "" "Crear automáticamente particiones en archivos específicos de la base de datos " "IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales." @@ -19553,12 +19670,12 @@ msgid "Yes without changing status" msgstr "Sí, sin cambiar estado" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "Reenviar los traps SNMP al agente (si existe)" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "Utilizar el sistema ACL Enterprise" @@ -19592,7 +19709,7 @@ msgid "Metaconsole DB password" msgstr "Contraseña BD Metaconsola" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "Activar el colector de logs" @@ -19717,7 +19834,7 @@ msgid "Port of ElasticSearch server" msgstr "Puerto del servidor ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "Días para purgar información antigua" @@ -19749,21 +19866,21 @@ msgstr "Función PHP" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "Correo electrónico" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "Perfiles seleccionados" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "Grupos seleccionados" @@ -19782,15 +19899,15 @@ msgstr "Atributos LDAP" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19798,19 +19915,20 @@ msgstr "OP" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "Perfiles" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "Seleccionar perfil" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "Agregar nuevos permisos" @@ -19823,57 +19941,63 @@ msgid "Change timezone visual" msgstr "Cambiar visualización de zona horaria" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "Los usuarios nuevos podrán conectarse en los nodos." #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "Grupos AD" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "Búsqueda recursiva de grupos" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "Selecciona un perfil de la lista de perfiles" -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "Seleccione un grupo de la lista de grupos" -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "Dirección de MySQL" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "Ruta de SimpleSAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'." -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "SAML de origen" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "Nombre authsource, por ejemplo: 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "Atribito de ID de usuario SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "Atributo de correo SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" @@ -19881,11 +20005,11 @@ msgstr "" "Campo SAML donde buscar el correo electrónico del usuario (mientras auto crear " "usuarios remotos esté activado)" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "Atributo de nombre de grupo SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" @@ -19893,23 +20017,23 @@ msgstr "" "Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios " "remotos esté activado)" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "Atributo simple/atributo con valores múltiples" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "Atributo de perfiles y etiquetas SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "Atributo de perfil" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "Atributo de etiqueta" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "Prefijo de perfiles y etiquetas SAML" @@ -19987,7 +20111,7 @@ msgstr "Añadir elemento personalizado al perfil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "Nombre del perfil" @@ -20115,10 +20239,12 @@ msgstr "Grupo objetivo" #: ../../godmode/reporting/create_container.php:746 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "Etiqueta" @@ -20138,8 +20264,8 @@ msgstr "Filtro por etiqueta" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "Seleccionar todo" @@ -20317,15 +20443,18 @@ msgstr "Asistente de plantillas" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "Consola visual" @@ -20427,7 +20556,7 @@ msgstr "Editor de plantillas gráficas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "No actualizado; nombre en blanco" @@ -20446,8 +20575,9 @@ msgstr "Error al actualizar la plantilla" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "Anchura" @@ -20456,18 +20586,18 @@ msgstr "Anchura" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "Altura" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "1 hora" @@ -20482,19 +20612,19 @@ msgid "3 hours" msgstr "3 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "6 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "12 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20515,9 +20645,9 @@ msgid "Last week" msgstr "Última semana" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20533,12 +20663,12 @@ msgid "2 months" msgstr "2 meses" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "6 meses" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "1 año" @@ -20568,7 +20698,7 @@ msgstr "1 año" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20601,7 +20731,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "Excepción" @@ -20650,7 +20780,7 @@ msgstr "Último valor" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20669,13 +20799,13 @@ msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "Suma" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "Tasa" @@ -20685,25 +20815,25 @@ msgstr "Tasa" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "Borrar seleccionado(s)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "Agrupar por agente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "Mostrar en la misma fila" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "Mostrar un módulo por fila con todas sus operaciones" @@ -20711,10 +20841,10 @@ msgstr "Mostrar un módulo por fila con todas sus operaciones" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "Orden" @@ -20724,9 +20854,9 @@ msgstr "Orden" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "Ascendente" @@ -20736,9 +20866,9 @@ msgstr "Ascendente" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "Descendente" @@ -20746,30 +20876,30 @@ msgstr "Descendente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "Por nombre de agente" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "Cantidad (n)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "Mostrar" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "Todo" @@ -20785,22 +20915,22 @@ msgstr "<" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "Mal" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "Mostrar gráfico" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "Mostrar resumen" @@ -20817,7 +20947,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "Mostrar elemento en formato apaisado (solo PDF)" @@ -20825,7 +20955,7 @@ msgstr "Mostrar elemento en formato apaisado (solo PDF)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "Salto de página después del elemento (solo PDF)" @@ -20838,13 +20968,13 @@ msgid "Page orientation" msgstr "Orientación de página" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20880,20 +21010,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "Mostrar la dirección en lugar del nombre del módulo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "Mostrar la dirección principal del agente" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "Consulta SQL" @@ -20901,14 +21031,14 @@ msgstr "Consulta SQL" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "Modo conmutación" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20919,72 +21049,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "Tipo de conmutación" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "Conmutación normal" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "Conmutación simple" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "Representar en gráfica" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "Media, máx. y mín." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "Solo máx." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "Solo mín." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "Solo media" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "Comparación de tiempo (solapado)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "Gráfica a resolución completa (TIP)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -20994,15 +21124,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "Mostrar umbral" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "Percentil" @@ -21017,19 +21147,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "Mostrar el resumen del grupo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "Estado del evento" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "Gráficos de eventos" @@ -21068,37 +21198,37 @@ msgstr "Período de proyección" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "Cabecera serializada" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "El carácter separador es |" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "Separador de campo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "Separador para diferentes campos en la cadena de texto serializada" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "Separador de línea" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text chain" msgstr "" @@ -21107,13 +21237,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "Descomprimir módulo" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "Utilizar datos de módulos descomprimidos" @@ -21193,7 +21323,7 @@ msgstr "SLA inverso" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "Elementos de SLA ordenados por valor rellenado" @@ -21205,11 +21335,11 @@ msgstr "Mostrar solo los SLA incorrectos" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21239,17 +21369,17 @@ msgstr "Editar plantilla" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "Editor de elementos" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "Listado de elementos" @@ -21263,9 +21393,9 @@ msgstr "Lista de plantillas" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "Reportes personalizados" @@ -21342,12 +21472,12 @@ msgid "Set start and end date" msgstr "Fije la fecha de inicio y conclusión" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "Marca temporal desde:" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "Marca temporal hasta:" @@ -21390,9 +21520,9 @@ msgstr "Editor de elementos de plantilla de gráfico" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "Peso" @@ -21404,7 +21534,7 @@ msgstr "Peso" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "Coincidencia exacta" @@ -21497,18 +21627,18 @@ msgstr "No se han hecho cambios" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "Acción completada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "No se pudo completar la acción" @@ -21543,13 +21673,13 @@ msgstr "Seleccionar servidor" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "Metaconsola local" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21562,7 +21692,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: if " "you use this field with \"Module exact match\" enabled then this field has to " @@ -21614,31 +21744,31 @@ msgstr "Marcar si no quieres que muestre elementos sin datos" #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "Gráfica personalizada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "Número máximo de elementos" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "Plantilla SQL personalizada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21652,158 +21782,158 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "" "El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "Agrupar por" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "Media" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "Seleccionar campos a mostrar" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "Tiempo total" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "Tiempo en fallo" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "Tiempo en estado OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "Tiempo en estado de advertencia" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "Tiempo en estado desconocido" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "Tiempo de módulo no inicializado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "Tiempo de parada" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "

Seleccione campos a mostrar

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "Comprobaciones totales" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "Comprobaciones fallidas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "Comprobaciones en estado OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "Comprobaciones desconocidas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "

Seleccione campos a mostrar

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "Valor máximo del agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "Valores mínimos de agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "Mostrar resumen" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "Altura (gráficos dinámicos)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "Base de datos histórica de consultas" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "Modo de prioridad" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "Modo de prioridad ok" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "Modo de prioridad desconocido" @@ -21839,22 +21969,22 @@ msgstr "" "los agentes." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "Calcular intervalos personalizados" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "Usar notación de prefijo" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "Intervalos de tiempo transcurrido" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise calculations" msgstr "" @@ -21862,17 +21992,17 @@ msgstr "" "precisos" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "Solo tabla" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "Solo gráfico" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "Gráfico y tabla" @@ -21893,28 +22023,28 @@ msgstr "Mostrar IP no asignadas a un agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "Crear elemento" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "Actualizar elemento" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "Valor mínimo para el SLA" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "Valor máximo para el SLA" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "Límite (%) para el SLA" @@ -21949,13 +22079,13 @@ msgstr "Nombre de módulo literal forzado" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "Debe seleccionar primero un agente" @@ -21970,17 +22100,17 @@ msgstr "El nombre y el límite SLA no deberían estar vacíos." #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 ../../godmode/setup/os.builder.php:77 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 ../../godmode/setup/os.builder.php:77 #: ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "Icono" @@ -22047,7 +22177,7 @@ msgstr "Bajar" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "Sin elementos" @@ -22111,14 +22241,14 @@ msgstr "Crear nueva tarea de la consola" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -22144,10 +22274,10 @@ msgstr "Actualizar tarea de la consola" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "Parámetros" @@ -22269,7 +22399,7 @@ msgstr "Estado del nodo SQL" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "SSH" @@ -22362,7 +22492,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "Estado de agente" @@ -22500,21 +22630,21 @@ msgid "Default value: " msgstr "Valor predeterminado: " #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "Servidor de datos" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "Servidor de red" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "Servidor de alertas" @@ -22532,59 +22662,59 @@ msgstr "Servidor de alertas" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "Servidor Discovery" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "Servidor de predicción" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "Servidor de plugins" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "Consola SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "Servidor SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "Servidor web" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "Servidor de inventario" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "Servidor de exportación" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "Servidor de eventos" @@ -22593,19 +22723,19 @@ msgid "ICMP server" msgstr "Servidor ICPM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "Servidor WUX" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "Servidor NCM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "Servidor WMI" @@ -23523,7 +23653,7 @@ msgid "Delete remote conf server files" msgstr "Eliminar archivos de servidor de configuración remotos" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "Borrar el archivo de configuración remota" @@ -23582,8 +23712,8 @@ msgstr "Servidor Satélite" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "Satélite" @@ -23596,16 +23726,16 @@ msgstr "Informe a crear" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "Enviar a emails (separados por comas)" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23613,7 +23743,7 @@ msgstr "Asunto" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23711,8 +23841,8 @@ msgstr "Anualmente" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23731,7 +23861,7 @@ msgstr "" "algunos archivos adjuntos." #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "Saludos" @@ -23742,22 +23872,22 @@ msgstr "Hay un archivo CSV de los logs adjunto a este correo electrónico" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "Generado el" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "Gracias por tu tiempo." #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "Saludos cordiales, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23844,8 +23974,8 @@ msgstr "Forzar ejecución" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23868,7 +23998,7 @@ msgstr "Informe" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "Ruta" @@ -23883,9 +24013,9 @@ msgstr "Tarea deshabilitada" #: ../../enterprise/tools/ipam/ipam_list.php:784 #: ../../enterprise/tools/ipam/ipam_ajax.php:505 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 ../../include/functions_treeview.php:663 -#: ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../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" @@ -23915,17 +24045,17 @@ msgid "avg" msgstr "media" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "máx" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "mín" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "suma" @@ -24081,11 +24211,11 @@ msgstr "Superred" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "Red" @@ -24136,9 +24266,9 @@ msgstr "Opción desconocida" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "Campo personalizado" @@ -24170,7 +24300,7 @@ msgstr "Argumento del script" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "Actualizar acción" @@ -24244,13 +24374,13 @@ msgstr "Hora global: " #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 ../../include/graphs/fgraph.php:879 -#: ../../include/functions_ui.php:7855 +#: ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -24264,8 +24394,8 @@ msgstr "Regexp de captura" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "Media" @@ -24278,51 +24408,51 @@ msgid "Curl Error: " msgstr "Error curl: " #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "Nuevo filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "Actualizar filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "Nombre del filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "Guardar en el grupo" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "Sobrescribir filtro" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "El nombre del filtro no se puede dejar en blanco." #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "El nombre del filtro ya está en uso" @@ -24373,8 +24503,8 @@ 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_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "Informe de %s automatizado para informe definido por el usuario" @@ -24386,24 +24516,24 @@ msgstr "Informe de %s automatizado para informe definido por el usuario" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "Máximo" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "Mínimo" @@ -24415,53 +24545,53 @@ msgstr "Mínimo" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "Tiempo transcurrido" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRÍTICO" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ADVERTENCIA" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s en %s : DESCONOCIDO" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "%s en %s : No iniciado" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s en %s : ALERTA DISPARADA" @@ -24477,7 +24607,7 @@ msgstr "Contenido" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24488,7 +24618,7 @@ msgstr "Para" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24573,7 +24703,7 @@ msgstr "" #: ../../enterprise/include/functions_backup.php:425 msgid "Open a root shell in your system located at " -msgstr "Abre un root shell en tu sistema localizado en " +msgstr "Abra un Shell raíz en su sistema localizado en " #: ../../enterprise/include/functions_backup.php:429 msgid "Connect to MySQL database using the following command" @@ -24626,7 +24756,7 @@ msgid "Trap status agent recovered" msgstr "Estado del trap de agente recuperado" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "Error al recuperar elementos de servicio: " @@ -24654,11 +24784,16 @@ msgstr "No hay ninguna meta consola definida." #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "Imagen" @@ -24677,8 +24812,8 @@ msgstr "Informe de los eventos de un módulo" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "Disponibilidad" @@ -24697,7 +24832,7 @@ msgid "Maximum value" msgstr "Valor máximo" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "Valor mínimo del agente" @@ -24716,7 +24851,8 @@ msgstr "Inventario de agentes" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "Remoto" @@ -24739,7 +24875,7 @@ msgid "Agent groups" msgstr "Grupos de agentes" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "Grupos secundarios de agentes" @@ -24754,7 +24890,7 @@ msgid "Prediction date" msgstr "Fecha de predicción" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "Gráfico de proyección" @@ -24775,19 +24911,19 @@ msgid "Top %d" msgstr "Primeros %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "Informe del grupo" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "Agentes totales" @@ -24797,17 +24933,17 @@ msgstr "Agentes desconocidos" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "Módulos totales" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "Alertas definidas" @@ -24815,18 +24951,21 @@ msgstr "Alertas definidas" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "Alertas disparadas" @@ -24863,8 +25002,8 @@ msgstr "Gráfico circular de SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "Sumatorio" @@ -24876,7 +25015,7 @@ msgid "Minimum Value" msgstr "Valor mínimo" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "Mínimo" @@ -24891,37 +25030,37 @@ msgstr "Valor máximo" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "Incremento" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "Desde datos" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "hasta datos" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "Incremento negativo: " #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "Incremento positivo: " #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "Incremento neutral: " @@ -24930,7 +25069,7 @@ msgstr "Incremento neutral: " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "Valor medio" @@ -24941,7 +25080,7 @@ msgstr "Media" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "Informe de monitores" @@ -25058,8 +25197,8 @@ msgstr "Estado " #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "Fallo" @@ -25240,7 +25379,7 @@ msgstr "Estado del día" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "Mes" @@ -25345,7 +25484,7 @@ msgstr "Redes IPAM" #: ../../enterprise/include/functions_reporting_csv.php:1984 #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "ID de agente" @@ -25357,16 +25496,16 @@ msgstr "ID de agente" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "Comentarios" @@ -25399,7 +25538,7 @@ msgstr "Tiempo total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "Tiempo OK" @@ -25410,7 +25549,7 @@ msgstr "Tiempo de error" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "Tiempo desconocido" @@ -25421,7 +25560,7 @@ msgid "Time Not Init" msgstr "Tiempo no iniciado" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "Tiempo de parada planificada" @@ -25434,7 +25573,7 @@ msgstr "Comprobaciones totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "Comprobaciones OK" @@ -25601,17 +25740,17 @@ msgid "Custom Graph" msgstr "Gráfica personalizada" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "Informe de alertas de módulo" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "Informe de alertas de agente" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "Informe de alertas de grupo" @@ -25630,20 +25769,20 @@ msgstr "Log de informes de eventos" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "Informe de permisos" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25652,15 +25791,15 @@ msgstr "ID usuario" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "Nombre completo" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "Permisos" @@ -25713,23 +25852,23 @@ msgid "Agent/module status" msgstr "Estado del agente/módulo" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "Última vez" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "Conexiones Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "IP origen" @@ -25739,8 +25878,8 @@ msgid "Destination IP" msgstr "IP de destino" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25811,6 +25950,8 @@ msgid "Public Key Authentication Failed" msgstr "Error en la autenticación de clave pública" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "Conexion fallida" @@ -25823,7 +25964,7 @@ msgid "Register new node" msgstr "Registrar nuevo nodo" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "Actualizar nodo" @@ -25886,7 +26027,7 @@ msgstr "Acceso no autorizado" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -25943,27 +26084,27 @@ msgstr "Resumen del rendimiento de la red" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "Tarea configurada." #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "Error del asistente. No puede configurar la tarea." @@ -26049,8 +26190,8 @@ msgstr "Aplicación" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "Actualizar y continuar" @@ -26072,7 +26213,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -26110,8 +26251,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "Definido" @@ -26138,7 +26279,7 @@ msgstr "Cifrar contraseñas" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26416,16 +26557,16 @@ msgstr "Escaneo de red programado. Puede ver el progreso en %s." #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "No hay credenciales disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "Gestionar credenciales" @@ -26438,7 +26579,7 @@ msgid "Scan from" msgstr "Escanear desde" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "Credenciales con los que probar" @@ -26541,13 +26682,14 @@ msgstr "Programado correctamente" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26786,8 +26928,8 @@ msgstr "Plantilla actualizada" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "Error: %s" @@ -27237,7 +27379,7 @@ msgid "Log monitoring is disabled. %s" msgstr "La monitorización de logs está desactivada. %s" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "Añadir fuente de logs" @@ -27245,7 +27387,7 @@ msgstr "Añadir fuente de logs" msgid "Source name" msgstr "Nombre de la fuente" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "Actualizar fuente del log" @@ -27556,90 +27698,90 @@ msgid "SAP System Number" msgstr "Número del sistema SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "Credenciales SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "Opcional" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "Licencia SAP" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "Inicio de sesión SAP correcto" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "Volcados SAP" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "Lista de entradas de bloqueo SAP" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "Trabajos SAP cancelados" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "Entradas SAP en grupo erróneas" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "SAP IDOC erróneo" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "SAP IDOC OK" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "WP SAP sin reinicio activo" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "WP SAP parado" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "Media de tiempo de respuesta de SAPGUI" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "Usuarios conectados en el diálogo" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "TRFC en error" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "QRFC en error SMQ2" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "Número de WPs de actualización en error" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " @@ -27648,40 +27790,40 @@ msgstr "" "El módulo 180 debe personalizarse antes de usarse, use las opciones avanzadas " "para definir el módulo siguiendo la documentación:
%s" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "Módulos disponibles" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "Añadir monitores" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "Eliminar monitores" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "Módulos seleccionados" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "Defina sus módulos SAP personalizados." -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "Configuración de módulos avanzada" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "Definiciones de módulos personalizadas" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -28242,7 +28384,7 @@ msgid "Remove item" msgstr "Eliminar elemento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "Reiniciar" @@ -28377,9 +28519,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "Campos usados en la ejecución cuando la alerta es disparada" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "Detalle de alertas" @@ -28407,9 +28550,9 @@ msgstr "Coincidencias" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "Disparada" @@ -28459,7 +28602,7 @@ msgstr "¿Está seguro de que quiere poner la alerta en suspensión?" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "Modo standby activado" @@ -28526,7 +28669,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "Metaconsola" @@ -28576,7 +28719,7 @@ msgid "Please restore your backups" msgstr "Restaure sus copias de seguridad" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "Consulta" @@ -28586,8 +28729,8 @@ msgid "Table" msgstr "Tabla" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "Información" @@ -28618,8 +28761,8 @@ msgstr "El proceso se ha completado correctamente" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "Correcto" @@ -28794,12 +28937,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28838,7 +28981,7 @@ msgid "Missed id parameter." msgstr "Parámetro id omitido." #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "No hay información adicional que mostrar" @@ -28854,11 +28997,11 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "¿Desea realizar una restauración de base de datos?" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "Vista de árbol por etiquetas" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " @@ -28869,14 +29012,14 @@ msgstr "" "datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la " "frecuencia de purga." -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" "Problemas con la fecha de purga de eventos y la fecha de traspaso de " "información a histórico." -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller than " @@ -28886,7 +29029,7 @@ msgstr "" "perderán. Recomendamos poner una fecha de purga mayor a la del traspaso de " "datos a histórico." -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" "Problemas con la fecha de purga y la fecha de traspaso de información al " @@ -28939,7 +29082,7 @@ msgstr "Cumplimiento del SLA" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "No iniciado" @@ -28985,7 +29128,7 @@ msgstr "Log" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "No hay SLA definidos" @@ -28993,7 +29136,7 @@ msgstr "No hay SLA definidos" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "Inverso" @@ -29042,7 +29185,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "Desconocido" @@ -29050,7 +29193,7 @@ msgstr "Desconocido" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "Paradas planificadas" @@ -29084,8 +29227,8 @@ msgstr "% tiempo ok" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "24/7" @@ -29108,17 +29251,17 @@ msgid "Checks Critical" msgstr "Comprobaciones Crítico" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "Comprobaciones Advertencia" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "No hay Agentes/Módulos definidos" @@ -29142,51 +29285,51 @@ msgid "Scheduled shutdow" msgstr "Parada planeada" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "Gráficos de agentes (%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "Gráfico de agente(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "No hay datos para las condiciones seleccionadas" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "Editor de plantillas" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "ID Informe" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "Enviar por correo electrónico" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "Enviar por correo electrónico " -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "Gráfico simple de línea base" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "Cambios en la configuración" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "No se han detectado capacidades de NCM" @@ -29351,40 +29494,52 @@ msgstr "Peso OK" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "Inexistente. Este elemento debería eliminarse." #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "El elemento no afecta al peso del servicio porque está deshabilitado." #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "El elemento dinámico (%d) '%s' no coincide con ningún objetivo" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "El elemento dinámico (%d) '%s' provoca un error: %s" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "Elemento dinámico" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "agentes como \"%s\"" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "módulos como \"%s\"" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "NO INICIADO" @@ -29480,46 +29635,46 @@ msgstr "La contraseña tiene que contener símbolos." msgid "Invalid old password" msgstr "Contraseña antigua no válida" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "Las contraseñas no coinciden." -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "La contraseña está vacía." -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Error de autentificación" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "Error al cargar los datos" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "Activación de doble autenticación" @@ -29567,10 +29722,11 @@ msgid "Invalid plugin definition" msgstr "Definición de plugin no válida" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "Probar" @@ -29662,7 +29818,7 @@ msgstr "Recursividad del grupo de eventos" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "Número" @@ -30392,22 +30548,22 @@ msgstr "La política ya se ha definido: \"%s\"" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439 msgid "Event status" msgstr "Estado del evento" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "Validación del usuario" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "Fecha desde" @@ -30416,15 +30572,15 @@ msgid "Date to" msgstr "Fecha hasta" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "Repetido" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "Eventos de la alerta" @@ -30433,15 +30589,15 @@ msgid "Id source events" msgstr "Eventos fuente de ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "Máx. horas de antiguedad" @@ -30451,14 +30607,14 @@ msgid "More than 5 tags" msgstr "Más de 5 etiquetas" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "Eventos con las siguientes etiquetas" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "Eventos sin las siguientes etiquetas" @@ -30530,8 +30686,8 @@ msgid "Subscription" msgstr "Suscripción" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "El soporte caduca" @@ -30553,7 +30709,7 @@ msgstr "Siguiente IP disponible" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30561,12 +30717,12 @@ msgstr "Detalles" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "Forzar" @@ -30973,7 +31129,7 @@ msgstr "Copia de" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "Vista de captura de pantalla" @@ -30984,9 +31140,11 @@ msgstr "No se han podido obtener datos del módulo de inventario." #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "Cargando…" @@ -31038,8 +31196,8 @@ msgstr "Mostrar alertas" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 -#: ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "Veces" @@ -31047,10 +31205,10 @@ msgstr "Veces" #: ../../godmode/alerts/alert_list.list.php:651 #: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "Alerta no disparada" @@ -31084,7 +31242,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptados)(Desvinculados)" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "Módulo no iniciado" @@ -31098,22 +31256,22 @@ msgstr "Módulo no iniciado" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "Último estado" @@ -31123,114 +31281,115 @@ msgid "Tag view" msgstr "Visor de etiquetas" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264 +#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "Vistas" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "Estado del monitor" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "Mostrar solo etiquetas en uso" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "Módulo del servidor de datos" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "Módulo del servidor de red" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "Módulo del servidor de plugin" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "Módulo del servidor WMI" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "Módulo del servidor de predicción" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "Módulo del servidor web" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "Tipo de servidor" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "Solo habilitados" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "Solo deshabilitados" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "Mostrar módulos..." #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "Tipo de dato" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "Campos personalizados de agente" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "No hay parámetros de búsqueda" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "Configuración remota" @@ -31238,67 +31397,68 @@ msgstr "Configuración remota" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "Gráfico" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "Advertencia" #: ../../enterprise/operation/agentes/tag_view.php:1083 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "No iniciado" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "%d módulos totales" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "%d módulos en estado normal" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "%d módulos en estado crítico" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "%d módulos en estado de advertencia" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "%d módulos en estado desconocido" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "%d módulos en estado no iniciado" @@ -31309,7 +31469,7 @@ msgid "Main IP" msgstr "IP principal" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Último contacto remoto" @@ -31320,24 +31480,24 @@ msgid "Monitors down" msgstr "Monitores caídos" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertas disparadas" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "Analizador de ruta de URL" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "Consola UX" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "Consola WUX" @@ -31437,10 +31597,10 @@ msgid "View all stats" msgstr "Ver todas las estadísticas" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "Mostrar más" @@ -31450,7 +31610,7 @@ msgstr "Transacción no válida" #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "Interfaz de ElasticSearch" @@ -31469,50 +31629,50 @@ msgstr "" "está haciendo con exactitud. \n" "Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "Fuentes de log" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "No compatible con sistemas Windows" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "Todas las palabras" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "Cualquier palabra" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "Modo de búsqueda" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "Contexto completo" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "Seleccionar fechas por rango" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "personalizado" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31523,8 +31683,8 @@ msgstr "personalizado" msgid "%s hours" msgstr "%s horas" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31532,81 +31692,81 @@ msgstr "%s horas" msgid "%s days" msgstr "%s días" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "1 semana" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1 mes" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "Fecha de inicio" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "Fecha final" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "Editar fuentes" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "Mostrar entradas de log" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "Resultados de logs de gráficas" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "Modo de visualización" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "Usar modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "Crear nuevo modelo" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "Barras horizontales" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "Barras verticales" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "Tipo de gráfica" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "Opciones avanzadas " -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send the " "csv file" @@ -31614,11 +31774,11 @@ msgstr "" "El límite máximo de filas se ha superado. Añada un correo electrónico para " "enviar el archivo CSV" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "dirección de correo electrónico" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." @@ -31626,27 +31786,27 @@ msgstr "" "ADVERTENCIA: Si el tamaño del correo electrónico supera el límite de tamaño de " "archivo adjunto, el archivo se guardará en la carpeta de adjuntos local." -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "La fecha de inicio no puede ser posterior a la fecha de finalización." -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "Añadir nuevo modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "Editar modelo de captura" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "Error al crear nuevo modelo" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "Error al borrar modelo" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "Error al actualizar modelo" @@ -31659,8 +31819,8 @@ msgid "AWS view" msgstr "Vista AWS" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "Vista SAP" @@ -31797,7 +31957,7 @@ msgstr "Definición de elemento(s)" msgid "Add selected" msgstr "Añadir seleccionado" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." @@ -31805,49 +31965,49 @@ msgstr "" "Los pesos configurados son comunes a todos los elementos añadidos al servicio. " "Si desea personalizarlos, edite el servicio." -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "Resumen de elementos de servicio" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "Peso crítico" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "Peso de advertencia" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "Peso desconocido" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "Peso normal" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "Servicios seleccionados" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "Crear servicio" @@ -31969,10 +32129,10 @@ msgid "Show sunburst" msgstr "Mostrar sunburst" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "Leyenda" @@ -32011,23 +32171,24 @@ msgstr "Crear servicio" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "No se encontraron datos" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "Grupos encontrados" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "Módulo: " @@ -32060,7 +32221,7 @@ msgstr "Error al forzar el servicio" #: ../../enterprise/operation/services/services.list.php:309 #: ../../enterprise/operation/services/services.table_services.php:277 msgid "Show only root services" -msgstr "Mostrar solo los servicios root" +msgstr "Mostrar solo los servicios raíz" #: ../../enterprise/operation/services/services.list.php:628 msgid "Status graph" @@ -32431,8 +32592,8 @@ msgstr "Borrar superred" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "Mostrar estadísticas" @@ -32496,7 +32657,7 @@ msgstr "Eliminar red" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "Interfaces" @@ -32521,7 +32682,7 @@ msgid "Please enter adress, for search vlans" msgstr "Añada una dirección para buscar vlans" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "Contexto" @@ -32564,13 +32725,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "El nombre de red ya existe en la superred %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "No se pudo actualizar" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "Actualizado correctamente" @@ -32586,8 +32747,8 @@ msgstr "No pudo ser creado. Nombre en blanco" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "No se ha podido actualizar. Error al actualizar los datos." @@ -32657,7 +32818,7 @@ msgid "leased expiration" msgstr "Concesión caducada" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "MAC" @@ -32679,7 +32840,7 @@ msgid "Executing command: %s" msgstr "Ejecutar comando: %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "Ejecutar de nuevo" @@ -32927,8 +33088,8 @@ msgid "Click on the file below to begin." msgstr "Haz clic en el archivo de abajo para comenzar." #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "Esta acción actualizará esta consola a la versión " @@ -32937,27 +33098,27 @@ msgid "This action will upgrade all servers to version " msgstr "Esta acción actualizará todos los servidores a la versión " #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "Actualizando" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "¿Estás seguro de que quieres realizar esta acción?" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "No hay actualizaciones disponibles" #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "Buscando actualizaciones..." #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "Paquete" @@ -33036,16 +33197,16 @@ msgstr "" "a instalar a menos que se permitan parches. Habilite los parches en la " "configuración del administrador de actualizaciones." -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "Regístrese para Warp Update" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "Mantener la consola %s actualizada con las últimas actualizaciones." -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -33063,24 +33224,24 @@ msgstr "" " base de datos en cualquier momento desde las opciones de Warp " "update." -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "Visite nuestra política de privacidad para obtener más información" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "Su email" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "¡OK!" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "¿Está seguro de que no quiere usar Warp update?" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." @@ -33088,11 +33249,11 @@ msgstr "" "Deberá actualizar su sistema manualmente a través del código fuente o de los " "paquetes RPM para estar al día con las últimas actualizaciones." -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "Suscripción incorrecta" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "Pandora FMS se suscribió correctamente con UID: " @@ -33100,25 +33261,25 @@ msgstr "Pandora FMS se suscribió correctamente con UID: " msgid "The latest version of package installed is" msgstr "La última versión instalada del paquete es:" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "Actualizar a la siguiente versión" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "Actualizar a la última versión" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "Actualización para" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "Error al actualizar a " -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "Error al actualizar" @@ -33147,25 +33308,25 @@ msgstr "Error al crear un directorio temporal." msgid "Failed storing uploaded file." msgstr "Error al almacenar el archivo cargado." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "Extensión no válida. El paquete debe estar en formato \"%s\" o \"%s\"." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "Error al cargar el archivo." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "Las firmas no coinciden." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "La actualización %s instalado correctamente." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "Error al actualizar: %s" @@ -33237,6 +33398,7 @@ msgid "Matrix events" msgstr "Eventos matriz" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "El motor WebService aún no se ha iniciado, consulte la documentación." @@ -33473,7 +33635,7 @@ msgstr "Registro de recursos" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "Recursos" @@ -33529,8 +33691,8 @@ msgid "%s Console URL" msgstr "%s URL de la consola" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33589,7 +33751,7 @@ msgid "Show URL" msgstr "Mostrar URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "Comprobación del esquema de la BD" @@ -33774,84 +33936,84 @@ msgstr "Ejecutar SQL" msgid "Error querying database node" msgstr "Error al consultar el nodo de la base de datos" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "Mostrar el estado del módulo" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "Mostrar datos del módulo" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "Información que debe mostrarse" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "Agentes/Módulos" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "Vista de agente/módulo" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "Filtros " -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta." -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "No hay agentes con módulos" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "Módulos anteriores" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "Más módulos" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "Cuadro naranja cuando el módulo ha disparado alertas" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "Celda roja cuando el módulo está en estado crítico" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "Cuadro amarillo cuando el módulo está en estado advertencia" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "Cuadro verde cuando el módulo está en estado normal" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "Cuadro gris cuando el módulo está en estado desconocido" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "Celda azul cuando el módulo está en estado \"no iniciado\"" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "Vista de Agentes/Módulos" @@ -33948,7 +34110,7 @@ msgid "Public link" msgstr "Enlace público" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "Última modificación" @@ -33957,8 +34119,8 @@ msgid "Copy to clipboard" msgstr "Copiar al portapapeles" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "No hay elementos" @@ -34077,7 +34239,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "Guardar agente (%s), módulo (%s) datos XML" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "Gráficas en tiempo real" @@ -34124,12 +34286,12 @@ msgstr "Intervalo de actualización" msgid "Incremental" msgstr "Incremental" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "Limpiar gráfica" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "Usar esta OID" @@ -34218,8 +34380,8 @@ msgid "No modules for this profile" msgstr "No existen módulos para este perfil" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "Añadir módulos" @@ -34297,15 +34459,15 @@ msgid "You can find more information at:" msgstr "Encontrará más información en:" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "Introduzca un valor porcentual positivo" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "Cadena SNMP Enterprise" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "Nombre del OID" @@ -34313,23 +34475,23 @@ msgstr "Nombre del OID" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "Espacio de nombres" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "Actualización de componente de red" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "Crear componente de red" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "Gestión remota de componentes" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are read " @@ -34338,36 +34500,36 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "No se ha podido crear porque el componente existe" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" "Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las coincidencias." -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "Máx/Mín" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "No hay componentes de red definidos" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "Crear un componente de red nuevo" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "Crear un componente de plugin nuevo" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "Crear un componente WMI nuevo" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "Crear un nuevo componente de wizard" @@ -34482,6 +34644,7 @@ msgstr "Dejar en blanco para los módulos de inventario LOCALES" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "Formato" @@ -34565,7 +34728,7 @@ msgid "Database size stats" msgstr "Tamaño de estadísticas de la base de datos" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "Total de eventos" @@ -34622,7 +34785,7 @@ msgid "Update group" msgstr "Actualizar grupo" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "Crear grupo" @@ -34631,46 +34794,46 @@ msgstr "Crear grupo" msgid "Manage agents group" msgstr "Administrar grupo de agentes" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "No tienes acceso al padre" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "Contraseña del grupo" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "Habilitar el uso de alertas en este grupo." -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "Propagar ACL" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "" "Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen " "de él." -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "Contacto" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "Información de contacto accesible a través de _groupcontact_ macro" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "Información accesible a través de _group_other_ macro" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "Máximo de agentes permitidos" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado." @@ -34689,8 +34852,8 @@ msgid "Groups defined in %s" msgstr "Grupos definidos en %s" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "Almacén de credenciales" @@ -34715,32 +34878,32 @@ msgid "There was a problem creating group" msgstr "Ha habido un problema al crear el grupo." #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "Cada grupo debe tener un nombre diferente" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "El grupo debe tener un nombre" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "Grupo actualizado correctamente" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "Ha habido un problema al modificar el grupo" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34748,40 +34911,40 @@ msgstr "" "El grupo no se ha eliminado de la Metaconsola por un error en la base de datos " "de los nodos" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "El grupo %s se ha borrado de los nodos" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "Grupo eliminado correctamente" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "Ha habido un problema al borrar el grupo." -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "El grupo no está vacío. Está en uso en %s." -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "No hay grupos definidos" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "Editar o borrar grupos puede causar problemas con la sincronización." -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos." -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado" @@ -34829,24 +34992,20 @@ msgstr "Crear grupo de módulos" msgid "Tactical group view" msgstr "Vista táctica de grupo" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "Distribución por sistema operativo" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "Eventos por agente" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "Alertas y eventos" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "Ultimo contacto remoto" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "Extensiones definidas" @@ -34991,7 +35150,7 @@ msgstr "Gestión de perfiles de usuario" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "Gestionar usuarios" @@ -35144,7 +35303,7 @@ msgid "Create Profile" msgstr "Crear perfil" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "Ver agentes" @@ -35165,7 +35324,7 @@ msgid "Edit events" msgstr "Editar eventos" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "Gestionar eventos" @@ -35194,7 +35353,7 @@ msgid "Manage network maps" msgstr "Gestionar mapas de red" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "Ver consola visual" @@ -35224,36 +35383,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "Nombre de perfil en uso, por favor, cambie el nombre antes de guardar" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "Usuario eliminado %s" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "Error al borrar el usuario" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Usuario %s eliminado de la Metaconsola" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "Usuario %s eliminado de %s" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "Eliminado correctamente de %s" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "Error al eliminar al usuario de %s" @@ -35262,15 +35421,15 @@ msgstr "Error al eliminar al usuario de %s" msgid "ID user cannot be empty" msgstr "El ID de usuario no puede estar vacío" -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "Error al deshabilitar el usuario" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "Error al habilitar el usuario" -#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284 +#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -35279,23 +35438,23 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a%s para administrarlo." -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "Perfil/Grupo" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "Administrador" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "Mostrar perfiles" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "Otros perfiles también han sido asignados" -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." @@ -35303,62 +35462,79 @@ msgstr "" "Otros perfiles que no puede gestionar también han sido asignados. Estos " "perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario." -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "El usuario no tiene ningún perfil asignado." -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "Editar usuario" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "Crear usuario" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "El sistema de autenticación no permite crear usuarios en %s." -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "Lista de eventos" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "Enlace externo" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "Actualizar usuario" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "Crear usuario" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "Editor de detalles de usuario" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "El ID de usuario no puede estar vacío." -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "La ID de este usuario ya existe." + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID de usuario no válido: no están permitidos los espacios en blanco al " "principio o al final" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "Las contraseñas no pueden estar vacías." -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "La contraseña proporcionada no es válida. Por favor, introduzca otra." -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -35366,59 +35542,59 @@ msgstr "" "ACL estricto no está recomendado para usuarios administradores porque el " "rendimiento podría verse afectado." -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "Perfil añadido correctamente" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "El perfil no se puede añadir." -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "Información del usuario actualizada correctamente" -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "La contraseña del usuario activo no es correcta" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "Ha generado un nuevo token de API." -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "ACL estricto no está recomendado para este usuario. El rendimiento podría " "verse afectado." -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " @@ -35427,67 +35603,67 @@ msgstr "" "Se renovará el token de la API. Después de esta acción, el último token que " "estabs usando no funcionará. ¿Está seguro?" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "Su token de API es:" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "Por favor, evite compartir esta cadena con otros." -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "Nombre completo" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "La zona horaria debe ser la del servidor asociado." -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "Confirmar contraseña" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "Confirmación de contraseña propia" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "Usuario administrador" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "Correo electrónico" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "Número de teléfono" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "Lista de IP permitidas para iniciar sesión" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -35495,31 +35671,31 @@ msgstr "" "Agregue las direcciones IP de origen que permitirán el acceso a la consola. " "Cada IP debe estar separada solo por comas. * permite todo." -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "Apariencia" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "Buscar vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" "Cargar por defecto la vista seleccionada en la vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "Usar configuración global" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "Pantalla de inicio" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -35532,73 +35708,73 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista " "de detalle de agente" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "Acceso a la Metaconsola" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "Filtro de evento por defecto" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "Usuario de eHorus" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "Contraseña de eHorus" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "El usuario debe estar creado antes de activar la doble autenticación." -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "Mostrar información" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "Habilitar gestión de agentes" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "Habilitar el acceso al nodo" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la " "consola." -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "sí" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "no" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "Seleccione un perfil y grupo" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "Este perfil ya está definido" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "Eliminar el último perfil eliminará este usuario" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -35606,44 +35782,33 @@ msgstr "" "El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está " "seguro?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "Información sobre la doble autentificación" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "La doble autentificación se desactivará" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "Desactivado" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "La doble autentificación fue desactivada correctamente" -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "Error al desactivar la doble autentificación" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "Lista de eventos" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "Enlace externo" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "Información de perfil" @@ -35685,11 +35850,11 @@ msgstr "" "El usuario con la autenticación local habilitada siempre utilizará la " "autenticación local." -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "TIempo de sesión" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -35697,53 +35862,53 @@ msgstr "" "Esto está definido en minutos; si quieres una sesión permanente, pon -1 en " "este campo." -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "Actualización automática" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "Lista completa de páginas" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "Páginas con auto-refresco" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "Añadir las páginas seleccionadas a la lista de actualización automática" -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "Quitar las páginas seleccionadas de la lista de actualización automática" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "Auto-refrescar páginas" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "Tiempo de auto-refresco" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -35751,41 +35916,36 @@ msgstr "" "Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero " "debe habilitar primero el auto refresco." -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "Idioma y aspecto" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "Combinación de colores del usuario" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "Filtro de eventos" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "Zona horaria" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "Ajustes adicionales" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "Permitir todas las direcciones IP" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "" -"Generado automáticamente con la información proporcionada para el usuario" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "Creado mediante la plantilla " @@ -35798,14 +35958,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: " #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "Módulos añadidos correctamente" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "Plantillas de módulos" @@ -35816,7 +35976,7 @@ msgid "Assign" msgstr "Asignar" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "Sin módulos" @@ -35837,70 +35997,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero). msgstr "" "Número de columna a obtener del resultado de la consulta WQL (a partir de 0)." -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "Depurar este módulo en remoto" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "Depurar este módulo una vez iniciado" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "Depurar" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "Peticiones" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "ID del navegador (Agent Browser)" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "Autentificación HTTP (inicio de sesión)" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "Autentificación HTTP (contraseña)" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "Autentificación Proxy (inicio de sesión)" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "Autentificación proxy (contraseña)" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "Autentificación proxy (servidor)" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "Autentificación proxy (área)" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "No se puede obtener o publicar." -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "Detalle del monitor" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "Último cambio de estado" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "Mostrar campo de detalle de monitor" @@ -35924,15 +36089,15 @@ msgid "Could not be created, because IP already exists" msgstr "No se ha podido crear porque la IP ya existe" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "Datos GIS" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidentes" @@ -35962,12 +36127,12 @@ msgid "Manage agents" msgstr "Gestionar agentes" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "Archivo de configuración borrado correctamente" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "No se puede borrar el archivo de configuración" @@ -36010,11 +36175,11 @@ msgstr "Duplicar la dirección IP principal" msgid "There was a problem updating the agent" msgstr "Hubo un problema al actualizar el agente" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "Hubo un problema al cargar el agente" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -36022,26 +36187,26 @@ msgstr "" "Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"." -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "Hubo un problema al actualizar el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "Módulo actualizado correctamente" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the same " "name." @@ -36049,50 +36214,50 @@ msgstr "" "Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "Hubo un problema al añadir el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Módulo añadido correctamente" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "Hubo un problema al borrar el módulo" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "Módulo borrado correctamente" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "Guardar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "Actualizar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "Insertar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "La pestaña no es válida" @@ -36180,7 +36345,7 @@ msgid "Error forcing inventory module" msgstr "Error al forzar un módulo del inventario" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "Destino" @@ -36233,50 +36398,55 @@ msgstr "" "Buscar filtro por alias, nombre, descripción, dirección IP o contenido de " "campos personalizados." -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "Configuración remota del agente" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "Módulo en tiempo de inactividad programado" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "Editar configuración remota" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "Habilitar agente" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "Deshabilitar agente" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "" "¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "Borrar agente" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "Desplegar agente" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." @@ -36331,7 +36501,7 @@ msgstr "Todos los módulos" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "Parada planificada" @@ -36428,7 +36598,7 @@ msgstr "¿Quiere migrar automáticamente los elementos mal formados?" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" "Estos elementos no se pueden modificar mientras se está ejecutando el tiempo " @@ -36583,12 +36753,12 @@ msgid "Type Periodicity" msgstr "Tipo de periodicidad" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "Desde el día" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "Hasta el día" @@ -36605,14 +36775,14 @@ msgid "To hour" msgstr "Hasta la hora:" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "Cron desde" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "Cron hasta" @@ -36656,12 +36826,12 @@ msgstr "Algunos módulos" msgid "Add Module:" msgstr "Añadir módulo:" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "Por favor, seleccione un módulo." -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36722,12 +36892,12 @@ msgstr "" msgid "Create field" msgstr "Crear campo" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "Exploración SNMP" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36739,13 +36909,13 @@ msgstr "" "Si se necesitan comillas dobles, escápase de ellas con una barra diagonal " "inversa (\\")" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "Windows remoto" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "Icono de agente" @@ -36755,7 +36925,7 @@ msgstr "Usar el alias como nombre" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "IP única" @@ -36782,64 +36952,64 @@ msgstr "Lista de direcciones IP" msgid "Primary group" msgstr "Grupo primario" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "Módulos de protección en cascada" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "Modo de aprendizaje" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "Modo normal" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "Modo autodeshabilitado" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "Definición de módulos" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "Servicios de protección en cascada" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "Actualizar nuevos datos GIS" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "Dirección URL" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "Modo deshabilitado" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "Modo seguro de operación" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "Texto del enlace:" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "URL del enlace:" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "Esta acción no es reversible. ¿Está seguro?" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "Un grupo secundario no puede ser también primario." @@ -36942,86 +37112,86 @@ msgid "Warning threshold" msgstr "Umbral de advertencia" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "Mín / Máx" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "Umbral crítico" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "Identificación y categorización" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "Padre del módulo" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "Etiquetas desde política" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "Intervalo de ejecución" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "Umbrales y cambios de estado" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "Intervalo de rango dinámico" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "Dos colas" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "Datos y su tratamiento" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "Notificaciones y alertas" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "No necesario" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "Servicios de protección en cascada" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "Directo" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "Conmutación" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "Rel. tipo" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "Añadir relación" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "Cambios" @@ -37051,7 +37221,8 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" "Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d." -#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999 +#: ../../godmode/agentes/module_manager.php:619 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "P" @@ -37059,42 +37230,42 @@ msgstr "P" msgid "S" msgstr "S" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "Adoptado" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "Normalizar" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Crear componentes de red" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 -#: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "No hay datos disponibles para mostrar" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "Ejecutar acción" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "Seleccionar el tipo de módulo" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "Añadir más módulos de la Librería de módulos" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -37124,7 +37295,7 @@ msgid "Item list" msgstr "Lista de elementos" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "Valores máximos" @@ -37150,49 +37321,49 @@ msgstr "Filtros Netflow" msgid "There are no defined filters" msgstr "No hay filtros definidos" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "Lista de filtros" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "Añadir filtro" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "Dirección IP origen" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "Dirección IP destino" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "Puerto origen" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "Puerto destino" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "Agregado por" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "Dst IP" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" @@ -37202,13 +37373,13 @@ msgstr "" "campo mostrará todas las IPs. Ejemplo de filtro por IP: " "25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "IP Origen" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" @@ -37217,8 +37388,8 @@ msgstr "" "campo mostrará todas las IPs. Ejemplo de filtro por IP: " "25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave the " "field blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37227,8 +37398,8 @@ msgstr "" "este campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por " "puertos: 80,22" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37237,21 +37408,88 @@ msgstr "" "campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por " "puertos: 80,22" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "Filtros avanzados" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "Activar monitorización de Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this filter. " +"It also creates a module that measures if the traffic of any IP of this filter " +"exceeds a certain threshold. A text type module will be created with the " +"traffic rate for each IP within this filter every five minutes (the 10 IP's " +"with the most traffic). Only available for Enterprise version." +msgstr "" +"Le permite crear un agente que monitor ice el volumen del tráfico de este " +"filtro. También crea un módulo que mide si el tráfico de cualquier IP de este " +"filtro sobrepasa un cierto umbral. Se creará un módulo de tipo texto con la " +"tasa de tráfico de cada IP dentro de este filtro cada cinco minutos (las 10 " +"IPs con más tráfico). Solo disponible en la versión Enterprise." + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "Intérvalo de monitorización de Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "Intérvalo de monitorización Netflow en segundos" + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "Valor máximo de tráfico del filtro" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then " +"used to calculate the % of maximum traffic per IP." +msgstr "" +"Especifica la tasa máxima (en bytes/seg) del tráfico del filtro. " +"Posteriormente se utiliza para calcular el % del tráfico máximo por IP." + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "Umbral CRÍTICO para el máximo % de tráfico para una IP." + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" +"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado " +"CRÍTICO." + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "Umbral de ADVERTENCIA para el máximo % de tráfico para una IP." + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" +"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado de " +"ADVERTENCIA." + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "Generador de traps SNMP" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "SMNP" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "Parámetros vacíos" @@ -37370,9 +37608,9 @@ msgid "Custom Value/Enterprise String" msgstr "Valor personalizado/Cadena Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "Nº de veces disparada" @@ -37392,7 +37630,7 @@ msgstr "¿Desea eliminar esta alerta?" msgid "Do you want delete the selected alerts?" msgstr "¿Desea eliminar las alertas seleccionadas?" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "Añadir acción " @@ -37481,147 +37719,147 @@ msgstr "Configuración de grupos de agentes" msgid "Private Enterprise Numbers" msgstr "Números privados de empresa" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "Componentes remotos" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Operaciones sobre agentes" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Operaciones sobre módulos" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Operaciones de plugins" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Operaciones sobre usuarios" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Operaciones sobre alertas" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "Filtro de eventos" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "Columnas personalizadas" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "Lista de alertas" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "Lista de días especiales" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "Alertas SNMP" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "Gestionar servidores" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "Gestionar consolas" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "Registrar Plugin" -#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuración general" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "Sflow" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 -#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 +#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "Websocket Engine" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 -#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 +#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "Herramientas externas" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "Tips de bienvenida" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "Conexión de mapa GIS" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "Información de diagnóstico" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "Noticias del sistema" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "Comprobación del esquema de la BD" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "Interfaz de la BBDD" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "Configuración de la consola acústica" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "Vista del gestor de extensiones" -#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Actualización de Warp" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "Actualizar sin conexión" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "Actualizar en línea" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "Diario Warp" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Librería de módulos" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -37923,10 +38161,10 @@ msgstr "Agentes con plantillas" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "Plantillas de alertas" @@ -37948,7 +38186,7 @@ msgstr "No se seleccionó ningún módulo" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "No se seleccionó ningún agente" @@ -38037,29 +38275,29 @@ msgstr "Los usuarios no se pueden actualizar (%s)" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Usuarios" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "Esto activará la actualización automática en las páginas seleccionadas." #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "Lista de páginas con actualización automática" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "Tiempo de actualización automática" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "No se seleccionó ninguna alerta" @@ -38178,31 +38416,31 @@ msgstr "Los archivos de configuración se borraron correctamente." msgid "Configuration files cannot be deleted" msgstr "Los archivos de configuración no se pudieron borrar." -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "Agentes actualizados correctamente (%d)" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "Protección en cascada" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " "disabling it." @@ -38210,33 +38448,33 @@ msgstr "" "Si la configuración remota está habilitada, también entrará en modo de espera " "cuando se deshabilite." -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "Activo" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "Borrar las configuraciones remotas disponibles" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "Sin estado" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "Mal" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "Ignorar nuevos datos GIS:" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "El agente seguirá ejecutándose, pero las alertas y eventos se detendrán." -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -38288,15 +38526,11 @@ msgstr "" "actualizar)" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "Filtrar agentes" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "Comunidad SMNP" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by editing " "config.php in each individual console and wait for cron to run in order to be " @@ -38338,7 +38572,7 @@ msgid "Hide" msgstr "Ocultar" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "Acciones de alerta" @@ -38401,12 +38635,12 @@ msgstr "" "Las acciones por defecto se ejecutarán cada vez que la alerta se dispare y " "ninguna otra acción sea ejecutada." -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "Ver detalles avanzados de la alerta" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "No hay alertas definidas" @@ -38450,12 +38684,12 @@ msgid "Alert commands" msgstr "Comandos de alerta" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "Ningún nombre especificado" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "Ningún comando especificado" @@ -38467,7 +38701,7 @@ msgstr " (copia)" msgid "No alert commands configured" msgstr "Comandos de alertas no configurados" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates information " @@ -38476,7 +38710,7 @@ msgstr "" "Este nodo se configura en modo centralizado. Toda la información de plantillas " "de alertas es solo de lectura. Vaya a %s para gestionarlo." -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit All " "group." @@ -38484,7 +38718,7 @@ msgstr "" "No puede edit esta plantilla de alerta. No tiene los permisos para editar el " "grupo All (todos)." -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "No hay plantillas de alerta definidas" @@ -38501,6 +38735,14 @@ msgstr "Esta acción podría dejar de funcionar si cambia el nombre." msgid "Create Command" msgstr "Crear comando" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless of " +"how many times the alert is triggered." +msgstr "" +"La acción de alerta solo se ejecuta una vez dentro de este intervalo de " +"tiempo, sin importar cuántas veces se active la alerta." + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "Activación" @@ -38530,7 +38772,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "Configurar plantilla de alerta" @@ -38557,6 +38799,14 @@ msgstr "" msgid "No template name specified" msgstr "Ningún nombre de plantilla especificado" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" +"Resetear el contador de alerta dentro del periodo configurado si la alerta no " +"se recupera o valida manualmente." + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those set " @@ -38602,7 +38852,7 @@ msgid "No wizard" msgstr "No hay asistente" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" "La alerta se disparará cuando el valor coincida con ." @@ -38613,18 +38863,18 @@ msgid "The alert would fire when the value doesn\\'t match %s" msgstr "La alerta se disparará cuando el valor no coincida con %s" #: ../../godmode/alerts/configure_alert_template.php:1268 -#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493 +#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536 msgid "The alert would fire when the value is " msgstr "La alerta se disparará cuando el valor sea ." #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" "La alerta se disparará cuando el valor no sea ." #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -38654,12 +38904,12 @@ msgstr "" "La alerta se disparará cuando el valor sea superior a ." #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "La alerta se disparará cuando el módulo esté en estado advertencia." #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "La alerta se disparará cuando el módulo esté en estado crítico." @@ -38708,14 +38958,14 @@ msgstr "Lista de alertas" msgid "Stand by" msgstr "En espera" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" "La alerta se disparará cuando el valor no coincida con ." -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38802,6 +39052,10 @@ msgstr "Crear acción" msgid "Create Template" msgstr "Crear plantilla" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "Tiene prioridad sobre la configuración del umbral de la acción." + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "Finalizar y ver cluster" @@ -38835,12 +39089,12 @@ msgid "Licence" msgstr "Licencia" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "Clave del cliente" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "Límite de la plataforma" @@ -38856,22 +39110,22 @@ msgid "modules" msgstr "módulos" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "Cómputo de la plataforma actual" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "Cómputo de la plataforma actual (activado: elementos)" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "Cómputo de la plataforma actual (desactivado: elementos)" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "Modalidad de licencia" @@ -38880,7 +39134,7 @@ msgid "NMS" msgstr "NMS" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "Con licencia para" @@ -38936,40 +39190,44 @@ msgstr "" msgid "Site news management" msgstr "Gestionar noticias del sitio" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "Error de nombre" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "Pantalla modal" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "Caduca" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "Vencimiento" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "No hay noticias definidas" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "Autor" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "Bienvenido/a a la Consola de Pandora FMS" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "Modal" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "Tablero" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "Caducado" @@ -38997,7 +39255,7 @@ msgstr "Conexión mapa GIS" msgid "Pandora Websocket Engine" msgstr "Motor Websocket Pandora" -#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493 +#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "Crear Tip" @@ -39014,7 +39272,7 @@ msgid "Correct update the setup options" msgstr "Actualización correcta de las opciones de configuración" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "Activar eHorus" @@ -39035,6 +39293,17 @@ msgstr "Puerto de la API" msgid "Request timeout" msgstr "Tiempo de espera excedido para la petición" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "La conexión es correcta" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "Comprobar conexión" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "Sistema de gestión remota" @@ -39076,24 +39345,24 @@ msgstr "La sesión ha caducado." #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "Usuario o contraseña vacío" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "Usuario no encontrado" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "Contraseña incorrecta" @@ -39102,55 +39371,52 @@ msgstr "Contraseña incorrecta" msgid "Data storage path" msgstr "Ruta de almacenamiento de datos" -#: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "Intervalo del demonio" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "Ruta de demonio binario" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "Ruta binaria Nfdump" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "Ruta binaria Nfexpire" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "Máxima resolución del gráfico" -#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607 +#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "Vida útil máxima de Sflow" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "La resolución de direcciones IP puede tardar mucho tiempo." #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "Habilitar la resolución de nombre con IP" @@ -39167,7 +39433,7 @@ msgid "Bind port" msgstr "Puerto de enlace" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "URL del proxy de WebSocket" @@ -39180,11 +39446,11 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "No hay sistemas operativos definidos" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "Crear SO" @@ -39270,9 +39536,9 @@ msgstr "Google Maps" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "Imagen estática" @@ -39321,24 +39587,24 @@ msgid "Corners of the area of the image" msgstr "Esquinas del área de la imagen" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "Izquierda" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "Inferior" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "Derecha" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "Superior" @@ -39434,7 +39700,7 @@ msgid "Integria IMS API is not reachable" msgstr "API de Integria IMS no accesible" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "Habilitar Integria IMS" @@ -39507,183 +39773,183 @@ msgstr "No se pudo guardar la traducción de SNMP" msgid "Unsucessful save the snmp translation." msgstr "No se pudo guardar la traducción de SNMP" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "Tiempo máximo del Netflow" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "Haz clic para mostrar el menú lateral" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "Vista del módulo paginada" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "Tamaño de fuente para el mapa de servicios" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "Espacio entre nodos para el mapa de servicios" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "Colores" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "Caras" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "Colores y texto" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "Plantilla de estilo" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "Icono de estado en" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "Logo de documentación personalizado" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "Logo de soporte personalizado" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "Logo central del mapa de red personalizado" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "Icono de la consola móvil personalizada" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "Deshabilitar el logo en los gráficos" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "Deshabilitar ayudas" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "Cabecera fija" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "Ocultar submenú automáticamente" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "Etiquetas GIS" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "Icono GIS por defecto" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "Grupo de iconos de agente" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "Tamaño de fuente de las gráficas" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "Mostrar la unidad junto con el valor en los informes" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "Tamaño del texto del agente" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "Pequeño" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "Tamaño del nombre del módulo" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "Tamaño del texto de la descripción" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "Tamaño del texto de los títulos de elementos" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "Color del gráfico #" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "Precisión de datos" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "Precisión de datos en los gráficos" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "Espesor de la línea predeterminada para el gráfico personalizado" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "Ampliar gráficas" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "Vista clásica" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "Vista de favoritos" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "Tipo de vista de las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "Nº de consolas visuales favoritas mostradas en el menú" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "Grosor de línea por defecto en las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "Número de servicios favoritos a mostrar en el menú" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." @@ -39692,90 +39958,90 @@ msgstr "" "custom_logo'. Puede añadir más archivos (SOLO JPEG AND PNG) en la herramienta " "de actualización de la consola." -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "Máximo ancho de Networkmap" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "Mostrar grupos vacíos en la vista de grupo" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "Separador decimal" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" msgstr "Tiempo visible de notificaciones exitosas" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "Valores personalizados para postprocesado" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "Eliminar valores personalizados" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "Valores del intervalo" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "Eliminar valores de intervalo" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "Unidades de módulo" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "Configuración del comportamiento" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "Configuración GIS" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "Configuración de estilo" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "Configuración de gráficos" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "Configuración de fuente y texto" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "Configuración de las consolas visuales" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "Configuración de informes " -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "Configuración de servicios" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "Otra configuración" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "Vista previa del logo de la consola móvil" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "Vista previa de los iconos GIS" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "Vista previa del estado" @@ -39858,8 +40124,12 @@ msgstr "Habilitar Sflow" msgid "General network path" msgstr "Ruta de red general" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "Configuración de zona horaria del servidor" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "Lista negra ante cambios de inventario" @@ -39923,11 +40193,11 @@ msgstr "Útil para integraciones" msgid "Log location" msgstr "Localización de logs" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "Opciones generales" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/enable " "manually external connections using SMTP and you need to use STARTTLS on port " @@ -39940,29 +40210,29 @@ msgstr "" "las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS " "en el puerto 587." -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "De" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "Servidor SMTP" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "Puerto SMTP" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "Prueba de email" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "Enviar" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "Revisar configuración de correo" @@ -39974,29 +40244,29 @@ msgstr "Pandora_db en ejecución en la base de datos histórica." msgid "not executed" msgstr "No ejecutado" -#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834 +#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "Nº max. de días antes de borrar traps SNMP" #: ../../godmode/setup/performance.php:308 -#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838 +#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "Nº max. de días antes de borrar datos de tipo texto" -#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846 +#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "Nº max. de días antes de borrar información GIS" #: ../../godmode/setup/performance.php:353 -#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862 +#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "Máx. días antes de comprimir datos" -#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854 +#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "Máximo de días antes de borrar módulos desconocidos" -#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858 +#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "Máx. días antes de eliminar módulos no inicializados" @@ -40005,24 +40275,24 @@ msgid "Max. days before delete autodisabled agents" msgstr "" "Nº máximo de días antes de la eliminación de los agentes autodeshabilitados" -#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914 +#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "Período de retención de días especiales pasados" #: ../../godmode/setup/performance.php:494 -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "Interpolación de la compactación en horas (1 bueno - 20 malo)" -#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928 +#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "Núm. máx. de días antes de borrar mensajes antiguos" -#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932 +#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos" -#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923 +#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "Nº de días máximo antes del borrado de datos de inventario" @@ -40042,19 +40312,19 @@ msgstr "10 días" msgid "2 weeks" msgstr "2 semanas" -#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886 +#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "Usar estadísticas en tiempo real" -#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890 +#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "Período de las estadísticas programadas (seg.)" -#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898 +#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "Max. número de archivos recomendado para el directorio de adjuntos" -#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902 +#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "Borrar módulos no iniciados" @@ -40062,11 +40332,11 @@ msgstr "Borrar módulos no iniciados" msgid "Big Operation Step to purge old data" msgstr "Gran operación para la purga de datos antiguos" -#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910 +#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "Operación menor para la purga de datos antiguos" -#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936 +#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "Contenedor de gráficas - Máx. elementos" @@ -40109,7 +40379,7 @@ msgstr "Opciones de mantenimiento de la base de datos histórica" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "Otros" @@ -40118,7 +40388,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "Valores predeterminados del Asistente de interfaz SNMP del agente" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "Índice de %s" @@ -40129,7 +40399,7 @@ msgstr "El idioma está vacío" #: ../../godmode/setup/welcome_tips.php:65 msgid "Title is empty" -msgstr "El titulo esta vacio" +msgstr "El título está vacío" #: ../../godmode/setup/welcome_tips.php:69 msgid "Text is empty" @@ -40158,8 +40428,8 @@ msgstr "Crear consola visual" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "Imagen de fondo" @@ -40168,10 +40438,10 @@ msgid "Background image" msgstr "Imagen de fondo" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "Color de fondo" @@ -40220,107 +40490,107 @@ msgstr "El archivo no tiene una extensión válida." msgid "Problems with move file to target." msgstr "Error al mover el archivo al objetivo" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "Actualizado correctamente" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "No se puede actualizar" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "Creado correctamente" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "No se pudo crear" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "Supresión múltiple realizada correctamente" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "Error de supresión múltiple" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "Borrado satisfactoriamente" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "Lista de consolas visuales" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "Mostrar enlace a la Consola Visual pública" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "Datos principales" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "Lista de elementos" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "Asistente de servicios" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "Nueva consola visual" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "Ordenar elementos desde posición: " -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "Mover antes de" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "Mover después de" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "Ordenar elementos" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "Borrar los elementos seleccionados desde la posición: " -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "Borrar lo que está encima de" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "Borrar lo que está debajo de" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "Posición" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." @@ -40328,16 +40598,16 @@ msgstr "" "¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta " "acción podría cambiar la clasificación de los elementos en la base de datos." -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "Por favor, selecciona cualquier elemento para ordenar." -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "Por favor, selecciona cualquier elemento para borrarlo." @@ -40389,7 +40659,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "Tipo de gráfica" @@ -40397,8 +40667,8 @@ msgstr "Tipo de gráfica" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "Mostrar gráfica a escala completa (TIP)" @@ -40456,7 +40726,7 @@ msgid "Graph editor" msgstr "Editor de gráficas" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "Ver gráfica" @@ -40543,23 +40813,23 @@ msgstr "" "El número máximo de elementos en una tabla es %d. Tiene %d elementos, solo se " "mostrarán los primeros %d." -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "Ordenar elementos seleccionados" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "antes de" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "después de" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "No válido" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use it " "for scheduled reports and not for real-time view." @@ -40592,55 +40862,55 @@ msgstr "" msgid "Show modules" msgstr "Mostrar módulos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "Último" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "Servidor Target" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "Definición de macros" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "Definición de renderizado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" "Tenga en cuenta que no todos los estilos CSS son compatibles con los informes " "PDF." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "Mayor o igual (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "Menor o igual (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "Menor a (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "Mayor a (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "Igual a (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "No igual a (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at the " "end of the report and Checks." @@ -40648,39 +40918,39 @@ msgstr "" "Mostrar una gráfica de sumario con el máximo, mínimo y la media del total de " "módulos al final del informe y las comprobaciones." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "Chequeos en estado Warning" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "Sólo datos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "Incluir eventos ampliados" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "Mostrar datos personalizados" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "Por agente " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "Por validador de usuario " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "Por prioridad " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "Validado vs invalidado " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." @@ -40688,20 +40958,20 @@ msgstr "" "Con el token habilitado, la consulta afectará a la base de datos histórica, " "que puede acarrear una bajada del rendimiento." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "Incluir filtro" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "Búsqueda de cadena de texto libre en descripción del evento" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "Excluir filtro" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" @@ -40710,87 +40980,87 @@ msgstr "" "Kbytes/seg), de lo contrario se mostrará el valor completo (ejemplo: 20,742 " "bytes/seg)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "Grupo no asignado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "Grupo no asignado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "Seleccionar por grupo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "Mostrar opciones" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "Filtro de grupo de agentes" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "Filtro del so del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "Campo personalizado de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "Filtro de campo personalizado de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "Filtro de estado del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "Filtro de versión del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "El agente tiene configuración remota" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "Filtrar agentes por configuración remota habilitada." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "Filtro del módulo del agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "Filtro de grupo de módulos" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "Buscar nombre de módulo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "Conmutación de agente" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "Conmutación de módulo" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "Guarde el elemento antes de agregar entradas a esta lista." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "tasa" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." @@ -40798,46 +41068,46 @@ msgstr "" "Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a lo " "largo de su historia, el sumatorio puede obtener resultados incorrectos." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "Por favor, guarda el informe para empezar a añadir elementos a la lista." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "Información de editor de elemento" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "Seleccione un nombre." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "Seleccione un agente." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "Inserte una consulta SQL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "Inserte una URL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "Compruebe la opción de intervalo personalizado" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "Seleccione un usuario." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "Seleccione un grupo" @@ -40858,26 +41128,26 @@ msgid "Percentile Bubble" msgstr "Burbuja percentil" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "Gráfico de módulo" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "Gráfica de histórico de eventos" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "Valor simple" @@ -40895,52 +41165,54 @@ msgstr "Valor simple (media)" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "Caja" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "Link de red" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "Nube de color" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "Gráfico básico" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "Odómetro #1" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "Reloj" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "Editar etiqueta" @@ -40983,14 +41255,14 @@ msgid "An error has ocurred" msgstr "Ha ocurrido un error" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "Lista de informes" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "Informes personalizados" @@ -41012,16 +41284,16 @@ msgstr "" msgid "Create report" msgstr "Crear informe" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "Ver informe" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "Crear informa personalizado" -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "Acción fallida

" @@ -41032,16 +41304,16 @@ msgstr "Gráfico estático" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "Elemento percentil" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "Gráfico de módulo" @@ -41059,30 +41331,30 @@ msgid "Size (px)" msgstr "Tamaño (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "Tamaño de fuente" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "Procesar" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "Valor mínimo" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "Valor máx." #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "Valor medio" @@ -41091,20 +41363,20 @@ msgid "Width (px)" msgstr "Ancho (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "Burbuja" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "Porcentaje" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "Valor para mostrar" @@ -41160,7 +41432,7 @@ msgstr "El tamaño mínimo permitido es 1024x768" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "Acción en curso" @@ -41307,88 +41579,88 @@ msgstr "" "Si está habilitado, el comando se mostrará a cualquier usuario que pueda " "ejecutar esta respuesta de evento" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "Guardar en grupo" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" "Este grupo se usará para restringir la visibilidad de este filtro con ACLs." -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "Escoge entre los usuarios que tienen validado un evento. " -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "Propietario." -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "Todos los eventos" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489 msgid "Group events" msgstr "Eventos agrupados" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "Grupos de agente" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "ID adicional de grupo" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "Filtrar eventos de alertas" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "Solo eventos de alertas" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "ID extra" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "Tipo de filtro de datos personalizado" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "Filtrar datos personalizados por campo de nombre" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "Filtrar datos personalizados por campo de valor" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "Datos personalizados" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "Evento de origen de ID" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -41460,7 +41732,7 @@ msgid "Severity mini" msgstr "Prioridad baja" #: ../../godmode/events/custom_events.php:116 -#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "ID personalizada de módulo" @@ -41550,24 +41822,19 @@ msgstr "Error interno, vuelva a ejecutar el asistente." msgid "Manual interval means that it will be executed only On-demand" msgstr "Intervalo manual significa que será ejecutado solo bajo demanda." -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "Usar definición del archivo CSV" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "Definir objetivos utilizando la definición de CSV o red." -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "Redes (CSV)" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK format. " "For instance: 192.168.1.1/32" @@ -41575,15 +41842,15 @@ msgstr "" "Puede subir un archivo CSV. Cada línea debe contener una red en formato IP/" "MASK. Por ejemplo: 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "Redes (actual)" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "Sube un nuevo archivo para sobrescribir este contenido." -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." @@ -41593,11 +41860,11 @@ msgstr "" "separados por comas, por ejemplo: 192.168.50.0/24,192.168.60.0/24, hostname." "artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "Filtrar por puertos abiertos" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) is " "open." @@ -41605,11 +41872,11 @@ msgstr "" "Los objetivos se escanearán si al menos uno de los puertos definidos " "(separados por comas) está abierto." -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "Auto descubrir el hardware conocido" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." @@ -41617,12 +41884,12 @@ msgstr "" "Los objetivos se monitorizarán en base a su Número de empresa privado. " "Precisa de SNMP." -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" "El módulo Host Alive se añadirá a los agentes descubiertos por defecto." -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " @@ -41631,20 +41898,20 @@ msgstr "" "Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, " "'revisar resultados' es obligatorio." -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "Revisar resultados" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "El usuario debe validar los objetivos antes de crear agentes" -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "Aplicar normas de autoconfiguración" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." @@ -41652,19 +41919,19 @@ msgstr "" "El sistema puede auto configurar el host y los dispositivos detectados " "aplicando las normas de configuración." -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "SNMP activado" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "Omitir interfaces no habilitadas" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "Comunidades SNMP con las que probar" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" @@ -41672,30 +41939,35 @@ msgstr "" "Puede especificar varios valores, separados por coma, por ejemplo: public," "mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "Detección de SO" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "Resolución de nombres" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "Detección de padres" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "Recursión del padre" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "VLAN habilitada" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "WMI habilitado" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "Seleccione..." + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "Tarea eliminada" @@ -42008,6 +42280,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "Hecho" @@ -42020,47 +42293,42 @@ msgstr "No iniciado" msgid "Searching" msgstr "Buscando" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "El servidor se ha caído." -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "El servidor se ha parado." -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "Servidor de ejecución habilitado" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "Gestionar las tareas de Discovery" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "Reiniciar el estado de los módulos y el conteo de las alertas disparadas" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "Recuperar módulos SNMP" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "Administrar hosts satélite" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "Actualizar el servidor" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "Servidores de %s" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "Estándar" @@ -42089,34 +42357,35 @@ msgstr "Editor estándar" msgid "Advanced editor" msgstr "Editor avanzado" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "Configuración remota" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "Búsqueda dinámica" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "Gestionar servidores" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "Acción procesada satisfactoriamente" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "Servidor actualizado correctamente" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "Hubo un problema al actualizar el servidor" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "Active la gestión centralizada para gestionar el plugin" @@ -42126,7 +42395,7 @@ msgstr "REGISTRO DE PLUGINS" #: ../../godmode/servers/plugin_registration.php:77 msgid "Register plugin" -msgstr "Registrar Plugin" +msgstr "Registrar plugin" #: ../../godmode/servers/plugin_registration.php:86 #, php-format @@ -42137,55 +42406,66 @@ msgstr "" "La consola no administra este entorno, gestione esta funcionalidad desde la " "funcionalidad desde %s." -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "Registro de puglins" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" +"Esta extensión facilita el registro de los plugins de servidor. Aquí puede " +"subir un plugin de servidor en formato .pspz comprimido. Consulte la " +"documentación oficial para saber como obtener y utilizar los plugins de " +"servidor." + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "Puede encontrar más plugins en nuestra" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "Biblioteca de Recursos Públicos" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "Error al crear un directorio temporal" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "No se puede abrir el archivo .INI" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "Error al registrar el plugin remoto" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"." -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "Plugin de módulo registrado" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "Registrado correctamente" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "No se puede descomprimir el archivo cargado" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "No se puede mover el archivo cargado a %s." @@ -42194,15 +42474,15 @@ msgstr "No se puede mover el archivo cargado a %s." msgid "Network Components" msgstr "Componentes de red" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "Archivos adjuntos" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "Índice de archivo adjunto/plugin" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "Plugins registrados en %s" @@ -42211,7 +42491,7 @@ msgstr "Plugins registrados en %s" msgid "Plugin update" msgstr "Actualización de plugin" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " @@ -42221,7 +42501,7 @@ msgstr "" " \t\tadministre esta funcionalidad desde el administrador centralizado " "de la consola (Metaconsola)." -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "Nagios" @@ -42266,74 +42546,78 @@ msgstr "" msgid "Plug-in parameters" msgstr "Parámetros del plugin" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "Macros de los parámetros" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "Ocultar valor" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "En este campo aparecerán puntos como en un campo de tipo contraseña." -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "Eliminar macro" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "Necesitas crear tus propios plugins compatibles con Windows." -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "Problema al actualizar el plugin" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "Plugin actualizado correctamente" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "Error al crear plugin" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "Plugin creado correctamente" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "Error al borrar plugin" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "Plugin borrado correctamente" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "Bloqueo" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "Todos los módulos que estén utilizando este plugin se borrarán." -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "No hay plugins en el sistema" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "Añadir plugin" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "Lista de los módulos y componentes creados por '%s' " -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "Algunos módulos o componentes están usando el plugin." -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" @@ -42341,11 +42625,11 @@ msgstr "" "Los módulos o componentes deberían ser actualizados manualmente o usando las " "operaciones masivas para los plugins después de este cambio." -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "¿Estás seguro de que quieres realizar esta acción?" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -42390,37 +42674,37 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "Nombre de etiqueta" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "Información de los detalles" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "Número de módulos afectados" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "Teléfono" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "Detalles de la etiqueta" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "Correos para la etiqueta: %s" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "Teléfonos par la etiqueta: %s" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "Crear etiqueta" @@ -42436,25 +42720,25 @@ msgstr "Etiqueta actualizada correctamente" msgid "Error updating tag" msgstr "Error al actualizar la etiqueta" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "Etiqueta creada correctamente" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "Error al crear etiqueta" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "Hipervínculo a la información de ayuda que debe existir previamente" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Direccion de email asociada para utilizarla después en alertas asociadas a " "etiquetas" -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Número de teléfono asociado para usar posteriormente en alertas asociadas a " @@ -42569,7 +42853,7 @@ msgstr "Error al cargar los resultados" msgid "Pandora FMS %s - Build %s" msgstr "Pandora FMS %s - Revisión %s" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." @@ -42578,7 +42862,8 @@ msgstr "" "autorizados. Póngase en contacto con el administrador de sistemas si necesita " "ayuda." -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on the " @@ -42587,6 +42872,14 @@ msgstr "" "Recuerde que cualquier intento de acceso a esta página quedara grabado en la " "base de datos del sistema de %s." +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" +"Licencia no válida, póngase en contacto con el administrador de sistemas si " +"necesita ayuda." + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -42597,7 +42890,7 @@ msgstr "%s móvil" msgid "%s : Mobile" msgstr "%s : Móvil" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "Inicio" @@ -42606,27 +42899,27 @@ msgstr "Inicio" msgid "%s %s - Build %s" msgstr "%s %s - Desarrollo %s" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "Encabezado no encontrado" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "Contenido no encontrado." -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "Pie de página no encontrado" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "Forma incorrecta" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "Matriz incorrecta" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "Plegable incorrecto" @@ -42668,52 +42961,62 @@ msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta" msgid "Login out" msgstr "Cerrar sesión" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "Usuario" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "contraseña" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "Código de autentificación" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "Filtros de agentes por %s" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "Aplicar el filtro" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "Sin agentes" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "(Por defecto)" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "Grupo: %s" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "Estado: %s" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "Búsqueda libre: %s" @@ -42723,20 +43026,28 @@ msgstr "Búsqueda libre: %s" msgid "Filter Modules by %s" msgstr "Filtrar módulos por %s" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "Intervalo" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "Última actualización" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "Seleccionar opción" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "Grupos de módulos: %s" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "Etiqueta: %s" @@ -42746,20 +43057,29 @@ msgstr "Etiqueta: %s" msgid "Visual consoles" msgstr "Consola visual" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "Estado del servidor" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "No se han encontrado servicios" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "No se han encontrado agentes" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "Módulos por estado" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "Eventos (24h)" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "Últimos %s eventos" @@ -42769,15 +43089,22 @@ msgstr "Últimos %s eventos" msgid "Filter Alerts by %s" msgstr "Filtros de alertas por %s" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "Agente/módulo" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "Última vez que se disparó" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "Sin alertas" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "Standby: %s" @@ -42790,128 +43117,155 @@ msgstr "Todas las consolas visuales" msgid "Favourite visual consoles" msgstr "Consolas visuales favoritas" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "No hay mapas definidos" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" +msgstr "No hay mapas famritos que mostrar" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "Datos del módulo" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "Sin datos" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "%s: %s" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "Opciones para %s: %s" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "Mostrar alertas" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "Mostrar eventos" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "Comparación de tiempo (por separado)" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "Mostrar gráficos desconocidos" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "Rango de tiempo (horas)" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "Fecha de inicio" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "Actualizar gráfico" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "Error al obtener el gráfico" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784 msgid "New event" msgstr "Nuevo evento" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797 msgid "Event validated" msgstr "Evento validado" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809 msgid "Event in process" msgstr "Evento en proceso" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "ERROR: detalles del evento" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "Error al conectar con la base de datos" -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "Detalles del evento" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900 msgid "Event ID" msgstr "ID del evento" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "Admitido por" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "En proceso" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "Validación correcta" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "Validación fallida" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "Proceso correcto" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "Error en proceso" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "Filtrar eventos por %s" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "Fijar los filtros" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -42919,31 +43273,35 @@ msgstr "Fijar los filtros" msgid "No events" msgstr "No hay eventos" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "Filtro: %s" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "Gravedad: %s" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "Tipo: %s" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "Búsqueda libre: %s" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "Horas: %s" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "No hay servidores" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "Última actividad" @@ -42972,167 +43330,163 @@ msgstr "" msgid "Border color" msgstr "Color del borde" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "Ancho del borde" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Color de relleno" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" "Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el color " "de fondo." -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "Animación de reloj" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "Analógico" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "Digital" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "Formato de hora" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "Solo la hora" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "Hora y fecha" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "Activar enlace" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "Blanco" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "Negro" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "Transparente" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "Color de cuadrícula" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "Datos en imagen" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "Color de la leyenda" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "24h" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "8h" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "2h" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "1h" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "Tiempo máximo" -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "Tamaño original" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "Relación de aspecto" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "Ancho proporcional" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "Altura proporcional" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "Ancho" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "Barra de progreso circular" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "Barra de progreso circular (interior)" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "Color del elemento" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "Color del valor" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "Diámetro" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "Color predeterminado" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " @@ -43142,32 +43496,32 @@ msgstr "" "el que se encuentra el valor del módulo (con los valores iniciales y finales " "del intervalo incluidos)" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "Intervalos" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "Desde el valor" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "Hasta el valor" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "Color" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "Mostrar siempre arriba" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" @@ -43175,61 +43529,61 @@ msgstr "" "Permite que el elemento se superponga al resto de los elementos de la consola " "visual" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Ocultar el último valor en módulos boleanos" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "Mostrar último valor" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" "Para usar el tamaño original de la imagen, configura en 0 el ancho y en 0 el " "alto." -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "Consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "Por peso de estadp" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "Por elementos críticos" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "Tipo de cálculo de estado de la consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "Por defecto" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "Peso de la consola visual enlazada" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "Las líneas no tienen opciones avanzadas." -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "Restringir acceso al grupo" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " @@ -43239,133 +43593,133 @@ msgstr "" "consola visual a los usuarios que tengan acceso al grupo seleccionado. También " "se utiliza para calcular consolas visuales de los hijos." -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "Caducidad del caché" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "Haz clic en el punto de inicio
de la línea" -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "Haz clic en el punto final
de la línea" -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "Gráfico circular serializado" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "Gráfico de barras" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "Mostrar cuadrícula" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "Borrar elemento" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "Copiar elemento" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "Información del desarrollador de la consola visual" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "El tamaño mín. permitido es 1024x768." -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "No hay gráfica personalizada definida." -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "No se ha definido ningún nombre o imagen." -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "No se ha definido ninguna etiqueta." -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "No hay servicio definido." -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "No se ha definido ninguna imagen." -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "No hay ningún proceso definido." -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "No hay ningún valor máximo definido." -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "No hay margen definido." -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "Altura sin definir" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "El ancho no debe exceder el tamaño del contenedor de la consola visual." -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "La altura no debe exceder el tamaño del contenedor de la consola visual." -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "No hay ningún período definido." -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "No hay ningún agente definido." -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "No hay ningún módulo definido." -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "No hay módulo definido. Este módulo debe ser del tipo cadena." -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "Cambios guardados con éxito" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "No se ha podido guardar." @@ -43379,100 +43733,96 @@ msgid "Selected" msgstr "Seleccionado" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "Fuera de límites" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "Cancelar el zoom" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "Umbrales de advertencia y crítico" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "Gráfico de vista general" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "Sin datos" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "Servidor de traps SNMP" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "Servidor de correlación" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "Servidor ICMP Enterprise" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "Servidor SNMP Enterprise" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "Servidor Enterprise Satélite" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "Servidor transaccional Enterprise" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "Servidor mainframe" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "Servidor sync" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "Servidor WUX" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "Servidor de registros" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "Servidor de auto aprovisionamiento" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "Servidor de migración" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "Servidor Netflow" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "Servidor de predicción" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "Servidor Satélite" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "Desde:" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "Hasta:" @@ -43499,31 +43849,31 @@ msgid "Downtime" msgstr "Parada planificada" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "Valor mínimo" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "Valor medio" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "Valor máximo" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "Val. por" @@ -43533,190 +43883,195 @@ msgid "%s System" msgstr "Sistema %s" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "Eventos por usuario validador" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "Eventos por gravedad" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "Eventos validados vs no validados" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "Sec. grupos" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "Configuración remota" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "Añadido" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "Eliminado(s)" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "Celda gris cuando el módulo está en estado \"no iniciado\"" -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "Monitores" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "Eventos (no validados)" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "Eventos validados por el usuario" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "Eventos por gravedad" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "Cantidad de eventos validados" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "Resumen total" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "No hay alertas disparadas" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "Interfaz '%s' gráfico de rendimiento" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "Estado actual" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "Módulos vacíos" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "Tiempo en módulo no iniciado" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "% OK" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "Comprobaciones en desconocido" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "Primario" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "Nivel de alerta" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "Agentes en el grupo: %s" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "Último fallo" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "N/A(*)" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "Comprobaciones de monitores" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "Total de agentes y monitores" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "Resumen de nodos" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "Eventos en estado crítico" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "Eventos en estado de advertencia" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "Eventos OK" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "Eventos desconocidos" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "El conteo de eventos corresponde a los eventos en la última hora" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "Eventos importantes por gravedad" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "Última actividad en la consola %s" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "Información de eventos (1h)" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "" "Este SLA se ha visto afectado por los siguientes tiempos de inactividad " "programados" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" @@ -43724,16 +44079,16 @@ msgstr "" "Si la duración de la parada planificada es de menos de 5 minutos, no se " "representará en el gráfico" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "Fechas" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "A este elemento le afecta una parada planificada mal formada." -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "Ir a la sección de paradas planificadas para solucionar este problema" @@ -43751,7 +44106,7 @@ msgstr "M" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "Y" @@ -43768,47 +44123,47 @@ msgid "N" msgstr "N" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "Mantenimiento" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "Informativo" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "Menor" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "Principal" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "Monitor en estado crítico" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "Monitor en estado de advertencia" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "Monitor en estado normal" @@ -43816,17 +44171,17 @@ msgstr "Monitor en estado normal" msgid "Monitor Unknown" msgstr "Monitor en estado desconocido" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "Alerta recuperada" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "Alerta finalizada" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "Validación manual de alerta" @@ -43834,12 +44189,12 @@ msgstr "Validación manual de alerta" msgid "Agent created" msgstr "Agente creado" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "Equipo de red detectado con recon" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "Cambio de configuración" @@ -43849,9 +44204,9 @@ msgstr "ALERTA DISPARADA" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "SIN DATOS" @@ -43946,7 +44301,7 @@ msgid "2 minutes" msgstr "2 minutos" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "5 minutos" @@ -43955,49 +44310,54 @@ msgstr "5 minutos" msgid "15 minutes" msgstr "15 minutos" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "30 minutos" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "Series sumatorias" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "Series de media" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "Unidad " -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "Media" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "Mín.:" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "Máx.:" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "Media:" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "de módulo" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "Proyección" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "Probando el email de Pandora FMS" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." @@ -44005,7 +44365,7 @@ msgstr "" "Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido " "significa que la configuración funciona." -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -44014,11 +44374,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "Valor '%s' no recomendado en la configuración de PHP" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "El valor recomendado es: -1" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -44028,7 +44388,7 @@ msgstr "" "Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o contacta " "con un administrador." -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "Documentación" @@ -44160,9 +44520,9 @@ msgstr "Error al eliminar la plantilla de alerta. Id_template no existe." msgid "Successful delete of alert template." msgstr "Plantilla de alerta borrada correctamente." -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "%d agentes afectados" @@ -44260,168 +44620,168 @@ msgstr "Módulo SNMP de la política actualizado" msgid "Successful deletion" msgstr "Eliminado correctamente." -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "Usuario creado." -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "Usuario actualizado." -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "Usuario habilitado" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "Usuario deshabilitado" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "Las plantillas se han insertado en %d agentes." -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "El archivo XML se ha creado correctamente en la ruta: " -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "El módulo se ha cread en %d agentes." -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "La acción se ha asignado a %d agentes." -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "Usuario borrado." -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "Perfil de usuario añadido." -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "Perfil de usuario eliminado." -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "Módulo deshabilitado correctamente." -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "No se ha podido deshabilitar el módulo." -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "Módulo habilitado correctamente." -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "El módulo no se ha podido habilitar." -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "La alerta no se ha podido deshabilitar." -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "La alerta no se ha podido habilitar." -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "Agente habilitado" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "Agente deshabilitado" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "Se han actualizado la Metaconsola y las licencias de todos los nodos." -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" "Se ha actualizado la licencia de la Metaconsola, pero %d de %d nodo no se ha " "podido sincronizar." -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "función exclusiva de la Metaconsola." -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "Eliminado correctamente" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "El usuario no puede acceder al cluster." -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "Filtro de evento creado correctamente." -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "Filtro de evento creado correctamente." -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "Filtro de evento borrado correctamente." -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "Traps validados." -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "Traps eliminados." -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" "Recuento de módulos/alertas en ID de agente %d actualizado correctamente." -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "" "Recuento de módulos/alertas actualizado correctamente en todos los agentes" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" "Se ha añadido correctamente el agente %d a pendiente de eliminación en la " "política %d." -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" "Error al habilitar/deshabilitar la tarea discovery. Id_user no puede estar " "vacío." -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left blank." msgstr "" "Error al habilitar/deshabilitar la tarea discovery. El valor de habilitar/" "deshabilitar no puede estar vacío." -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "Error al habilitar/deshabilitar la tarea discovery." -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "Tarea discovery habilitada." -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "Tarea discovery deshabilitada." @@ -44555,25 +44915,39 @@ msgstr "El código es válido, pero hubo un error al guardar los datos." msgid "3 minutes" msgstr "3 minutos" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "Agrupar módulos por etiqueta" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "Agrupar módulos por grupo de módulos" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "Agrupar módulos por agentes" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "Mostrar grupos" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "Fecha de los últimos datos" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "Fuera de límites" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "Siguiente contacto" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -44585,13 +44959,17 @@ msgid "F." msgstr "F." #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "No se encontró ninguna alerta" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "Si se asigna el valor 0, se utilizará el umbral de la acción." + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "Permisos insuficientes para validar alertas" @@ -44622,32 +45000,32 @@ msgstr "Error al crear política" msgid "Policy created succesfully" msgstr "Política creada con éxito" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "3 meses" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "2 años" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "3 años" -#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "Elija un tiempo a partir de ahora" -#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "Especificar rango de tiempo" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "Frase exacta" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in database, " "charts or CSV exported data won't match, because is interpreted at runtime. " @@ -44658,15 +45036,11 @@ msgstr "" "coincidirán porque se interpretan en el momento de la ejecución. Lea la " "documentación del capítulo de 'Ingeniería de Pandora FMS'." -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "No hay datos a mostrar disponibles" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "T" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -44677,41 +45051,41 @@ msgstr "T" #: ../../include/functions_reports.php:693 #: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "Gráficos" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "Tiempo transcurrido desde el último cambio de estado: " -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "Forzar comprobaciones" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "No todos los monitores llevan este filtro" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "Este agente no tiene ningún monitor activo." -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "Cargar" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "Actualizar/eliminar filtro" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "Guardar filtro actual" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "Eliminar filtro" @@ -44794,107 +45168,107 @@ msgstr "Error al eliminar el filtro." msgid "Console successfully deleted" msgstr "Consola eliminada correctamente" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "No se han podido obtener los comentarios" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "Guardar/Actualizar filtros" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "no autorizado" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "Error al ejecutar respuesta" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "Relacionado" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "Campos de agente" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "Error al añadir el comentario" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "Comentario añadido correctamente" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "Error al cambiar el estado del evento" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "Estado del evento cambiado correctamente" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "Error al cambiar el propietario del evento" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "Propietario del evento cambiado correctamente" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "Error al eliminar evento" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "Mostrar todos los eventos en las últimas 24h" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "Estos comandos se aplicarán en todos los eventos seleccionados" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "Se ha alcanzado el número total de eventos en este nodo" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "Total de eventos por nodo" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "Configuración de la consola" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "Establecer condición" -#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "Todos los eventos nuevos" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "Duración del sonido" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "Melodía de sonido" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "Probar sonido" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "Alertas descubiertas" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "No hay alertas descubiertas" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "¡Enhorabuena! No hay nada que mostrar" @@ -44917,28 +45291,28 @@ msgstr "No hay monitores" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "Al menos un módulo está en estado CRÍTICO" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "Al menos un módulo está en estado de ADVERTENCIA" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "Al menos un módulo está en estado DESCONOCIDO" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "Todos los monitores OK" @@ -44950,12 +45324,12 @@ msgstr "Alerta disparada en agente" msgid "Dialog response time" msgstr "Tiempo de respuesta del diálogo" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "No se han encontrado cambios" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "Obtener archivo CSV" @@ -45069,7 +45443,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto." -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "Su instalación de PHP no es compatible con LDAP." @@ -45089,17 +45463,17 @@ msgstr "Usuario, grupo o perfil no especificados" msgid "User, group or profile status not specified" msgstr "Usuario, grupo o estado de perfil no especificados" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "No se han disparado alertas." -#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490 -#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698 +#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500 +#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108 +#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "SISTEMA" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "Nodo principal" @@ -45120,240 +45494,264 @@ msgstr "Haga clic aquí para ver este módulo" msgid "Module information" msgstr "Información del módulo" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "Ir a la edición de módulos" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "Error al cargar las alertas" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "Ir a \"editar alertas\"" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "Error al cargar la configuración del agente" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "Haga clic aquí para ver este agente" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "Otras direcciones IP" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "Contacto remoto" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "Siguiente contacto con el agente" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "Información del agente" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "Accesibilidad del agente (24h)" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "Interfaz de tráfico" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "Interfaz de información" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "Posición (longitud, latitud)" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "Dirección URL" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "Zona horaria desactivada" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "Información avanzada" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "Ir a la edición del clúster" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "Ir a la creación de módulos" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "Ir a \"editar agentes\"" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "Configurar usuario" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "Configurar perfil" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "Gestión de plantillas de módulos" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "Gestión de módulos de inventario" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "Configurador de la consola visual" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "Ver informes" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "Visor de gráficos" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "Gestionar gráficos personalizados" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "Ver contenedores de gráfico" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "Gestionar contenedores de gráfico" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "Ver plantillas de gráfico" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "Gestionar plantillas de gráfico" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "Elementos de la plantilla de gráfico" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "Asistente de plantilla de gráfico" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "Nuevos informes personalizados" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "Editar informes personalizados" -#: ../../include/functions_menu.php:588 +#: ../../include/functions_menu.php:590 +msgid "Remove custom reports" +msgstr "Eliminar informes personalizados" + +#: ../../include/functions_menu.php:592 msgid "Edit item" msgstr "Editar elemento" -#: ../../include/functions_menu.php:590 +#: ../../include/functions_menu.php:594 msgid "Wizard sla" msgstr "SLA del asistente" -#: ../../include/functions_menu.php:591 +#: ../../include/functions_menu.php:595 msgid "Global custom reports" msgstr "Informes personalizados globales" -#: ../../include/functions_menu.php:592 +#: ../../include/functions_menu.php:596 msgid "Avanced options" msgstr "Opciones avanzadas" -#: ../../include/functions_menu.php:595 +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "Gestionar mapas GIS" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "Gestionar mensajes" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "Gestionar grupos de módulos" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "Gestionar campos personalizados" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "Gestionar acciones de alertas" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "Gestionar comandos" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "Gestionar objetivos de exportación" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "Generador de traps SNMP" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "Gestionar incidentes" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "Gestionar grupos" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "Administración" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "Información" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "Información de Sistema" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "Sistema PHP" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "Versión MR" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "Administrador de actualizaciones" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "Informe de sistema" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "Estado de la base de datos" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "Información sobre el estado de la base de datos" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "Fragmentación de tablas de la base de datos de %s" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "Sistema PHP" @@ -45472,6 +45870,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. " msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. " #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "Tienes módulos en estado desconocido en este agente." @@ -45805,9 +46204,9 @@ msgid "" "command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " "introduce root pass." msgstr "" -"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y " -"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es " -"posible que necesites introducir la contraseña de root." +"Puede activar todos los servidores. Vaya al terminal de Linux y ejecute el " +"siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es posible que " +"necesite introducir la contraseña raíz." #: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." @@ -45869,8 +46268,8 @@ msgid "Please check if the email configuration is correct." msgstr "Por favor, confirma que la configuración de email es correcta." #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "Perfiles/Grupos asignados a este usuario" @@ -45906,111 +46305,111 @@ msgstr "" "Es posible que esta vista utilice parte de la información a la cual tu usuario " "no tenga acceso." -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "Software" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "Forzar comprobación" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" "La alerta se disparará cuando el valor esté por encima de ." -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" "La alerta se disparará cuando el valor esté por debajo de ." -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "Opción desconocida." -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "Sistema Flexible de Monitorización" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "Número total de elementos: %s" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "Primero" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "Tipo desconocido" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "No se encontraron registros coincidentes" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "No hay datos disponibles en la tabla" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "Exportar página actual a CSV" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "ALERTA" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "MANTENIMIENTO" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "INFORMATIVO" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "MENOR" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "MAYOR" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "Versión Enterprise no instalada" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "Escribe al menos dos caracteres para buscar." -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "Error no tratado" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "Ha ocurrido un error no tratado" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " @@ -46019,43 +46418,43 @@ msgstr "" "Estos controles emplean la zona horaria del sistema (%s) en vez de la suya " "(%s). La diferencia de horas con su zona horaria es %s." -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "Resultados" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "Ejecutar consulta" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "Mostrar contraseña" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "Servidor web" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "Módulo de wizard" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "Seleccionar módulo de inventario" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "Usar campos personalizados" -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "Nombre del campo" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "Es una contraseña" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "Añadir campo" @@ -46074,21 +46473,21 @@ msgstr "Agente añadido correctamente al diseño" msgid "Modules successfully added to layout" msgstr "Módulos añadidos correctamente al diseño" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "Agentes añadidos correctamente al diseño" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "No se puede cargar el mapa visual" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "Gráfico de barras" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "Barra de porcentaje" @@ -46137,7 +46536,7 @@ msgstr "Estado anormal" msgid "No actions defined" msgstr "No hay acciones definidas" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "El grupo de la alerta y del comando no coinciden" @@ -46267,24 +46666,24 @@ msgid "Current ranges" msgstr "Intervalos actuales" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "ancho" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "altura" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "X" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "Mostrar primero" @@ -46327,11 +46726,15 @@ msgstr "Color de leyenda" msgid "Show legend" msgstr "Mostrar leyenda" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "Recursivo" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "No se ha podido conectar con el nodo" @@ -46354,67 +46757,67 @@ msgstr "Configuración general" msgid "Specific settings" msgstr "Configuración específica" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "Tipo de elemento no válido [" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "Este tipo de elemento no tiene método getFormInputs [" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "NetworkLink de" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "Estado de la interfaz %s" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "En" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "Fuera" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "NetworkLink a" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "No se han podido generar las tablas: %s" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "Posición de la etiqueta" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "Enlace habilitado" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "Imagen estática" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "Gráfica de histórico de eventos" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "Gráfica bubble de percentil" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "Imagen Vc" @@ -46456,8 +46859,8 @@ msgstr "Pinche aquí para obtener más información" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "Gráfico simple" @@ -46578,12 +46981,12 @@ msgid "Inventory changes" msgstr "Inventario de cambios" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "Configuración de agentes" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "Configuración del grupo" @@ -46613,60 +47016,61 @@ msgstr "Sql" msgid "Graph Sql" msgstr "Gráfico SQL" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "Seleccione un elemento de la lista." -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "Seleccione..." - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "Escriba para buscar agentes" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "Escriba para buscar módulos" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "Solo módulos comunes" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "semanas" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "Día del mes" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "Día de la semana" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" -msgstr "Elegir archivo" +msgstr "Seleccionar filtro" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "Escribe al menos dos caracteres para buscar el módulo." -#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817 -#: ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818 +#: ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo." -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "Escriba al menos dos caracteres para buscar el usuario." -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "Un grupo primario no puede ser también secundario." +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "Subir" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -46732,7 +47136,7 @@ msgstr "Usar certificado" msgid "Integria inventory" msgstr "Inventario Integria IMS" -#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "Contraseña de la API de Integria IMS" @@ -46780,481 +47184,489 @@ msgid "alias_as_name" msgstr "Alias como nombre" #: ../../include/functions_config.php:374 +msgid "keep_in_process_status_extra_id" +msgstr "keep_in_process_status_extra_id" + +#: ../../include/functions_config.php:378 msgid "Console log enabled" msgstr "Log de consola habilitado" -#: ../../include/functions_config.php:378 +#: ../../include/functions_config.php:382 msgid "Audit log enabled" msgstr "Log de auditoría habilitado" -#: ../../include/functions_config.php:382 +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "Solo lectura del ID personalizado del módulo" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "Host de la BD de replicación" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "Nombre de la BD de replicación" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "Usuario de la BD de replicación" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "Contraseña de la BD de replicación" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "Puerto de la BD de replicación" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "Caché de agente de la Metaconsola" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "Habilitar Update Manager" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "Base de datos heredada HA" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "Ipam Ocuppied Manager Crítico" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "Ipam Ocuppied Manager Advertencia" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "Visualización automática de la zona horaria" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "Búsqueda recursiva" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "Tiempo de espera de búsqueda LDAP" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "TLS de inicio secundario" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "Parámetros de perfil saml" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "2FA todos los usuarios" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "Límite de tiempo de la sesión forzado a 90 minutos" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "Purga de eventos" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "Días máximos antes de eliminar los deshabilitados" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "Límite de elementos para los informes de tiempo real" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "Gran operación para la purga de datos antiguos" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "Máxima respuesta de ejecución de eventos" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "Ruta del binario SNMP walk" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "Ruta del binario SNMP walk (alternativa para la v1)" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "Binario WMI por defecto" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "Asistente del agente de interfaz SNMP" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "Hora de cierre automático de notificaciones" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "Color del gráfico #4" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "Color del gráfico #5" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "Color del gráfico #6" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "Color del gráfico #7" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "Color del gráfico #8" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "Color del gráfico #9" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "Color del gráfico #10" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "Mostrar código QR en la cabecera" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "Fondo blanco del logo personalizado" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "Encabezado de título personalizado" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "Encabezado del subtítulo personalizado" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "Imagen de fondo de la pantalla de inicio de sesión" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "URL de documentos personalizados" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "URL de soporte personalizado" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "Logo personalizado de la consola (fondo blanco)" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "Logo personalizado de la conexión a la Metaconsola" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "Conexión del Splash personalizado de la Metaconsola" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "Título1 conexión personalizado de la Metaconsola" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "Título2 conexión personalizado de la Metaconsola" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "Fondo de la conexión a la Metaconsola" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "Línea por defecto favourite_view para la consola visual" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "Elementos predeterminados de menú de línea para la consola visual" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "Linea de elementos de menú por defecto para los servicios" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "Mostrar unidades en los valores del informe" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "Ocultar menú automáticamente" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "Animación visual" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "Gráfico fijo" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "Paginar vista de módulos" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "Directorio personalizado graphviz" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "Gráfico de módulo de datos acortados" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "Mostrar grupos vacíos en la vista de grupos." -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "Tipo de gráficos de módulos por defecto" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "Número de elementos por defecto en gráfica personalizada." -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "Tipo predefinido para los gráficos de interfaz" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "Mostrar los menús laterales con el clic izquierdo" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "Espacio entre los nodos del mapa de servicios" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "Percentil por defecto" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "Escala completa por defecto (TIP)" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "Gráficas soft por defecto" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "Gráficas ampliadas por defecto" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "Altuta de la imagen de la gráfica por defecto" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "Añadir la personalización al proceso posterior" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "Borrar la personalización al proceso posterior" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "Añadir unidad de módulo personalizado" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "Eliminar unidad de módulo personalizado" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "Separador de miles" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "Ruta de almacenamiento de nombres" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "Directorio del nombre de Sflow" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "IP del servidor ElasticSearch" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "Puerto del servidor ElasticSearch" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "Activar trap de histórico" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "Habilitar base de datos de histórico avanzada" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "Días de cadena" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "Días de traps" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "Purgado de histórico de traps" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "Purga de traps de la base de datos de histórico" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "Inicio de sesión del usuario a eHorus" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "Propietario de la API de eHorus" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "Puerto de la API de eHorus" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "Tiempo de respuesta de eHorus" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "ID del campo personalizado de eHorus" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "Usuario de Integria" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "Usuario de Integria" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "Contraseña de Integria" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "Nombre del host de la API de Integria" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "Límite de tiempo de las peticiones de Integria" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "Grupo por defecto de Integria" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "Grupo de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "Prioridad por defecto de Integria" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "Prioridad de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "Creador por defecto de Integria" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "Propietario de Integria por defecto" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "Propietario de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "Tipo de ticket de Integria por defecto" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "Estado del ticket de Integria por defecto" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "Estado del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "Título del ticket de Integria por defecto" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "Título del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "Contenido del ticket de Integria por defecto" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "Usuario de la biblioteca de módulos" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "Contraseña de la biblioteca de módulos" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "Dirección de enlace WebSocket" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "Puerto WebSocket" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" "Error de actualización. No se pudieron actualizar los siguientes valores:
" "-%s" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "Metaconsola PandoraFMS" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "Consola de operación centralizada" @@ -47358,7 +47770,7 @@ msgstr "Añadir por %s" msgid "Resolution %s" msgstr "Resolución de %s" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "Alertas de módulo" @@ -47515,7 +47927,6 @@ msgid "Sound not exist" msgstr "El sonido no existe" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "Sonidos" @@ -47524,7 +47935,7 @@ msgid "Add new sound" msgstr "Añadir nuevo sonido" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" +msgid "Acoustic console sound list" msgstr "Lista de sonidos de la consola acústica" #: ../../include/class/EventSound.class.php:253 @@ -47568,7 +47979,7 @@ msgid "Something is wrong" msgstr "Algo ha salido mal" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "¿Qué ha pasado?" @@ -47581,7 +47992,7 @@ msgid "Submit" msgstr "Enviar" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "Feedback" @@ -47639,7 +48050,7 @@ msgid "%s Licence Information" msgstr "Información de la licencia %s" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "Estado de la carpeta de adjuntos" @@ -47832,7 +48243,7 @@ msgstr "SO" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "IP" @@ -47973,39 +48384,39 @@ msgstr "Fragmentación de tablas (valor actual)" msgid "Table fragmentation status" msgstr "Estado de fragmentación de tablas" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "Logs del tamaño del servidor (valor actual)" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "Logs del estado del servidor" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "Logs de error de tamaño (valor actual)" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "Logs de error de estado" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "Logs del tamaño de la consola (valor actual)" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "Logs del estado de la consola" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "La capacidad de la licencia es menor del 90 por ciento" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "La capacidad de la licencia excede del 90 por ciento" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" @@ -48013,48 +48424,48 @@ msgstr "" "La media de módulos por agente es más de 40. Puede sufrir problemas de " "rendimiento" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "La media de módulos por agente es menos de 40" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "El sistema no tiene carga" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "Sistema de administración de la red" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "Apagado" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "Estado de la capacidad de los agentes" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "Estado de la media de módulos por agente" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "Intervalo de media de los módulos de la red" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "La carpeta adjunta contiene más de 700 archivos." -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "La carpeta adjunta contiene menos de 700 archivos." -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "Total de archivos en la carpeta adjunta" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -48062,31 +48473,31 @@ msgstr "" "La tabla tagente_datos contiene demasiados datos. Se recomienda una base de " "datos histórica." -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable" -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "Total de datos de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "Estado de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "Hilos" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "Total de hilos" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "Hilos pandora_server en ejecución actualmente" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -48094,7 +48505,7 @@ msgstr "" "Hay más hilos pandora_server de los configurados, ¿está ejecutando varios " "servidores a la vez?" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -48102,7 +48513,7 @@ msgstr "" "Compruebe la configuración del servidor de Pandora y asegúrese de que el " "demonio de mantenimiento de la base de datos está en ejecución." -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -48110,56 +48521,56 @@ msgstr "" "Es muy importante que la base de datos esté actualizada para conseguir un " "rendimiento y resultados óptimos en Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "Tiene más de 10MB de registros" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "Tiene menos de 10MB de logs" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "Incluir datos de instalación" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "Hola Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "Hola" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "El usuario %s está notificando sobre un problema en su experiencia %s" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "Encontrar archivos adjuntos a este correo" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "El PDF es la información de diagnóstico obtenida en el momento del informe" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "CSV contiene los estados de cada archivo de producto" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " "\"%s\"" msgstr "Si cree que el informe debe escalarse, reenvíe este correo a \"%s\"" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "AVISO LEGAL" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -48167,7 +48578,7 @@ msgstr "" "La información aquí incluida es privilegiada y confidencial, destinada al uso " "del individuo o la entidad arriba mencionada" -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -48176,11 +48587,11 @@ msgstr "" "Si el lector del mensaje no es el destinatario deseado, le comunicamos que " "está prohibido difundir, distribuir o copiar este comunicado" -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "Si ha recibido este mensaje por error, no lo lea" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -48188,81 +48599,81 @@ msgstr "" "Comuníquele al remitente que ha recibido esta comunicación por error y acto " "seguido elimínela" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "Tarea cron no válida" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "Se ha procesado el envío de información" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "Información de diagnóstico" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "Información PHP" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "No se ha podido generar dotmap, seleccione un formato diferente" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "No se ha podido obtener datos de gráfica." -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "Búfer de procesamiento" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "Modificar el nodo %s" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "Mostrar detalles y opciones" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "Establecer padre en la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "Establecer como hijo" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "Establecer como padre" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "Cancelar la acción de relacionar por parentesco" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "Añadir nodo" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "Fijar centro" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "Proceder" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -48270,144 +48681,144 @@ msgstr "" "Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, " "incluyendo las relaciones manuales entre elementos, nuevos elementos, etc." -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "Resetear el mapa" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "Abortar la relación de interfaz" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "Modificar nodo" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "Direcciones" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "Tipo de SO" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "Detalles de nodo" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "Información de interfaces (SNMP)" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "Forma" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "Círculo" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "Cuadrado" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "Rombo" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "Nombrar nodo" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "Nombre de nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "Enlace a mapa de red" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "Actualizar nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "Opciones de nodo" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "Nodo origen" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "Interfaz origen" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "Interfaz objetivo" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "Nodo objetivo" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "No hay relaciones" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "Añadir enlace de interfaz" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "Añadir nodo de agente" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "Añadir nodo de agente (filtro por grupo)" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "Añadir nodo ficticio" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "Añadir punto ficticio" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "Hasta la actualización" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "Abrir Minimapa" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "Ocultar etiquetas" @@ -48470,11 +48881,11 @@ msgstr "¿Está seguro de que desea borrar el script?" msgid "Delete Script" msgstr "Eliminar guión" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "No hay scripts de escaneo de red en el sistema" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "Ruta completa del script" @@ -48533,12 +48944,12 @@ msgid "Extra (2)" msgstr "Extra (2)" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "ID de la clave de accso" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "Clave de acceso secreta" @@ -48548,22 +48959,22 @@ msgid "Account ID" msgstr "ID de la cuenta" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "Secretos de aplicación" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "Propietario o nombre del dominio" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "ID de la suscripción" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "Autenticación JSON" @@ -48584,45 +48995,45 @@ msgid "3" msgstr "3" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "Método con autentificación y sin privacidad" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "Método con autentificación y privacidad" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "Método sin autentificación ni privacidad" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "Autenticación de usuario" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "Contraseña de autenticación" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "ID de cliente" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "ID de la cuenta" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "Registrar una clave nueva en el repositorio de claves" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "Actualizar clave" @@ -48631,9 +49042,9 @@ msgid "Trap subtype" msgstr "Subtipo trap" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "No disparado" @@ -48643,25 +49054,25 @@ msgstr "Disparado" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "Sin validar" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "Validado" @@ -48669,46 +49080,46 @@ msgstr "Validado" msgid "Group by Enterprise String/IP" msgstr "Agrupado por cadena Enterprise/IP" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "Ver detalles del agente" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "Ocultar detalles" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "Contar:" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "Primer trap:" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "Último trap:" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "Tipo:" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "Descripción:" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "Cadena Enterprise:" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "Enlaces variables" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "Ver más detalles" @@ -48783,51 +49194,51 @@ msgstr "Resultados encontrados" msgid "Press enter to search" msgstr "Búsqueda de texto libre" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "Tip eliminado" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "Buscar por título" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "Tip creado" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "Tamaño incorrecto, se recomiendan imágenes de 464x260 px" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "Por favor, seleccione una imagen" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "Añadir imagen" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "Imágenes" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "Tip editado" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "Archivo incorrecto" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "Formato de imagen no válido" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "Tamaño de imagen demasiado grande" @@ -48836,15 +49247,19 @@ msgstr "Tamaño de imagen demasiado grande" msgid "NetScan Custom" msgstr "Personalización NetScan" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos." + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "Recon script" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "Explicación" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "macro_desc" @@ -48918,7 +49333,7 @@ msgid "The modules is already added" msgstr "El módulo ya se ha añadido" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "Añadir componentes" @@ -48955,11 +49370,11 @@ msgstr "Eliminar este módulo" msgid "Do you want delete this module?" msgstr "¿Desea eliminar este módulo?" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "¿Desea eliminar todas las plantillas?" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "¿Desea eliminar las plantillas seleccionadas?" @@ -49679,6 +50094,107 @@ msgid "If something is not working as expected, look for this icon and report!" msgstr "" "Si algo no funciona como debería, !busque este icono e informe del problema¡" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" +"Tenga en cuenta que todos los sistemas operativos deben tener una arquitectura " +"basada en 64-bits" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "Seleccione su sistema operativo" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" +"Utilice su dirección IP del servidor de datos %s aquí. La conexión desde el " +"agente al puerto 41121/tcp de esta dirección debe ser posible." + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "Dirección del servidor" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "Vea las siguientes instrucciones" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "Si necesita más información sobre los agentes" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "Generar instalador" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "Agente Linux" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" +"Ejecute el siguiente comando en la Shell de su servidor Linux para llevar a " +"cabo la instalación del agente generado:" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software agent " +"service:" +msgstr "" +"Una vez instalado, ejecute el siguiente comando para iniciar el servicio del " +"agente software:" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "dependencias" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" +"Para la correcta operación del agente Linux es necesario que el servidor " +"instale lo siguiente " + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "Agente Windows" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "Ejecute el siguiente comando en cmd.exe como administrador:" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "Agente Mac" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation and " +"configure the server address to XXX and specify the group as XXX. Thank you " +"for your cooperation." +msgstr "" +"Para completar el proceso de instalación, lleve a cabo la instalación manual y " +"configure la dirección del servidor a XXX y especifique el grupo como XXX." + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "Haga click para descargar el agente" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "Cambiar configuración" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "Instalador" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "Error al añadir colección" @@ -49826,12 +50342,12 @@ msgstr "Información del módulo" msgid "Current value" msgstr "Valor actual" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "La operación '%s' no está permitida. Revise los componentes remotos." -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "Módulos a punto de ser creados" @@ -50032,210 +50548,210 @@ msgstr "Excluir " msgid "Event Report Module" msgstr "Informe de eventos del módulo" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "Agentes/módulos" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "Estado del agente/módulos" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "Excepción - Todo" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Excepción - Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Excepción - Módulos por debajo o igual a %s" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "Módulos por debajo de o igual a %s" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "Excepción - Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "Excepción - Módulos por encima de %s" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "Módulos por encima de %s" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "Excepción - Igual a %s" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "Igual a %s" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "Excepción - No igual a %s" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "No igual a %s" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "Excepción - Módulos en estado normal" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "Módulos en estado normal" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "Excepción - Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "No hay módulos bajo esas condiciones" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "No hay módulos por encima de o iguales a %s" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "No hay módulos por debajo de o iguales a %s" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "No hay módulos por debajo de %s" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "No hay módulos por encima de %s" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "No hay módulos iguales a %s" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "No hay módulos no iguales a %s" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "No hay módulos en estado normal" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "No hay módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "Informe de eventos de agentes" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "Base de datos serializada" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "Último valor" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "No hay datos en el intervalo seleccionado" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "Informe de las interfaces de red" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "Informe de representación personalizado" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Esta consulta es insegura, podría aplicar modificationes no deseadas en el " "esquema" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "El grupo no tiene agentes o los agentes no tienen interfaz de red." -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "bytes/s" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "Gráfico de barras verticales SQL" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "Gráfico de barras horizontales SQL" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "Gráfico SQL circular" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "Área de Netflow" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "Resumen de Netflow" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "Datos de Netflow" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "Informe desconocido" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "Fecha de predicción" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -50244,226 +50760,226 @@ msgstr "" "palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " "modificar, contraseña, pass, insertar o actualizar." -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "Sin dirección" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "El monitor no tiene datos en este rango de fecha o el tipo de monitor no es " "numérico." -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "El tipo de monitor no es numérico." -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "Máximo" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "Gráfica combinada automática" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "Estado del servidor" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "%d servidores caídos" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "Estado del monitor" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "%d monitores fuera de la normalidad" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "de monitores funcionando" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" -msgstr "Módulo sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" +msgstr "Estado de los módulos" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "%d monitores sin iniciar" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "del total de módulos iniciados" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "%d alertas disparadas" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "de alertas definidas no disparadas" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "Estado de los módulos" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "Alertas definidas y disparadas" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "Usuarios definidos" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "Agente sin datos" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "%d módulos normales" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "%d módulos críticos" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "%d módulos en estado de advertencia" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "%d módulos desconocidos" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "%d del total de agentes" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "%d agentes normales" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "%d agentes en estado crítico" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "%d agentes en estado de advertencia" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "%d agentes desconocidos" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "%d agentes no iniciados" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "Total de módulos en ejecución" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "Proporción" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "Módulos por segundo" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "Módulos locales" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "Módulos de red" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "Módulos de plugin" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "Módulos de predicción" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "Módulos WMI" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "Módulos web" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Rendimiento del servidor" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "Condición de inicio" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "Condición de detención" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "Semanalmente:" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "Mensual:" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "Gráfico de histograma del módulo" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "En este correo encontrarás en adjunto un archivo del" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "informe" @@ -50521,84 +51037,84 @@ msgstr "Directorio creado" msgid "Something gone wrong creating directory" msgstr "Algo salió mal al crear un directorio" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "Crear directorio" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "Crear archivo" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "Subir archivos" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "Ruta real" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "El directorio %s no existe!" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "Directorio padre" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "Directorio" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "Archivo comprimido" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "Archivo de texto" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "Cualquier usuario podría ejecutar este archivo" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "Asegúrate de que no puede desempeñar tareas peligrosas" -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "No hay archivos o directorios a mostrar." -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "Crear directorio" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "Subir archivo zip a este directorio, útil para subir múltiples archivos." -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "Descomprimir" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "Crear archivo" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "Subir archivo/s" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "Este directorio es solo de lectura" @@ -50611,15 +51127,15 @@ msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL" msgid "Copy of %s" msgstr "Copia de %s" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "Error al crear o actualizar el panel de control" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "Panel de control de imágenes de iconos" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -50627,28 +51143,28 @@ msgstr "Panel de control de imágenes de iconos" msgid "Failed to connect to node %d" msgstr "No se ha podido conectar con el nodo %d" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "Por favor, configura este widget antes de usarlo" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "No se puede cargar el widget" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "Por favor, configúralo de nuevo" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "Estado general de grupo" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "No hay agentes en este grupo" @@ -50678,7 +51194,7 @@ msgid "No modules in selected groups" msgstr "No hay módulos en los grupos seleccionados" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "Mapa de calor" @@ -50715,7 +51231,7 @@ msgstr "Si no, el diseño es vertical" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "No tienes acceso" @@ -50737,13 +51253,14 @@ msgstr "Color de fuente" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "Agente/módulo" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -50776,7 +51293,7 @@ msgid "Maps" msgstr "Mapas" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" msgstr "Datos de módulos Promedio| Suma| Máx.| Mín." @@ -50862,7 +51379,7 @@ msgstr "Gracias por usar %s." #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "Color de las pestañas de módulos" @@ -50946,21 +51463,21 @@ msgid "Zoom level" msgstr "Nivel de zoom" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "Informe de alertas disparadas" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "No hay alertas disparadas" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "Seleccione un grupo" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "Lista de últimos eventos" @@ -50970,16 +51487,16 @@ msgstr "Filtros personalizados" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "Todos los eventos" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "Solo eventos validados" @@ -50992,6 +51509,34 @@ msgstr "Solo pendientes" msgid "Please, event filter has been removed." msgstr "Se ha eliminado el filtro de eventos." +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "Tabla de colores" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "Mostrar etiqueta" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "Tamaño de la etiqueta en píxeles" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "Color de la etiqueta" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "Mostrar el valor" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "Valor del tamaño en píxeles" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "Valor del color" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" @@ -51128,12 +51673,12 @@ msgid "Missing Service id" msgstr "Falta el ID de servicio" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "Vista de Agente/Módulo" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "Filtrar módulos" @@ -51187,23 +51732,23 @@ msgstr "crítico" msgid "unknown" msgstr "desconocido" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "Tipo de árbol" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "Abrir todos los grupos" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "Estado de agente" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "Estado de módulos" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " @@ -51212,38 +51757,38 @@ msgstr "" "El usuario no tiene permisos para leer agentes. Póngase en contacto con su " "administrador de %s." -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "Sistemas operativos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "Etiquetas encontradas" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "Grupos de módulos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "Módulos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "Grupos encontrados" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "Agentes en estado anómalo" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "Módulos en estado anómalo" @@ -51261,10 +51806,6 @@ msgstr "" "mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o " "vram usage." -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "Media" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "" @@ -51329,11 +51870,11 @@ msgstr "Activo-Pasivo" msgid "Cluster already defined, please use another name." msgstr "Este clúster ya ha sido definido, use otro nombre." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "Nombre del clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" @@ -51341,11 +51882,11 @@ msgstr "" "Se creará un agente con el mismo nombre que el clúster y un servicio especial " "con el mismo nombre." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "Tipo de clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" @@ -51353,48 +51894,48 @@ msgstr "" "AA es un clúster donde funcionan todos los miembros. En un clúster AP solo " "trabaja el miembro maestro." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "Activo - Activo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "Activo - Pasivo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "El agente del clúster objetivo se guardará bajo este grupo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status calculations" msgstr "" "Debe seleccionar un Servidor de Predicción para llevar a cabo todos los " "cálculos de estado de clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "crítico si" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "% de los módulos equilibrados están caídos (igual o mayor)." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "Establezca umbrales para todos los módulos activo-pasivo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "Establezca umbrales para todos los módulos activo-activo" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." @@ -51402,7 +51943,7 @@ msgstr "" "Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará en " "estado crítico." -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "Problemas de conexión: %s" @@ -51519,52 +52060,52 @@ msgid "Collapse the tree" msgstr "Plegar el árbol" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "Opciones de búsqueda" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "Opciones SNMP v3" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "Buscar coincidencias" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "Crear módulos de agentes" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "Crear módulos de políticas" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "Crear componentes de red" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr " a aplicar" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "Crear nueva política" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "Deshacer" -#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51 +#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "Error al conectar con el nodo" @@ -51603,7 +52144,8 @@ msgid "GIS map layers" msgstr "Mapas GIS adicionales" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "Mapas de red" @@ -51637,158 +52179,152 @@ msgstr "No se ha podido conectar: %s" msgid "Latest events" msgstr "Últimos eventos" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "Cambiando a estado desconocido" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "Alerta validada manualmente" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "Cambiando de crítico a advertencia" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "Entrando en estado crítico" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "Subiendo a estado normal" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "Cambiando de normal a advertencia" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "El servidor Discovery ha detectado un host nuevo" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "Agente nuevo creado" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "Tipo desconocido:" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "Solo nuevos" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "Solo en proceso" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "Solo no validados" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "En proceso" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "No validado" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "Cambiar propietario" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "Cambiar estado" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "Añadir comentario" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983 msgid "Delete event" msgstr "Eliminar evento" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "Respuesta personalizada" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "Información extendida" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "Error al conectarse al nodo" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "Detalles del agente" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "Este agente pertenece a la Metaconsola, no es posible mostrarlo" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "Ver campos personalizados" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "Detalles del módulo" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "No asignado" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "Ir a la vista general de datos" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "Datos personalizados no válidos: %s" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "Primer evento" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "Último evento" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "Autovalidado" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "ID extra" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "No hay comentarios" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "por" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "Evento # %d" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "Ejecutando comando: %s" @@ -51862,15 +52398,15 @@ msgstr "Error SAML" msgid "User is blocked" msgstr "El usuario está bloqueado" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "El usuario no existe." -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "El usuario solo puede usar la API." -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Metaconsola MR (%d) es diferente a esta (%d)" @@ -51907,35 +52443,35 @@ msgstr "Grupos de módulos" msgid "policies" msgstr "Políticas" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "Buscar grupo" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "Mostrar módulos no iniciados" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "Buscar agente" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "Mostrar agentes no iniciados" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "Mostrar jerarquía completa" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "Mostrar solo deshabilitados" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "Buscar módulo" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "Búsqueda de árbol" @@ -52015,34 +52551,29 @@ msgstr "" "Si se marca la casilla, se usará el tamaño de bloque de la configuración " "global." -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "Tema" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "Este cambio solo se aplicará a los nodos" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "Configuración de usuario eHorus" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "Configuración de usuario de Integria" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "You can not change your user info under the current authentication scheme" msgstr "" "No puede cambiar la información de usuario con la configuración actual de " "autenticación" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "Este usuario no tiene asignado ningún perfil/grupo" @@ -52072,42 +52603,42 @@ msgstr "Puede encontrar más ayuda en wiki Site " +"news." +msgstr "" +"Puede reemplazar este mensaje por uno personalizado en Herramientas de " +"administrador -> Novedades del sitio." + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "Tablón de noticias" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "Actividad reciente" @@ -54747,7 +55318,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "No puede utilizar este nodo hasta que el sistema esté unificado" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "Navegue a %s para unificar el sistema" @@ -54769,7 +55340,7 @@ msgstr "" "\t\t\tTen en cuenta que todos los intentos de acceso a esta página son " "guardados en los logs de seguridad de la base de datos de Pandora FMS" -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "Gestión" @@ -54807,14 +55378,14 @@ msgstr "Ir a la página web de %s" msgid "Go to Login" msgstr "Ir a la pantalla de inicio" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" -msgstr "Entrar como administrador" - -#: ../../general/login_page.php:355 +#: ../../general/login_page.php:297 ../../general/login_page.php:355 msgid "Let's go" msgstr "Comenzar" +#: ../../general/login_page.php:302 +msgid "Login as admin" +msgstr "Entrar como administrador" + #: ../../general/login_page.php:409 msgid "View details" msgstr "Ver detalles" @@ -55022,6 +55593,62 @@ msgstr "" "El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no " "existe actualmente. No hay contenido de ayuda a mostrar." +#~ msgid "Ultimo contacto remoto" +#~ msgstr "Ultimo contacto remoto" + +#~ msgid "Generated automatically with the information provided for the user" +#~ msgstr "" +#~ "Generado automáticamente con la información proporcionada para el usuario" + +#~ msgid "SMNP" +#~ msgstr "SMNP" + +#~ msgid "SMNP community" +#~ msgstr "Comunidad SMNP" + +#~ msgid "Manage satellite hosts" +#~ msgstr "Administrar hosts satélite" + +#~ msgid "No maps defined" +#~ msgstr "No hay mapas definidos" + +#, fuzzy +#~| msgid "Width" +#~ msgid "Widtzzzzh" +#~ msgstr "Anchura" + +#, fuzzy +#~| msgid "No available data to show" +#~ msgid "No available data to showaaaa" +#~ msgstr "No hay datos disponibles para mostrar" + +#, fuzzy +#~| msgid "Module sanity" +#~ msgid "Module sanityX" +#~ msgstr "Estado de los módulos" + +#~ msgid "This change will only apply to nodes" +#~ msgstr "Este cambio solo se aplicará a los nodos" + +#~ msgid "" +#~ "To see the list of modules paginated, enable this option in the Styles " +#~ "Configuration." +#~ msgstr "" +#~ "Para ver la lista de módulos con paginación, habilita esta opción en la " +#~ "configuración de estilos." + +#~ msgid "There is no GIS data." +#~ msgstr "No hay datos GIS" + +#~ msgid "Events info (24hr.)" +#~ msgstr "Información de eventos (24h)" + +#~ msgid "Time Sound" +#~ msgstr "Programar sonido" + +#~ msgid "Events not found" +#~ msgstr "Eventos no encontrados" + #~ msgid "Calendars" #~ msgstr "Calendarios" @@ -55247,15 +55874,6 @@ msgstr "" #~ msgid "Scheduled jobs" #~ msgstr "Tareas programadas" -#~ msgid "Go to module edition" -#~ msgstr "Ir a la edición de módulos" - -#~ msgid "Go to cluster edition" -#~ msgstr "Ir a la edición del clúster" - -#~ msgid "Go to agent edition" -#~ msgstr "Ir a \"editar agentes\"" - #~ msgid "PANDORA FMS" #~ msgstr "PANDORA FMS" @@ -56633,22 +57251,6 @@ msgstr "" #~ msgid "Transactional Map - Create Phase - " #~ msgstr "Mapa Transaccional - Crear Fase - " -#~ msgid "" -#~ "This extension makes registering server plugins an easier task.\n" -#~ "\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" -#~ "\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " -#~ "use Server Plugins.\n" -#~ "\t\t\t\t\t\t

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

Tiene más plugins a su disposición en la
Public Resource Library " - #~ msgid "" #~ "This node is configured with centralized mode. This page is for read only. " #~ "Go to metaconsole to manage the component groups." @@ -57423,9 +58025,6 @@ msgstr "" #~ msgid "First date" #~ msgstr "Primera fecha" -#~ msgid "Latest data" -#~ msgstr "Últimos datos" - #~ msgid "Purge event data over 90 days" #~ msgstr "Borrar los datos de eventos excepto el último trimestre" @@ -58634,9 +59233,6 @@ msgstr "" #~ msgid "Filter Networkmaps by %s" #~ msgstr "Filtrar mapas de red por %s" -#~ msgid "Welcome to Pandora FMS Web Console" -#~ msgstr "Bienvenido/a a la consola web de Pandora FMS" - #~ msgid "Pandora FMS Overview" #~ msgstr "Vista general de Pandora FMS" @@ -58825,12 +59421,6 @@ msgstr "" #~ msgid "There was an error with the zip file" #~ msgstr "Ha habido un error con el fichero zip" -#~ msgid "Generate file" -#~ msgstr "Generar archivo" - -#~ msgid "At least one option must be selected" -#~ msgstr "Se debe seleccionar al menos una opción" - #~ msgid "File is too large (> 500KB)" #~ msgstr "Archivo demasiado grande (>500KB)" @@ -61387,9 +61977,6 @@ msgstr "" #~ msgid "Event graph by user" #~ msgstr "Gráfico de eventos por usuario" -#~ msgid "Successfully set in process" -#~ msgstr "Establecido en modo \"en proceso\" correctamente" - #~ msgid "Marquee display" #~ msgstr "Mostrar marquesina" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index 32834010190b7745967a2dd9caeb448c27ff403e..c04c8000c23f3a283c74aeb4482c3ccc56ac48e8 100644 GIT binary patch delta 211420 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 delta 202633 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\n" "Language-Team: French \n" "Language: fr\n" @@ -18,17 +18,38 @@ msgstr "" "X-Launchpad-Export-Date: 2021-11-02 10:57+0000\n" "X-Generator: Poedit 3.0\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "%s consoles enregistrées" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "Serveurs" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "ID de la console" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -66,7 +87,7 @@ msgstr "ID de la console" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -195,21 +216,21 @@ msgstr "ID de la console" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -217,7 +238,7 @@ msgstr "ID de la console" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -229,8 +250,8 @@ msgstr "ID de la console" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -238,26 +259,26 @@ msgstr "ID de la console" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -265,12 +286,12 @@ msgstr "ID de la console" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -282,8 +303,7 @@ msgstr "ID de la console" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -291,8 +311,8 @@ msgstr "ID de la console" msgid "Description" msgstr "Description" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -302,29 +322,29 @@ msgstr "Description" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "Version" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "Dernière exécution" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "Type de console" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "Fuseau horaire" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -332,7 +352,7 @@ msgstr "Fuseau horaire" msgid "Public URL" msgstr "URL publique" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -351,20 +371,21 @@ msgstr "URL publique" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 ../../include/class/ConfigPEN.class.php:603 +#: ../../include/ajax/events.php:2309 ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "Options" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -388,15 +409,16 @@ msgstr "Options" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -404,7 +426,7 @@ msgstr "Options" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -432,8 +454,8 @@ msgstr "Options" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -452,26 +474,26 @@ msgstr "Options" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 ../../godmode/extensions.php:282 #: ../../godmode/extensions.php:290 ../../godmode/extensions.php:300 #: ../../godmode/extensions.php:308 ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -480,16 +502,16 @@ msgstr "Options" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 ../../godmode/setup/news.php:354 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 ../../godmode/setup/news.php:358 #: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:196 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -497,38 +519,38 @@ msgstr "Options" #: ../../godmode/reporting/map_builder.php:555 #: ../../godmode/reporting/graphs.php:419 ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 ../../godmode/category/category.php:190 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -540,7 +562,7 @@ msgstr "Options" msgid "Delete" msgstr "Supprimer" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." @@ -549,7 +571,7 @@ msgstr "" "supprimer les options de config.php de votre console ou supprimer toute la " "console.
" -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 @@ -576,23 +598,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -601,23 +623,24 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834 msgid "Cancel" msgstr "Annuler" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -627,24 +650,25 @@ msgstr "Annuler" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 #: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "Succès" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -654,8 +678,8 @@ msgstr "Succès" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -669,19 +693,21 @@ msgstr "Succès" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "Échoué" @@ -707,21 +733,21 @@ msgstr "Échoué" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -730,20 +756,20 @@ msgstr "Échoué" #: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74 +#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "Alertes" @@ -766,7 +792,7 @@ msgstr "Jours Spéciaux" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -786,10 +812,10 @@ msgstr "Jours Spéciaux" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 -#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537 +#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -798,7 +824,7 @@ msgstr "Jours Spéciaux" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -817,7 +843,7 @@ msgstr "Métaconsole" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -835,10 +861,10 @@ msgstr "Métaconsole" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 -#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539 +#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -847,7 +873,7 @@ msgstr "Métaconsole" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -872,7 +898,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -899,7 +925,7 @@ msgstr "Identifiant" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -922,7 +948,7 @@ msgstr "Identifiant" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -985,25 +1011,25 @@ msgstr "Identifiant" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1012,44 +1038,49 @@ msgstr "Identifiant" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1117,7 +1148,7 @@ msgstr "Nom" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1133,31 +1164,31 @@ msgstr "Nom" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1167,7 +1198,7 @@ msgstr "Nom" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1177,10 +1208,10 @@ msgstr "Nom" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1195,10 +1226,10 @@ msgstr "Nom" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1208,43 +1239,45 @@ msgstr "Nom" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 #: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1252,37 +1285,37 @@ msgstr "Nom" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 -#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332 #: ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Groupe" @@ -1297,7 +1330,7 @@ msgstr "Groupe" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1308,16 +1341,16 @@ msgstr "Groupe" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "Recherche libre" @@ -1369,8 +1402,8 @@ msgstr "Recherche libre" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1395,50 +1428,50 @@ msgstr "Recherche libre" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1464,27 +1497,27 @@ msgstr "Configurer jour spécial" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 -#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257 +#: ../../operation/inventory/inventory.php:682 +#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302 msgid "Date" msgstr "Date" @@ -1500,7 +1533,7 @@ msgstr "Date" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "Lundi" @@ -1516,7 +1549,7 @@ msgstr "Lundi" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "Mardi" @@ -1532,7 +1565,7 @@ msgstr "Mardi" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "Mercredi" @@ -1548,7 +1581,7 @@ msgstr "Mercredi" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "Jeudi" @@ -1564,7 +1597,7 @@ msgstr "Jeudi" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "Vendredi" @@ -1580,7 +1613,7 @@ msgstr "Vendredi" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "Samedi" @@ -1596,7 +1629,7 @@ msgstr "Samedi" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "Dimanche" @@ -1668,7 +1701,7 @@ msgstr "Même jour de la semaine" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1703,7 +1736,7 @@ msgstr "Même jour de la semaine" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1718,24 +1751,24 @@ msgstr "Même jour de la semaine" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1743,18 +1776,18 @@ msgstr "Même jour de la semaine" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1762,24 +1795,24 @@ msgstr "Même jour de la semaine" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1791,7 +1824,7 @@ msgstr "Mise à jour" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "Chargement, cette opération peut prendre plusieurs minutes..." @@ -1817,7 +1850,7 @@ msgstr "Cochez cette case si vous voulez écraser les jours qui existent déjà. #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "Téléverser" @@ -1841,25 +1874,26 @@ msgstr "Afficher plage : " #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1874,7 +1908,7 @@ msgstr "Par défaut" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "Dimanche" @@ -1883,7 +1917,7 @@ msgstr "Dimanche" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "Lundi" @@ -1892,7 +1926,7 @@ msgstr "Lundi" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "Mardi" @@ -1901,7 +1935,7 @@ msgstr "Mardi" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "Mercredi" @@ -1910,7 +1944,7 @@ msgstr "Mercredi" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "Jeudi" @@ -1919,7 +1953,7 @@ msgstr "Jeudi" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "Vendredi" @@ -1928,7 +1962,7 @@ msgstr "Vendredi" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "Samedi" @@ -2045,7 +2079,7 @@ msgstr "Afficher les modèles" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2066,34 +2100,34 @@ msgstr "Afficher les modèles" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2110,12 +2144,12 @@ msgstr "Modifier" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2152,7 +2186,7 @@ msgstr "Modifier" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2166,27 +2200,29 @@ msgstr "Modifier" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283 #: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2198,10 +2234,10 @@ msgstr "Modifier" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393 +#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392 #: ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 @@ -2217,7 +2253,7 @@ msgstr "Modifier" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2226,25 +2262,26 @@ msgstr "Modifier" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2257,12 +2294,12 @@ msgstr "Êtes-vous sûr(e) ?" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401 msgid "Remove" msgstr "Supprimer" @@ -2291,11 +2328,12 @@ msgstr "Vue de grappe" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260 +#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2303,17 +2341,17 @@ msgstr "Vue de grappe" #: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Surveillance" @@ -2326,13 +2364,13 @@ msgid "Clusters" msgstr "Grappes" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2349,46 +2387,46 @@ msgstr "Grappes" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354 #: ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125 +#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952 +#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2401,27 +2439,27 @@ msgstr "Grappes" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "Type" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "Nœuds" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2432,8 +2470,8 @@ msgstr "Nœuds" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2469,15 +2507,15 @@ msgstr "Nœuds" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2486,63 +2524,72 @@ msgstr "Nœuds" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 -#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626 +#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 -#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "État" @@ -2566,10 +2613,10 @@ msgstr "État" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "Filtrer le groupe" @@ -2615,27 +2662,27 @@ msgstr "Éditer ce grappe" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2646,24 +2693,24 @@ msgstr "Désactivé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "Mode silencieux" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "Agent dans temps d'arrêt programmé" @@ -2688,25 +2735,24 @@ msgstr "Forcer calcule d'état du grappe" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "Système d'exploitation" @@ -2716,12 +2762,12 @@ msgid "IP address" msgstr "Adresse IP" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2734,92 +2780,92 @@ msgstr "Adresse IP" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "S.O." -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2830,12 +2876,12 @@ msgid "Cluster agent" msgstr "Agent de grappe" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "Événements (Dernières 24h)" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "Recharger" @@ -2853,24 +2899,24 @@ msgstr "Nouveau widget" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "Mode plein écran" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "Retour au mode normal" @@ -2898,11 +2944,11 @@ msgstr "Mettre à jour le tableau de bord" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2927,23 +2973,23 @@ msgstr "Afficher lien au panneau de configuration" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175 -#: ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175 +#: ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "Rafraîchir" @@ -2955,9 +3001,10 @@ msgstr "Ajouter cellule" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -2968,9 +3015,9 @@ msgid "Hello! These are the tips of the day." msgstr "Bonjour! Ce sont les astuces du jour." #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" -msgstr "Afficher les conseils d’utilisation au démarrage" +msgstr "Afficher les astuces d’utilisation au démarrage" #: ../../views/dashboard/tipsWindow.php:81 msgid "See more info" @@ -3008,11 +3055,11 @@ msgstr "Panneaux de configuration" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357 #: ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3024,7 +3071,7 @@ msgstr "Panneaux de configuration" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3048,7 +3095,7 @@ msgstr "Supprimé correctement" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3065,18 +3112,18 @@ msgstr "Supprimé correctement" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3105,15 +3152,15 @@ msgstr "Favori" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "Plein écran" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3121,8 +3168,8 @@ msgstr "Plein écran" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "Copier" @@ -3148,8 +3195,8 @@ msgid "Please select widget" msgstr "Sélectionnez un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "Jusqu'au suivant" @@ -3170,7 +3217,7 @@ msgstr "Favori" msgid "Configure widget" msgstr "Configurer le widget" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "Supprimer le widget" @@ -3187,13 +3234,13 @@ msgstr "Changer chaque" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "Précédent" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "Arrêter" @@ -3221,9 +3268,9 @@ msgstr "Pause" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "Suivant" @@ -3263,7 +3310,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "Gestionnaire de configuration réseau" @@ -3336,7 +3383,7 @@ msgid "Device model" msgstr "Modèle d'appareil" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "Méthode de connexion" @@ -3358,11 +3405,11 @@ msgstr "Connecter utilisant telnet" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3413,7 +3460,7 @@ msgstr "État NCM" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "Sauvegarder" @@ -3441,10 +3488,10 @@ msgstr "Type de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "Résultat" @@ -3507,9 +3554,9 @@ msgstr "Exécuter skipper" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "Aperçu" @@ -3538,7 +3585,7 @@ msgstr "Aperçu" #: ../../enterprise/operation/services/services.list.php:208 #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3546,42 +3593,42 @@ msgstr "Aperçu" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 -#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815 -#: ../../general/logon_ok.php:151 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820 +#: ../../general/logon_ok.php:160 msgid "Unknown" msgstr "Inconnu" @@ -3666,31 +3713,32 @@ msgstr "Différences" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 -#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309 +#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310 #: ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "Actions" @@ -3744,9 +3792,9 @@ msgstr "Différence entre : sauvegarde - sélectionné" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255 +#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254 #: ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 @@ -3754,6 +3802,7 @@ msgstr "Différence entre : sauvegarde - sélectionné" #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "Configuration" @@ -3822,11 +3871,11 @@ msgid "Customize script execution" msgstr "Personnaliser l’exécution des scripts" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "Exécuter" @@ -3841,13 +3890,13 @@ msgstr "Exécuter" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4009,7 +4058,7 @@ msgstr "Configurez les agents pour l'utilisation de modèles NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Adresse" @@ -4033,14 +4082,14 @@ msgstr "Dernière tâche en file d’attente" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "Dernière mise à jour" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4048,7 +4097,7 @@ msgstr "Dernière mise à jour" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4100,7 +4149,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4126,51 +4175,51 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846 -#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856 +#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "Attention" @@ -4189,15 +4238,15 @@ msgstr "icône" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "Parent" @@ -4223,9 +4272,9 @@ msgstr "Parent" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4246,12 +4295,12 @@ msgstr "Parent" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4344,8 +4393,8 @@ msgstr "Parent" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4356,7 +4405,7 @@ msgstr "Parent" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4369,40 +4418,40 @@ msgstr "Parent" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4419,13 +4468,13 @@ msgstr "Parent" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4452,23 +4501,23 @@ msgstr "Parent" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4482,25 +4531,25 @@ msgstr "Parent" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4510,24 +4559,24 @@ msgstr "Parent" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4539,6 +4588,8 @@ msgstr "Parent" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4554,29 +4605,28 @@ msgstr "Parent" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "Aucun" @@ -4584,12 +4634,21 @@ msgstr "Aucun" msgid "Create visualmap" msgstr "Créer une carte visuelle" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "Serveurs %s" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "Aucun serveur configuré dans la base de données" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4600,7 +4659,7 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4616,10 +4675,10 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4632,12 +4691,12 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4646,53 +4705,53 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../include/functions_reports.php:765 #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 -#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745 -#: ../../include/functions_html.php:5982 +#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755 +#: ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "Modules" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "Retard" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "Retard moyen(sec)/Modules retardés" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "T/Q" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "Threads/Modules en attente" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "Mis à jour" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4701,46 +4760,53 @@ msgstr "Mis à jour" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "Op." -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "Ceci est un serveur principal" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "de" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "Gérer la configuration du serveur" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" "Les modules sur ce serveur cesseront de fonctionner. Voulez-vous continuer ?" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "Information tactique du serveur" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "File d'attente de modules excessive" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4753,7 +4819,7 @@ msgstr "" "associé à un retard de supervision, avec des modules qui deviennent inconnus, " "essayez d’augmenter le nombre de threads." -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4761,39 +4827,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "Fermer" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "centre de commande" @@ -4808,7 +4876,7 @@ msgstr "" "Veuillez aller vers %s" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "Gestion des étiquettes" @@ -4825,7 +4893,7 @@ msgstr "Gestion du système d'exploitation" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "Groupes de modules" @@ -4869,56 +4937,56 @@ msgid "Successfully update" msgstr "Mis à jour correctement" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "Styles visuels" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "Format de la date" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "Exemple" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "Horodatage, comparaison d’heure ou mode compact" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "Date en comparaison" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "Horodatage littéral" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "Mode compact" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "Couleur du graphique #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "Couleur du graphique #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "Couleur du graphique #3" @@ -4932,10 +5000,10 @@ msgstr "La précision doit être un nombre entier entre 0 et 5" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "Centile" @@ -4946,46 +5014,46 @@ msgstr "Afficher le centile 95 dans les graphiques" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "Valeur pour l'interface graphique" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "Longueur de bloc pour la mise en page" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "Nombre d'éléments dans le Graphique personnalisé" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "Utiliser des coins arrondis" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "Table adapté au contenu" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "Désactiver l'aide" @@ -5012,10 +5080,10 @@ msgstr "Désactiver l'aide" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5052,15 +5120,15 @@ msgstr "Désactiver l'aide" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5075,11 +5143,11 @@ msgstr "Désactiver l'aide" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5087,28 +5155,28 @@ msgstr "Désactiver l'aide" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 -#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 -#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 +#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614 #: ../../include/functions.php:1127 ../../include/functions.php:1387 -#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96 +#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428 #: ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5118,23 +5186,23 @@ msgstr "Désactiver l'aide" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984 #: ../../operation/heatmap.php:122 ../../operation/tree.php:205 -#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5145,24 +5213,24 @@ msgstr "Désactiver l'aide" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "Tout" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "Sur les graphiques booléens" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "Vue Graphique TIP" @@ -5171,17 +5239,17 @@ msgid "This option may cause performance issues" msgstr "Cette option peut entraîner des problèmes de performances" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "Afficher uniquement la moyenne par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "Afficher MAX/MOY/MIN par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "Mode du graphique" @@ -5190,16 +5258,16 @@ msgid "Zoom graphs:" msgstr "Graphiques de zoom :" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "Type de graphiques de module" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258 @@ -5210,16 +5278,16 @@ msgstr "Zone" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465 #: ../../operation/reporting/graph_viewer.php:356 @@ -5238,33 +5306,33 @@ msgstr "Nombre d'éléments récupérés pour chaque instance dans certaines vue #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "secondes" @@ -5274,45 +5342,45 @@ msgstr "secondes" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "minutes" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "heures" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "jours" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "mois" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "années" @@ -5371,66 +5439,66 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles" #: ../../godmode/agentes/planned_downtime.editor.php:1493 #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 -#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402 -#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401 +#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386 msgid "Add" msgstr "Ajouter" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "Supprimer intervalle" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "Afficher seulement le nom du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "Afficher le nom du groupe au lieu de l'icône du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "Affichage des données des modules proc sous un format différent" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "Texte à afficher lorsque l'état du module proc est OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "Texte à afficher lorsque l'état du module proc est critique" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "Favicon personnalisé" @@ -5443,7 +5511,7 @@ msgstr "" "fichier doit être au format .ico d’une taille de 16x16." #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "Logo d'arrière-plan personnalisé" @@ -5463,108 +5531,107 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "Vue" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "Logo personnalisé (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "Le logo personnalisé s'est effondré (menu)" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "Logo personnalisé (fond blanc d’en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "Logo personnalisé (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "Splash personnalisé (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "Nom du produit" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "Mention de copyright" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "% d’opacité d’arrière-plan (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "Titre (en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "Sous-titre (en-tête)" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "Titre 1 (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "Titre 2 (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "URL docs (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "URL assistance (connexion)" @@ -5574,17 +5641,17 @@ msgstr "Famille de polices de graphiques" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "Effets visuels et animation" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "Arrière-plan aléatoire (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "Vue console visuelle legacy" @@ -5595,26 +5662,26 @@ msgstr "" "visuelle" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "heure" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "Expiration du cache par défaut" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "Pas de cache" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "Intervalle de rafraîchissement par défaut sur la console visuelle" @@ -5623,34 +5690,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "Cet intervalle aura un effet sur les pages de la console visuelle" #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "Utiliser 1024 lorsque l’unité de module est en octets" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "Utilisez toujours 1000" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "Utilisez toujours 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "Multiplicateur de données à utiliser dans les graphiques/données" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "Non permettre l’orientation de la console visuelle dans la vue mobile" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "Afficher le cadre de l’élément déclenché par l’alerte" @@ -5659,7 +5728,7 @@ msgid "Reports configuration" msgstr "Configuration des rapports" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "Afficher l'information du rapport avec description" @@ -5672,7 +5741,7 @@ msgstr "" "rapports et modèles." #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "Page de couverture du rapport personnalisé" @@ -5686,21 +5755,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "Taille de la police PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "Taille de la police HTML pour SLA (em)" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "Hauteur de l'image du graphique pour des rapports HTML" @@ -5714,21 +5783,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "Séparateur CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "Séparateur décimale CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "Description de l'intervalle" @@ -5745,9 +5814,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "Logo personnalisé" @@ -5772,17 +5841,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "Page de couverture du rapport personnalisé" @@ -5790,8 +5859,8 @@ msgstr "Page de couverture du rapport personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "En-tête" @@ -5800,23 +5869,93 @@ msgstr "En-tête" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "Première page" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "Informations sur la console visuelle héritée" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" +"La console visuelle en mode héritée ne sera pas prise en charge à partir de la " +"version LTS 772" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "Aperçu du logo" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "Aperçu du Splash" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "Aperçu du fond d'écran" @@ -5948,12 +6087,12 @@ msgstr "Serveur source" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "Récursion du groupe" @@ -5998,7 +6137,7 @@ msgstr "Serveur de destination" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6068,8 +6207,8 @@ msgstr "Déplacer" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias de l'agent" @@ -6085,8 +6224,8 @@ msgstr "Nœud cible" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6100,9 +6239,9 @@ msgstr "Nœud cible" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6133,7 +6272,7 @@ msgstr "Priorité" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "Étape" @@ -6159,8 +6298,8 @@ msgstr "Créant un agent dans le nœud cible" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6189,12 +6328,12 @@ msgid "checking migration requirements" msgstr "vérificant des exigences de migration" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "Serveur supprimé correctement" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "Problème de suppression du serveur" @@ -6220,12 +6359,12 @@ msgstr "Erreur de mise à jour de la chaîne de traduction" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "Langue" @@ -6255,7 +6394,7 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6263,8 +6402,8 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6281,23 +6420,23 @@ msgstr "Texte libre pour la recherche (*)" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484 -#: ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485 +#: ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6305,13 +6444,12 @@ msgstr "Texte libre pour la recherche (*)" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Rechercher" @@ -6331,8 +6469,8 @@ msgstr "Rechercher" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6342,14 +6480,14 @@ msgstr "Rechercher" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6360,16 +6498,17 @@ msgstr "Rechercher" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6398,7 +6537,7 @@ msgstr "Personnaliser la traduction" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "Aucune donnée à afficher" @@ -6412,14 +6551,14 @@ msgstr "Aucune donnée à afficher" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "Personnaliser" @@ -6446,8 +6585,8 @@ msgid "Imei" msgstr "Imei" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "Relations" @@ -6483,21 +6622,21 @@ msgstr "Afficher les relations de liste" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6515,7 +6654,7 @@ msgstr "Adresse du nœud" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6537,7 +6676,7 @@ msgstr "Adresse du nœud" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6547,26 +6686,26 @@ msgstr "Adresse du nœud" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6575,7 +6714,7 @@ msgstr "Adresse du nœud" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "Action" @@ -6594,7 +6733,7 @@ msgstr "Mots de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "Activer la politique de mot de passe" @@ -6629,7 +6768,7 @@ msgstr "Activer la politique de mot de passe" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6638,11 +6777,11 @@ msgstr "Activer la politique de mot de passe" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6657,13 +6796,13 @@ msgstr "Activer la politique de mot de passe" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "Oui" @@ -6699,7 +6838,7 @@ msgstr "Oui" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6708,11 +6847,11 @@ msgstr "Oui" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6723,28 +6862,28 @@ msgstr "Oui" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "Non" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "Taille minimale du mot de passe" @@ -6756,7 +6895,7 @@ msgstr " Caractères" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "Expiration du mot de passe" @@ -6772,7 +6911,7 @@ msgstr " Jours" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "Utilisateur bloqué en cas d'erreur de connexion" @@ -6784,7 +6923,7 @@ msgstr " Minutes" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "Nombre de tentatives de connexion infructueuses" @@ -6800,56 +6939,56 @@ msgstr " Tentatives" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "Comparer mot de passe précédent" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "Activer historique de mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "Appliquer la politique de mot de passe aux administrateurs" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "Forcer le changement mot de passe lors de la première connexion" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "Le mot de passe doit contenir des chiffres" #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "Le mot de passe doit contenir des symboles" #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "Activer la réinitialisation du mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "Liste de mots exclus pour les mots de passe" @@ -6919,56 +7058,56 @@ msgstr "" "noter que ces paramètres ignoreront cette configuration de la console." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "Configuration du courriel" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "À partir du répertoire" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "À partir d'un nom" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "Serveur SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "Port SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "Encodage" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "aucun" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "Utilisateur du courriel" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "Mot de passe du courriel" @@ -6992,11 +7131,11 @@ msgstr "Configuration des mots de passe" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "Visualiseur de journaux" @@ -7004,12 +7143,12 @@ msgstr "Visualiseur de journaux" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "Base de Données de l'historique" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "Authentification" @@ -7026,7 +7165,7 @@ msgstr "Configuration de la performance" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7043,7 +7182,7 @@ msgid "Mail" msgstr "Email" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "Notifications" @@ -7115,8 +7254,8 @@ msgstr "Mise à jour en ligne en ligne" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104 #: ../../godmode/module_library/module_library_view.php:48 @@ -7169,37 +7308,19 @@ msgstr "Appliquer les politiques" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73 +#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73 msgid "Policies" msgstr "Politiques" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "Serveurs" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "Appliquer" @@ -7295,8 +7416,8 @@ msgstr "Erreur de suppression" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7308,7 +7429,7 @@ msgstr "Activé correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7320,8 +7441,8 @@ msgstr "Erreur d'activation" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7396,29 +7517,30 @@ msgstr "%s édition des éléments de la Métaconsole" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "Étiquette" @@ -7508,12 +7630,12 @@ msgstr "Port de la BD" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "Options avancées" @@ -7623,7 +7745,7 @@ msgstr "Synchronisation de la base de données" #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "Gérer" @@ -7666,7 +7788,7 @@ msgstr "Erreur de création du lien" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7675,7 +7797,7 @@ msgstr "Erreur de création du lien" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7695,7 +7817,7 @@ msgstr "Problème de modification du lien" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7712,21 +7834,21 @@ msgstr "Problème de modification du lien" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7784,7 +7906,7 @@ msgstr "Appliquer les politiques" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "Principal" @@ -7860,41 +7982,49 @@ msgstr "Collections" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "Données" @@ -7954,7 +8084,7 @@ msgstr "Collection créée correctement" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "Fichiers" @@ -8060,7 +8190,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "Modifier le fichier" @@ -8151,27 +8281,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "Définir temps" @@ -8183,28 +8314,29 @@ msgstr "Définir temps" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "Temps" @@ -8215,28 +8347,29 @@ msgstr "Temps" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "Heure" @@ -8247,28 +8380,29 @@ msgstr "Heure" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "Minute" @@ -8279,27 +8413,28 @@ msgstr "Minute" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "Seconde" @@ -8310,36 +8445,37 @@ msgstr "Seconde" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "Maintenant" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8364,17 +8500,17 @@ msgstr "Mot de passe de connexion automatique (hash)" #: ../../enterprise/meta/advanced/metasetup.setup.php:110 #: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838 msgid "System" msgstr "Système" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 -#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937 +#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942 msgid "Database" msgstr "Base de données" @@ -8434,7 +8570,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8443,7 +8579,7 @@ msgstr "Afrique" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8452,7 +8588,7 @@ msgstr "Amérique" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8461,7 +8597,7 @@ msgstr "Antarctique" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8470,7 +8606,7 @@ msgstr "Arctique" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8479,7 +8615,7 @@ msgstr "Asie" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8488,7 +8624,7 @@ msgstr "Atlantique" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8497,7 +8633,7 @@ msgstr "Australie" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8506,7 +8642,7 @@ msgstr "Europe" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8515,7 +8651,7 @@ msgstr "Indien" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8524,7 +8660,7 @@ msgstr "Pacifique" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8537,7 +8673,6 @@ msgstr "Modifier le fuseau horaire" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8582,9 +8717,9 @@ msgstr "Forcer l’utilisation d’une URL publique définie)." #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "Désactiver les filtres personnalisés d'affichage en temps réel" @@ -8646,7 +8781,7 @@ msgstr "Activer la mise à jour de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "Taille de la collection" @@ -8707,34 +8842,38 @@ msgstr "Emplacement du journal : pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "Activer le rapport de console" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "Vérifier l’intervalle de conexion" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and a " "New event with that Extra ID is received, it will be created as "In " "process" instead." msgstr "" -"S’il y a des événements « En cours » avec un ID supplémentaire spécifique et " -"qu’un nouvel événement avec cet ID supplémentaire est reçu, il sera créé en " -"tant que « En cours » à la place." +"S’il y a quelques "En processus" événements avec un Extra ID " +"spécifique et un Nouveau événement avec ledit Extra ID est recevu, il sera " +"créé en tant que "En processus" au lieu." #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" msgstr "" -"Conserver l’état en cours pour les nouveaux événements avec ID supplémentaire" +"Maintenir l’état En processus pour des nouveaux événements avec un ID extra" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "Erreur de connexion à %s" @@ -8795,23 +8934,23 @@ msgstr "%s alertes de politique supprimées" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "Source" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610 +#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "Cette Métaconsole" @@ -8821,26 +8960,26 @@ msgstr "Cette Métaconsole" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "Politique" @@ -8889,12 +9028,12 @@ msgstr "Exécuté :" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "il y a" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "Performance" @@ -8912,13 +9051,13 @@ msgstr "Utiliser des statistiques en temps réel" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 -#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842 +#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "Nombre de jours maximum avant la suppression d'événements d'audit" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 -#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882 +#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "Heures par défaut pour la visualisation des événements" @@ -8945,26 +9084,26 @@ msgid "maximum number of events to be displayed per node" msgstr "nombre maximale d’événements à montrer par noeud" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 -#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944 +#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "Limite de ligne dans le journal csv" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918 +#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "Nombre maximum de champs macro de données" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 -#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874 +#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "Limite d’événements par requête" #: ../../enterprise/meta/advanced/metasetup.performance.php:255 #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "Nombre de jours maximum avant le nettoyage" @@ -9022,7 +9161,7 @@ msgid "To manage collections you must activate centralized management" msgstr "Pour gérer les collections, vous devez activer la gestion centralisée" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "Rechercher par nom d'utilisateur, nom complet ou courriel" @@ -9037,7 +9176,7 @@ msgstr "Erreur : le répertoire principal de la collection n'existe pas." #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "Collection" @@ -9051,7 +9190,7 @@ msgstr "Nom abrégé" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "Êtes-vous sûr(e) de vouloir le supprimer ?" @@ -9105,12 +9244,12 @@ msgid "There are no collections defined yet." msgstr "Aucune collection définie jusqu'à présent." #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "Opération supprimée correctement de la file d'attente" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "Impossible de supprimer l'opération de la file d'attente" @@ -9118,42 +9257,42 @@ msgstr "Impossible de supprimer l'opération de la file d'attente" #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 -#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78 -#: ../../general/main_menu.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 +#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79 +#: ../../general/main_menu.php:86 msgid "Operation" msgstr "Opération" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "Appliquer (base de données et fichiers)" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "Appliquer (seulement base de données)" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "Compléter" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "Inachevé" @@ -9164,13 +9303,13 @@ msgstr "Inachevé" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9180,18 +9319,18 @@ msgstr "Inachevé" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305 +#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521 -#: ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522 +#: ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9199,32 +9338,33 @@ msgstr "Inachevé" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 -#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 +#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "Filtre" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "Afficher les options" @@ -9242,21 +9382,21 @@ msgstr "Afficher les options" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "Serveur" @@ -9266,11 +9406,11 @@ msgstr "Serveur" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9287,8 +9427,8 @@ msgstr "Serveur" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 @@ -9305,34 +9445,34 @@ msgstr "Serveur" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "Agents" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9342,18 +9482,18 @@ msgid "Progress" msgstr "En cours" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "Politique " #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "Temps d’attente de l’application de la politique" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "Supprimer de la file d'attente" @@ -9431,17 +9571,17 @@ msgstr "Vider la file" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9457,55 +9597,55 @@ msgstr "Vider la file" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9514,22 +9654,24 @@ msgstr "Vider la file" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9540,20 +9682,20 @@ msgstr "Vider la file" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "Agent" @@ -9575,14 +9717,13 @@ msgstr "Agent" #: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "Adresse IP" @@ -9604,43 +9745,43 @@ msgstr "État des agents" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "Normal" @@ -9677,24 +9818,24 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9703,18 +9844,18 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "Critique" @@ -9739,15 +9880,16 @@ msgstr "Vue des champs personnalisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "Récursion" @@ -9760,21 +9902,21 @@ msgstr "Récursion" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "Anormal" @@ -9785,30 +9927,30 @@ msgstr "Anormal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "Non initialisé" @@ -9824,14 +9966,14 @@ msgstr "Module d’état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "Sauvegarder le filtre" @@ -9840,21 +9982,20 @@ msgstr "Sauvegarder le filtre" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "Charger le filtre" @@ -9868,8 +10009,8 @@ msgid "Custom Fields Data" msgstr "Données des champs personnalisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "Rechercher module" @@ -9878,8 +10019,8 @@ msgstr "Rechercher module" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9888,11 +10029,11 @@ msgstr "Afficher" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9903,170 +10044,170 @@ msgstr "Exporter un fichier en CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "Traitement en cours" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "Agents en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "Agents en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "Agents en état OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "Moniteur en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "Moniteur en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "Moniteur en état normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "Moniteur inconnu" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "Moniteur non initialisé" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "Agents par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "Moniteurs par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "Agents critiques" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "Agents d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "Agents normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "Modules en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "Modules en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "Modules normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "Modules inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "Modules non initialisés" @@ -10098,7 +10239,7 @@ msgstr "Aucune recherche personnalisée n’est définie." #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10107,9 +10248,9 @@ msgstr "Confirmer " #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "Créer un agent" @@ -10195,18 +10336,18 @@ msgstr "Créer une alerte" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10215,41 +10356,41 @@ msgstr "Créer une alerte" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10258,17 +10399,19 @@ msgstr "Créer une alerte" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10276,16 +10419,16 @@ msgstr "Créer une alerte" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "Module" @@ -10301,18 +10444,18 @@ msgstr "Module" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "Modèle" @@ -10392,8 +10535,8 @@ msgstr "Créer une nouvelle action" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10414,8 +10557,8 @@ msgstr "Configuration avancée" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "Créer un module" @@ -10454,11 +10597,11 @@ msgstr "Caractères non valides trouvés dans le nom du module" #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "Assistant" @@ -10473,8 +10616,8 @@ msgstr "Gérer les modules" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "Rechercher agent" @@ -10488,18 +10631,22 @@ msgstr "Sélectionner l'agent où le module sera créé" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 +#: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "Retour" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "Créer un module" @@ -10576,14 +10723,14 @@ msgstr "Veuillez définir un intervalle" #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "Type de module" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "Moniteur" @@ -10598,7 +10745,7 @@ msgstr "Vérification web" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10606,15 +10753,17 @@ msgstr "Vérification web" #: ../../godmode/reporting/reporting_builder.item_editor.php:1720 #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085 -#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095 +#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 -#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 +#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Groupe de modules" @@ -10634,14 +10783,14 @@ msgstr "Assistant étape par étape" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "Avancé" @@ -10652,7 +10801,7 @@ msgstr "Cliquez sur Créer pour continuer" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "Veuillez sélectionner un module" @@ -10662,7 +10811,7 @@ msgstr "Veuillez sélectionner un module" #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10670,8 +10819,8 @@ msgstr "Veuillez sélectionner un module" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "Terminer" @@ -10705,8 +10854,8 @@ msgstr "Vide" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "Nouveau" @@ -10726,18 +10875,18 @@ msgid "Please, select an agent" msgstr "Veuillez sélectionner un agent" #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10746,10 +10895,10 @@ msgstr "Chargement en cours" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10773,24 +10922,25 @@ msgstr "Un autre agent existe déjà avec le même nom" #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "Agent intervalle x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we do " "not recommend its use." msgstr "" -"Cette fonctionnalité sera supprimée dans la version 771 et ses\n" -" fonctions seront transférées vers différents outils de la " -"Métaconsole (opérations en masse, édition des alertes de l’agent, etc.).\n" -" Les fonctions actuelles de l’assistant sont minimes et " +"Cette fonctionnalité disparaîtra dans la version 773 et ses\n" +" Fonctions transférées aux différentes aux différents " +"outils de la Métaconsole (opérations en bloc, édition d’alerte des agents, " +"etc.).\n" +" Les fonctions actuelles de l’assistant sont minimales et " "nous ne recommandons pas son utilisation." #: ../../enterprise/meta/monitoring/group_view.php:59 @@ -10799,9 +10949,10 @@ msgstr "Vue du groupe" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "Affichage du groupe" @@ -10848,9 +10999,9 @@ msgid "% Monitors Not init" msgstr "% moniteurs non initialisés" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "Aucun agent défini" @@ -10865,15 +11016,15 @@ msgstr "Groupe ou étiquette" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "Total" @@ -10882,18 +11033,18 @@ msgstr "Total" #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 #: ../../include/functions.php:1284 ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "Alerte déclenchée" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this reason, " @@ -10905,9 +11056,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10931,14 +11084,14 @@ msgstr "Rapport de l'état" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952 +#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220 #: ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "Événements" @@ -10962,14 +11115,14 @@ msgstr "Afficher les événements" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "Créer un filtre" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "Réponses des événements" @@ -10979,24 +11132,23 @@ msgstr "Réponses des événements" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "Champs personnalisés" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "Réponses" @@ -11011,25 +11163,25 @@ msgid "Fields" msgstr "Champs" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "Champs disponibles" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "Champs sélectionnés" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "Ajouter champs à sélectionner" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "Supprimer champs pour sélectionner" @@ -11040,7 +11192,7 @@ msgid "Show event fields" msgstr "Afficher champs d'événement" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" @@ -11098,9 +11250,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "Classer" @@ -11191,7 +11343,7 @@ msgstr "Erreur Nom dupliqué" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "Gestion des utilisateurs" @@ -11201,7 +11353,7 @@ msgstr "Gestion des utilisateurs" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "Gestion des profils" @@ -11236,11 +11388,10 @@ msgstr "Gestion des utilisateurs" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "Alias" @@ -11252,18 +11403,18 @@ msgstr "Alias" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Adresse IP" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11272,7 +11423,7 @@ msgstr "Adresse IP" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "Vérifier" @@ -11286,9 +11437,9 @@ msgstr "Vérifier" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "Général" @@ -11314,7 +11465,7 @@ msgstr "Annuler les modifications" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "Automatique" @@ -11322,7 +11473,7 @@ msgstr "Automatique" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "Forcer clé principale" @@ -11337,8 +11488,8 @@ msgstr "Forcer clé principale" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11349,23 +11500,22 @@ msgstr "Forcer clé principale" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "Utilisateur" @@ -11379,8 +11529,8 @@ msgstr "Utilisateur" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11396,22 +11546,21 @@ msgstr "Utilisateur" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 -#: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 +#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561 +#: ../../include/functions_config.php:747 ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "Mot de passe" @@ -11425,14 +11574,14 @@ msgid "Response" msgstr "Réponse" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "Vérifier le type" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11452,47 +11601,47 @@ msgstr "Supprimer vérification" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "Charger les bases" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "Charger une structure de base sur les contrôles web" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "Vérifiez la structure correcte du WebCheck" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "La première ligne doit être « task_begin »." #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "La configuration des Webchecks est vide." #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "La dernière ligne doit être « task_end »." #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "Une ligne contient un token inconnu « token_fail »." #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "Contrôles web établis correctement" @@ -11525,42 +11674,41 @@ msgstr "Contrôles web établis correctement" #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "Intervalle" @@ -11574,9 +11722,9 @@ msgstr "Intervalle" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "Unité" @@ -11599,7 +11747,7 @@ msgstr "Communauté SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "Identifiants" @@ -11624,9 +11772,10 @@ msgstr "Identifiants" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11654,9 +11803,10 @@ msgstr "Minimum" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 +#: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11686,8 +11836,8 @@ msgstr "Maximum" #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11696,13 +11846,13 @@ msgstr "Intervalle inverse" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "Seuils" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "URL du proxy" @@ -11727,7 +11877,7 @@ msgid "Alerts in module" msgstr "Alertes dans le module" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "Description de l'alerte" @@ -11762,7 +11912,7 @@ msgstr "Erreur de création des alertes ; l'opération a été annulée." #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "Module ajouté correctement" @@ -11838,7 +11988,7 @@ msgstr "Tous les jours" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "Jours" @@ -11853,7 +12003,7 @@ msgid "and" msgstr "et" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11879,8 +12029,8 @@ msgstr "Seuil de temps" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11906,10 +12056,10 @@ msgstr "De" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "pour" @@ -11933,9 +12083,9 @@ msgstr "Identifiant de l'événement" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "Nom de l'événement" @@ -11943,15 +12093,15 @@ msgstr "Nom de l'événement" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "Nom de l'agent" @@ -11966,38 +12116,39 @@ msgstr "Nom de l'agent" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "Horodatage" @@ -12007,12 +12158,12 @@ msgstr "Horodatage" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803 msgid "Event type" msgstr "Type d'événement" @@ -12021,20 +12172,20 @@ msgstr "Type d'événement" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "Nom du module" @@ -12045,14 +12196,14 @@ msgstr "Nom du module" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 #: ../../include/class/SnmpConsole.class.php:506 #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "Alerte" @@ -12063,35 +12214,35 @@ msgstr "Alerte" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904 msgid "Severity" msgstr "Sévérité" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960 msgid "Comment" msgstr "Commentaire" @@ -12102,7 +12253,7 @@ msgstr "Commentaire" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12114,27 +12265,27 @@ msgstr "Commentaire" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" msgstr "Étiquettes" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631 msgid "Extra id" msgstr "Identifiant supplémentaire" @@ -12142,13 +12293,13 @@ msgstr "Identifiant supplémentaire" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "Propriétaire" @@ -12161,7 +12312,7 @@ msgstr "Horodatage ACK" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298 msgid "Instructions" msgstr "Instructions" @@ -12177,11 +12328,11 @@ msgid "Server name" msgstr "Nom du serveur" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "État du module" @@ -12225,8 +12376,8 @@ msgstr "Aller à la wiki de Pandora FMS" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "Aide" @@ -12247,8 +12398,8 @@ msgid "Change password" msgstr "Modifier le mot de passe" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "Les mots de passe doivent être identiques." @@ -12273,8 +12424,7 @@ msgstr "MÉTACONSOLE" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "Générer" @@ -12336,7 +12486,7 @@ msgstr "Opérations utilisateur" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "Gestion des agents" @@ -12352,7 +12502,7 @@ msgid "No admin user" msgstr "Aucun utilisateur administrateur" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "Activer la Métaconsole" @@ -12400,26 +12550,26 @@ msgstr "Port ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "Nombre de journaux visionnés" #: ../../enterprise/meta/include/functions_meta.php:554 -#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559 +#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "Méthode d'authentification" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "Repli à l'authentification locale" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "Créer des utilisateurs à distance" @@ -12427,8 +12577,8 @@ msgstr "Créer des utilisateurs à distance" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "Créer profil automatiquement" @@ -12436,8 +12586,8 @@ msgstr "Créer profil automatiquement" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "Créer groupe de profil automatiquement" @@ -12445,29 +12595,29 @@ msgstr "Créer groupe de profil automatiquement" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "Créer étiquettes de profil automatiquement" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "Pas de hiérarchie attribué automatiquement" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "Créer liste noire automatiquement" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 -#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../godmode/users/configure_user.php:1546 +#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "Double authentification" @@ -12477,7 +12627,7 @@ msgstr "2FA_all_users" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 ../../include/functions_config.php:825 msgid "Session timeout" msgstr "Session expirée" @@ -12485,7 +12635,7 @@ msgstr "Session expirée" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 ../../include/functions_config.php:832 msgid "Save Password" msgstr "Enregistrer le mot de passe" @@ -12494,58 +12644,58 @@ msgid "Timezone visual" msgstr "Visualisation du fuseau horaire" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "Serveur de répertoire actif" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "Port de répertoire actif" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 -#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 +#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "Lancer TLS" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "Configuration AD avancée" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "Domaine" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "Permissions AD avancées" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "Permissions LDAP avancées" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "Configuration LDAP avancée" @@ -12553,47 +12703,47 @@ msgstr "Configuration LDAP avancée" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "Activer automatiquement l'accès noeud" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "Chemin SAML" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "Source Saml" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "Paramètre de l'ID de l'utilisateur Saml" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "Paramètre email Saml" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "Paramètre nom de group Saml" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "Paramètre type attr Saml" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "Paramètre d'étiquettes et profils Saml" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "Séparateur d'etiquettes et profils Saml" @@ -12602,42 +12752,42 @@ msgid "SAML profile parameters" msgstr "Paramètres de profils SAML" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "Paramètre d'etiquettes Saml" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "Serveur LDAP" #: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627 +#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639 msgid "LDAP port" msgstr "Port LDAP" #: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631 +#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643 msgid "LDAP version" msgstr "Version LDAP" #: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651 msgid "Base DN" msgstr "Base DN" #: ../../enterprise/meta/include/functions_meta.php:1016 -#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643 +#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655 msgid "Login attribute" msgstr "Attribut de connexion" #: ../../enterprise/meta/include/functions_meta.php:1026 -#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "Connexion LDAP administrateur" #: ../../enterprise/meta/include/functions_meta.php:1036 -#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "Mot de passe LDAP administrateur" @@ -12647,22 +12797,22 @@ msgid "Ldap search timeout (secs)" msgstr "Délai de recherche Ldap (secondes)" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "LDAP secondaire activé" #: ../../enterprise/meta/include/functions_meta.php:1065 -#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "Serveur LDAP secondaire" #: ../../enterprise/meta/include/functions_meta.php:1075 -#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "Port LDAP secondaire" #: ../../enterprise/meta/include/functions_meta.php:1085 -#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "Version LDAP secondaire" @@ -12672,39 +12822,39 @@ msgid "Secondary start TLS" msgstr "Démarrage secondaire TLS" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "DN de base secondaire" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "Attribut de connexion secondaire" #: ../../enterprise/meta/include/functions_meta.php:1125 -#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683 +#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "Connexion LDAP secondaire d’administrateur" #: ../../enterprise/meta/include/functions_meta.php:1135 -#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687 +#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "Mot de passe LDAP secondaire d’administrateur" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "Identifier attribut d'utilisateur" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "Enregistrer le profil" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "Fonction LDAP" @@ -12716,9 +12866,9 @@ msgstr "Hôte %s" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 ../../include/functions_config.php:755 msgid "MySQL port" msgstr "Port MySQL" @@ -12727,10 +12877,10 @@ msgstr "Port MySQL" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "Nom de la base de données" @@ -12739,13 +12889,13 @@ msgid "Babel Enterprise host" msgstr "Hôte de Babel Enterprise" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "Hôte d'Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "Horodatage ou comparaison temporelle" @@ -12762,7 +12912,7 @@ msgid "Graph color (max)" msgstr "Couleur du graphique (max.)" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "Précision de données pour rapports" @@ -12779,8 +12929,8 @@ msgid "type mode zoom charts" msgstr "Type mode zoom graphiques" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "Arrière-plan aléatoire" @@ -12789,7 +12939,7 @@ msgid "Type of charts" msgstr "Type de graphiques" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "Le logo personnalisé s'est effondré" @@ -12798,32 +12948,32 @@ msgid "Custom logo (white background)" msgstr "Logo personnalisé (fond blanc)" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "Logo personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "Splash personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "Titre1 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "Titre2 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "Entête du titre personnalisé Meta" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "Entête du sous-titre personnalisé Meta" @@ -12840,42 +12990,42 @@ msgid "Custom copyright notice" msgstr "Avis de droit d’auteur personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "Chemin de la police" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "Utiliser de mutiplicateur de données" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "Information du rapport personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "Type de police" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "Pied de page" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "utiliser la Console visuelle Legacy" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "Expiration par défaut du caché de l'élément de la Console visuelle" @@ -12884,7 +13034,7 @@ msgid "Realtime stats" msgstr "Statistiques en temps réel" #: ../../enterprise/meta/include/functions_meta.php:2050 -#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894 +#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "Utiliser le graphique d'accès pour agent" @@ -12905,36 +13055,36 @@ msgid "Node address default" msgstr "Adresse du noeud par défaut" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "" "Les bases de données actives et historiques ne peuvent pas être identiques." #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "Hôte" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "Activer la base de données de l'historique" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "Activer historique d'événements" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "Utilisateur de la base de données" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "Mot de passe de la base de données" @@ -12947,45 +13097,45 @@ msgid "Database advanced" msgstr "Base de données avancée" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "Jours d'événements" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "Retard" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "Purge de la base de données historique" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "Partitions de base de données historiques" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "Purge des événements de base de données historiques" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "Purge de la chaîne de la base de données historique" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "Interface de la BD" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "Connection avec le noeud %s échoué" @@ -12999,7 +13149,6 @@ msgstr "Groupes de composants" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "Composants locaux" @@ -13022,13 +13171,13 @@ msgstr "Gestion des plugins" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "Modules d'inventaire" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "Enregistrement du plugin" @@ -13063,32 +13212,32 @@ msgstr "%s - le Système de supervision flexible" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 #: ../../include/ajax/double_auth.ajax.php:270 #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 -#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273 -#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306 +#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274 +#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "Erreur" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "Commandes" @@ -13106,8 +13255,8 @@ msgid "User to reset password" msgstr "Utilisateur pour remettre le mot de passe" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "Réinitialiser le mot de passe" @@ -13117,8 +13266,8 @@ msgstr "Réinitialiser le mot de passe" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS" @@ -13126,7 +13275,7 @@ msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "CENTRE DE COMMANDE" @@ -13207,21 +13356,19 @@ msgstr "Erreur en éliminant la relation" msgid "Relation deleted successfully" msgstr "Relation éliminée correctement" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "Connexion avec le serveur perdue" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet connection " "or contact with administrator." @@ -13247,57 +13394,57 @@ msgstr "Connexion expirée" msgid "Login error" msgstr "Erreur de connexion" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "Mot de passe changé correctement" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "Erreur de modification du mot de passe" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "" "Trop de temps s'est écoulé depuis la demande de changement du mot de passe" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "Cet utilisateur n'a pas demandé de changement de mot de passe" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "Erreur de réinitialisation du mot de passe" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "Cet utilisateur n'a pas d'adresse courriel valide." -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "Ceci est un message envoyé automatiquement à l'utilisateur " -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "" "Veuillez cliquer sur le lien ci-dessous pour réinitialiser le mot de passe." -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "Réinitialiser le mot de passe" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "Veuillez ne pas répondre à ce courriel." -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "Erreur lors de l'envoi du courriel" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge process." @@ -13305,17 +13452,17 @@ msgstr "" "Le système n'est pas centralisé, allez vers %s pour effectuer le processus " "d'unification" -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "Il existe des nœuds avec un MR différent de celui-ci (%d):" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "Veuillez garder tout l’environnement à jour vers la même version." -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "Désolé ! La page est introuvable !" @@ -13334,22 +13481,21 @@ msgstr "Agents trouvés" #: ../../enterprise/operation/agentes/policy_view.php:400 #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 -#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576 +#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "Dernier contact" @@ -13358,8 +13504,8 @@ msgid "There are no agents included in this group" msgstr "Aucun agent inclus dans ce groupe" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "Politiques trouvées" @@ -13392,21 +13538,24 @@ msgstr "Il n'y a pas des politiques inclues dans ce groupe" msgid "%s %s - %s - MR %s" msgstr "%s %s - %s - MR %s" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "Page générée à" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "Vous n'avez pas accès à cette page" @@ -13464,8 +13613,8 @@ msgstr "Rafraîchissement automatique désactivé" #: ../../enterprise/meta/general/header.php:266 #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 -#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 -#: ../../mobile/operation/home.php:148 ../../general/header.php:443 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527 +#: ../../mobile/operation/home.php:167 ../../general/header.php:443 #: ../../general/header.php:445 msgid "Logout" msgstr "Déconnexion" @@ -13482,7 +13631,7 @@ msgid "Please navigate to %s" msgstr "Veuillez naviguer jusqu’à %s" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis" @@ -13490,8 +13639,8 @@ msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "Vue arborescente" @@ -13516,7 +13665,7 @@ msgstr "Vue des moniteurs" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Rapports" @@ -13534,7 +13683,7 @@ msgstr "Modèles de rapport" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "Assistant de modèles" @@ -13562,7 +13711,8 @@ msgstr "Assistant de modèles" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13577,7 +13727,7 @@ msgstr "Écrans" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13604,8 +13754,8 @@ msgstr "Console visuelle de l'assistant" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13661,7 +13811,7 @@ msgid "Command Center" msgstr "Centre de commande" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "Licence" @@ -13676,8 +13826,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "Liens" @@ -13712,9 +13862,9 @@ msgstr "Journaux d’audit" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13775,39 +13925,40 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "Inventaire" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "Liste des événements" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "Console sonore" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493 -#: ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "Démarrer" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "Pas d’alerte" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "Arrêter l’alarme" @@ -13841,7 +13992,7 @@ msgstr "Correlation d'alertes" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "Détails de l'alerte" @@ -13854,7 +14005,7 @@ msgstr "Détails de l'alerte" msgid "Centralised management" msgstr "Gestion centralisée" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13872,12 +14023,12 @@ msgstr "Outil de fusion" msgid "List of Links" msgstr "Liste des liens" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "Journaux d'audit du système" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "À propos" @@ -13895,18 +14046,18 @@ msgid "Authentication code" msgstr "Code d'authentification" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "Code de vérification" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "Se connecter" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "Connexion avec SAML" @@ -13998,15 +14149,15 @@ msgstr "Ou désactivez %s Enterprise" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "Valider" @@ -14091,7 +14242,7 @@ msgstr "Veuillez contacter %s pour renouveler votre licence." #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "Renouveler" @@ -14174,7 +14325,7 @@ msgstr "Gestion des systèmes" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "Administrateur" @@ -14221,7 +14372,7 @@ msgstr "Vue VMware" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14232,7 +14383,7 @@ msgstr "Outils d'administration" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "Gestionnaire d'extension" @@ -14287,7 +14438,7 @@ msgstr "Séparateur" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "Exécuter" @@ -14466,24 +14617,24 @@ msgstr "Hôte ESX" #: ../../enterprise/operation/agentes/tag_view.php:1137 #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1416 ../../include/functions.php:1455 -#: ../../include/functions_modules.php:2905 +#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 +#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142 -#: ../../operation/events/events.php:633 ../../operation/events/events.php:710 -#: ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:638 ../../operation/events/events.php:715 +#: ../../operation/events/events.php:741 msgid "NORMAL" msgstr "NORMAL" @@ -14496,24 +14647,24 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1153 #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1404 ../../include/functions.php:1436 -#: ../../include/functions_modules.php:2899 +#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 +#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150 -#: ../../operation/events/events.php:608 ../../operation/events/events.php:716 -#: ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153 +#: ../../operation/events/events.php:613 ../../operation/events/events.php:721 +#: ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "CRITIQUE" @@ -14527,25 +14678,25 @@ msgstr "CRITIQUE" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1407 ../../include/functions.php:1443 -#: ../../include/functions_modules.php:2902 +#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 +#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:638 ../../operation/events/events.php:704 -#: ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:643 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:763 msgid "WARNING" msgstr "ATTENTION" @@ -14561,31 +14712,31 @@ msgstr "ATTENTION" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1420 ../../include/functions.php:1446 -#: ../../include/functions_modules.php:2911 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 +#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158 -#: ../../operation/events/events.php:644 ../../operation/events/events.php:723 -#: ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161 +#: ../../operation/events/events.php:649 ../../operation/events/events.php:728 +#: ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "INCONNU" @@ -14809,7 +14960,7 @@ msgid "Power Status: " msgstr "État : " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "État : " @@ -14822,7 +14973,7 @@ msgid "Export agents" msgstr "Exporter des agents" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14942,12 +15093,12 @@ msgstr "État d'alerte" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14966,12 +15117,12 @@ msgstr "Min." #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14988,7 +15139,7 @@ msgstr "Max." #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -15005,7 +15156,7 @@ msgstr "Chaîne" #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -15021,12 +15172,14 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "Passer à l’état critique après" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "intervalles dans l’état de l’avertissement." @@ -15046,7 +15199,7 @@ msgstr "État critique" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "Seuil du FF" @@ -15054,7 +15207,7 @@ msgstr "Seuil du FF" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "Conserver les compteurs" @@ -15064,7 +15217,7 @@ msgstr "Conserver les compteurs" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15075,7 +15228,7 @@ msgstr "Tous les changements d'état" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15085,7 +15238,7 @@ msgstr "Chaque changement d'état" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "À l'état normal" @@ -15094,7 +15247,7 @@ msgstr "À l'état normal" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "À l'état d'alerte" @@ -15103,7 +15256,7 @@ msgstr "À l'état d'alerte" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "À l'état critique" @@ -15113,15 +15266,16 @@ msgstr "À l'état critique" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "Historique des données" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "FF délai" @@ -15144,9 +15298,9 @@ msgstr "Cette valeur peut être réglée que dans les modules asynchrones." #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "Valeur minimale" @@ -15158,9 +15312,9 @@ msgstr "Toute valeur inférieure à ce nombre est refusée" #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "Valeur maximale" @@ -15172,9 +15326,9 @@ msgstr "Toute valeur supérieure à ce nombre est refusée" #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15189,24 +15343,24 @@ msgid "Check the correct structure of the data configuration" msgstr "Vérifier la structure correcte de la configuration des données" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "La première ligne doit être « module_begin »." #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "La configuration de données est vide." #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "La dernière ligne doit être « module_end »." #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" @@ -15215,7 +15369,7 @@ msgstr "" "» à la configuration des données" #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" @@ -15224,24 +15378,24 @@ msgstr "" "yourmoduletype » à la configuration des données." #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "Le type est incorrect. Veuillez choisir un type correct." #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "Erreur dans la syntaxe, veuillez vérifier la configuration de données." #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "Configuration des données établie correctement" #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "Instructions état critique" @@ -15256,7 +15410,7 @@ msgstr "Instructions lorsque l'état est critique" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "Instructions état d'alerte" @@ -15271,7 +15425,7 @@ msgstr "Instructions lorsque l'état est en alerte" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "Instructions état inconnu" @@ -15286,7 +15440,7 @@ msgstr "Instructions lorsque l'état est inconnu" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15294,13 +15448,13 @@ msgstr "Catégorie" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "Étiquettes disponibles" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "Ajouter des étiquettes au module" @@ -15312,7 +15466,7 @@ msgstr "Supprimer les étiquettes du module" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "Étiquettes sélectionnées" @@ -15323,48 +15477,48 @@ msgstr "Macros" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "Valeur par défaut" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "Ajouter une macro" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "Effacer une macro" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "État normal" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "État d'alerte" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "État critique" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "Veuillez introduire une alerte maximale supérieure à l'alerte minimale" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "" "Veuillez introduire un état critique maximal supérieur à l'état critique " @@ -15375,7 +15529,7 @@ msgid "Please introduce a positicve percentage value" msgstr "Veuillez introduire une valeur de pourcentage positicve" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15396,9 +15550,9 @@ msgstr "Créé correctement à partir de %s" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15407,8 +15561,8 @@ msgstr "Créé correctement à partir de %s" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15430,14 +15584,14 @@ msgstr "" "lecture seule. Allez dans %s pour les gérer." #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "Créé correctement" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15448,22 +15602,22 @@ msgstr "Créé correctement" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "Erreur de mise à jour" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "Mis à jour correctement" @@ -15472,7 +15626,7 @@ msgstr "Mis à jour correctement" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "Données multiples supprimées correctement" @@ -15481,14 +15635,14 @@ msgstr "Données multiples supprimées correctement" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "Erreur de suppression de données multiples" #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "Recherche libre" @@ -15497,15 +15651,15 @@ msgid "Search by name, description or data, list matches." msgstr "Rechercher liste de concordances par nom, description ou données" #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "Dupliquer" @@ -15582,7 +15736,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "Exécution" @@ -15670,8 +15824,8 @@ msgstr "Lacer script" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15701,20 +15855,20 @@ msgstr "Lacer script" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15736,28 +15890,27 @@ msgstr "Lacer script" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "Aucune modification" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "Groupes secondaires" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "Ajouter des groupes secondaires" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "Supprimer des groupes secondaires" @@ -15768,7 +15921,7 @@ msgstr "Ajouter une politique" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "Op" @@ -15850,13 +16003,13 @@ msgstr "Il n’y a pas de configuration automatique définie" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "Activer" @@ -15868,14 +16021,14 @@ msgstr "Activer" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413 +#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "Désactiver" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "Ajouter une nouvelle définition de configuration" @@ -15899,10 +16052,10 @@ msgstr "Gestionnaire de configuration réseau" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "Plugins" @@ -15929,12 +16082,12 @@ msgid "Show files" msgstr "Afficher les fichiers" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "Aucune donnée retrouvée" @@ -15943,9 +16096,9 @@ msgstr "Aucune donnée retrouvée" #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "P." @@ -15961,7 +16114,7 @@ msgid "Capacity planning" msgstr "Planification de la capacité" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15972,7 +16125,8 @@ msgstr "Planification de la capacité" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "Service" @@ -15989,59 +16143,59 @@ msgstr "Moyenne synthétique" msgid "Trending module" msgstr "Module tendance" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "Valeur fixe" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "Ajouter un module à l'opération comme somme" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "Ajouter un module à l'opération comme soustraction" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "Ajouter un module à l'opération comme multiplication " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "Ajouter un module à l'opération comme division" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "Supprimer les modules sélectionnés" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "Ajouter un module à l'opération moyenne" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "Supprimer les modules sélectionnés des opérations en attente" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "Déplacer les modules sélectionnés vers le bas" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "Déplacer les modules sélectionnés vers le haut" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "Sélectionner un service" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "Filtre Netflow" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "Sélectionner un filtre" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "Valeur en pourcentage" @@ -16083,7 +16237,7 @@ msgstr "Erreur : le répertoire de la collection n'existe pas." #: ../../enterprise/godmode/agentes/collections.editor.php:96 msgid "Collection files" -msgstr "Fichiers de collecte" +msgstr "Fichiers de collection" #: ../../enterprise/godmode/agentes/collections.editor.php:101 msgid "Edit files" @@ -16159,15 +16313,19 @@ msgstr "Configuration manuelle" msgid "No component was found" msgstr "Aucun composant a été trouvé" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "Valeur de la macro" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "Afficher les données de configuration" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "Cacher les données de configuration" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "Configuration des données" @@ -16209,7 +16367,7 @@ msgid "Add Modules" msgstr "Ajouter des modules" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "Supprimer le module" @@ -16253,8 +16411,8 @@ msgstr "" "spécifiez le chemin d’accès complet %s." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 -#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "Profil" @@ -16276,7 +16434,7 @@ msgid "Only Selenium 3." msgstr "Seulement Sélénium 3." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "Modifier tous les états" @@ -16302,15 +16460,15 @@ msgstr "Collez votre test de sélénium, exporté au format HTML, ici" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "Identifiant personnalisé" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16320,7 +16478,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "Intervalle FF" @@ -16333,7 +16491,7 @@ msgstr "Intervalle de flip-flop d'exécution de module (en secondes)." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "Tentatives" @@ -16347,7 +16505,7 @@ msgstr "Nombre de tentatives que le module tente d'éxécuter." #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "Macros personnalisées" @@ -16373,13 +16531,15 @@ msgstr "Éditeur de cartes réseau vide" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16388,15 +16548,15 @@ msgstr "Cartes de topologie" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "Carte de réseau" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "Aucune carte de réseau retrouvée" @@ -16504,7 +16664,7 @@ msgstr "Créer un nouveau module d’analyse Web" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16540,7 +16700,7 @@ msgstr "Impossible de l'ajouter à la liste de plugins à supprimer." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16551,7 +16711,7 @@ msgstr "Suppression annulée correctement" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16573,7 +16733,7 @@ msgid "There are no defined plugins" msgstr "Aucun plugin défini" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16587,7 +16747,7 @@ msgstr "Cette politique est en application et ne peut pas être modifiée" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16674,8 +16834,8 @@ msgstr "Toujours" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "Actif" @@ -16687,7 +16847,7 @@ msgid "Until" msgstr "Jusqu'à" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16700,12 +16860,12 @@ msgid "There is not alerts configured in this policy." msgstr "Aucune alerte externe n’est configurée dans cette politique." #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "Déconfigurer le mode veille" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "Configurer mode veille" @@ -16724,9 +16884,9 @@ msgstr "Ajouter alertes" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "Ajouter une action" @@ -16787,42 +16947,42 @@ msgid "Could not be added module(s). You must select a policy" msgstr "" "Impossible d'ajouter le(s) module(s). Vous devez sélectionner une politique." -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "Module(s) (%s/%s) ajouté(s) correctement à la politique %s." -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "Impossible d'ajouter le(s) module(s) (%s/%s) à la politique %s" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "" "Pour définir les plugins, veuillez utiliser l’onglet de configuration des " "plugins." -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "Impossible d'ajouter ce module" -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" "Le type de module dans la configuration de données est vide. Choisissez-en un " "de la liste déroulante du formulaire." -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" "Le nom du module dans la configuration de données est vide. Choisissez-en un " "du champ de texte du formulaire." -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " @@ -16831,95 +16991,95 @@ msgstr "" "Ajouté correctement aux modules en attente de suppression. Il sera supprimé " "dans la suivante application de la politique." -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "Impossible de l'ajouter à la liste de suppression des modules" -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "copie de %s" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "copie de %s (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "Module dupliqué correctement" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "Duplication impossible" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "Affichage en mode hiérarchique" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "Composant local" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "Module désactivé" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "Module activé" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "Activer le module" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "Module désactivé" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "Aucun module défini" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "Aucun nom de module fourni" -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "Aucune cible IP fournie" -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "Aucun OID SNMP fourni" -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "Êtes-vous sûr(e) de vouloir copier les modules à la politique ?" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "Veuillez sélectionner un module à copier." -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "Aucune politique avec cet ID" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " @@ -16929,122 +17089,122 @@ msgstr "" "stratégie l’appliquera automatiquement à tous les nouveaux agents ajoutés à ce " "groupe." -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "%s : opérations supprimées correctement de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "Opérations supprimées correctement de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "Impossible de supprimer les opérations de la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "" "Certains nœuds (%s) sont inaccessibles. Certaines informations peuvent être " "manquantes." -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "Mise à jour en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "Mettre à jour les agents en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "Ajouter à la file d'attente pour l'appliquer" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "" "Ajouter à la file d'application, seulement pour les changements dans la base " "de données" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "Mettre à jour les groupes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "Associer les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "Il sera associé lors de la prochaine application de la politique" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "Dissocier les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "Ils seront dissociés lors de la prochaine application de la politique." -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "Suppression en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "Supprimer les agents en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "Ils seront supprimés lors de la prochaine application de la politique." -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "Supprimer les groupes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "Supprimer les modules en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "Supprimer les modules d'inventaire en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "Supprimer les alertes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "Supprimer les alertes externes en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "Supprimer les collections de fichiers en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "Supprimer les plugins en attente" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "Conseils" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "Résumé des files d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -17052,28 +17212,28 @@ msgstr "Résumé des files d'attente" msgid "Toggle filter(s)" msgstr "Filtre(s) de bascul" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "Noeud" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "Vider la file d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "Cette opération pourrait prendre du temps" -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "Appliquer toutes les files d'attente" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "Effacer tous les éléments" @@ -17405,7 +17565,7 @@ msgstr "Agents dans la politique" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17419,12 +17579,12 @@ msgstr "Agents dans la politique" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "Groupes" @@ -17443,10 +17603,10 @@ msgstr "Groupes dans la politique" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "Configuration à distance" @@ -17464,7 +17624,7 @@ msgstr "R." #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17483,7 +17643,7 @@ msgstr "U." #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17569,16 +17729,20 @@ msgstr "Assistant de l'agent" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17594,13 +17758,13 @@ msgstr "OID personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texte" @@ -17608,8 +17772,8 @@ msgstr "Texte" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "Éditeur de déroutements SNMP" @@ -17878,7 +18042,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "Erreur de création des alertes pour ces modules. Veuillez les vérifier." #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17889,8 +18053,9 @@ msgstr "Modèle d'alerte" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "Expression régulière" @@ -17973,8 +18138,9 @@ msgstr " politique" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17994,30 +18160,30 @@ msgstr " politique" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327 -#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329 -#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331 -#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334 -#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336 -#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352 -#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396 -#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440 +#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342 +#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344 +#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346 +#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349 +#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351 +#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367 +#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411 +#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "Tous" @@ -18032,7 +18198,7 @@ msgstr "Aux politiques" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -18060,7 +18226,7 @@ msgstr "Pas de politiques de destin à copier" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "Groupe d'agent" @@ -18079,8 +18245,8 @@ msgid "When select agents" msgstr "Lorsque des agents sont sélectionnés" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18089,12 +18255,12 @@ msgstr "Lorsque des agents sont sélectionnés" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "Afficher les modules communs" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -18103,7 +18269,7 @@ msgstr "Afficher les modules communs" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "Afficher tous les modules" @@ -18135,7 +18301,7 @@ msgstr "Opérations massives" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "Démarrage zéro (0)" @@ -18143,7 +18309,7 @@ msgstr "Démarrage zéro (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "Démarrage (1)" @@ -18151,7 +18317,7 @@ msgstr "Démarrage (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "Lien interrompu (2)" @@ -18159,7 +18325,7 @@ msgstr "Lien interrompu (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "Lien actif (3)" @@ -18167,7 +18333,7 @@ msgstr "Lien actif (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "Erreur d'authentification (4)" @@ -18177,14 +18343,15 @@ msgstr "Erreur d'authentification (4)" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18203,12 +18370,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "Erreur de suppression des alertes (%s / %s)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "Sélectionnez une alerte SNMP" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." @@ -18217,8 +18384,8 @@ msgstr "" "(IP), Valeur unique, chaque OID personnalisés/Données." #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18231,30 +18398,34 @@ msgid "SNMP Alerts to be deleted" msgstr "Alertes SNMP à supprimer" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "Aucune alerte snmp trouvée." -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "Alertes (%s / %s) mises à jour correctement" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "Erreur de mise à jour des alertes (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "Modifiez au moins un paramètre" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "Alertes SNMP à modifier" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "Valeur/OID personnalisée" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18262,38 +18433,38 @@ msgstr "Valeur/OID personnalisée" msgid "SNMP Agent" msgstr "Agent SNMP" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "Valeur unique" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "Nombre minimum d'alertes" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "Nombre maximum d'alertes" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "Autre valeur" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "Position" @@ -18305,16 +18476,16 @@ msgstr "Modules non utilisés" msgid "Modules used" msgstr "Modules utilisés" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "Alertes supprimées correctement" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "" "Erreur de suppression des alertes pour ces modules. Veuillez les vérifier." -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "Modules des agents dans la politique" @@ -18325,23 +18496,25 @@ msgstr "Dynamique min." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "Communauté SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "OID SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18351,55 +18524,55 @@ msgstr "Adresse IP cible" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "Version SNMP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "Utilisateur de l'authentification" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "Authentification de mot de passe" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "La longueur minimale du mot de passe est de huit caractères." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18407,24 +18580,24 @@ msgstr "Méthode de confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "DES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "AES" @@ -18432,11 +18605,11 @@ msgstr "AES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18444,47 +18617,47 @@ msgstr "Mot de passe privé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "Méthode d'authentification" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "MD5" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "SHA" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18492,30 +18665,30 @@ msgstr "Niveau de sécurité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "Méthode sans authentification ni confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "Méthode avec authentification et sans confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "Méthode avec authentification et méthode de confidentialité" @@ -18523,13 +18696,13 @@ msgstr "Méthode avec authentification et méthode de confidentialité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 -#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573 +#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "Non assigné" @@ -18539,15 +18712,15 @@ msgstr "Non assigné" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "Nom d'utilisateur" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "Exporter cible" @@ -18579,16 +18752,16 @@ msgid "Linked" msgstr "Associé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "Dissociés" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "Supprimer événements inconnus" @@ -18601,7 +18774,7 @@ msgstr "" "arrêtés" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "Interruption de session" @@ -18612,15 +18785,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "Secondes que l'agent attend pour l'exécution du module." #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "Envoyer TCP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "Recevoir TCP" @@ -18652,13 +18825,13 @@ msgstr "Nombre de champs" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "Plugin" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18667,7 +18840,7 @@ msgstr "Plugin" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18675,33 +18848,33 @@ msgstr "Commande" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "Identifiant des idéntifiants" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "Hérité" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "Linux" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "Windows" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "Système d’exploitation cible" @@ -18726,11 +18899,11 @@ msgstr "Contrôle de sécurité correct" msgid "Security check is fail." msgstr "Problème de contrôle de sécurité" -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "Information supplémentaire :" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "Changements :" @@ -18741,7 +18914,7 @@ msgstr "ACL de groupe" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "Condition" @@ -18780,11 +18953,11 @@ msgstr "Nom de l’alerte" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "Déclenchée pour la dernière fois" @@ -18793,9 +18966,9 @@ msgstr "Déclenchée pour la dernière fois" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327 -#: ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "Alerte désactivée" @@ -18831,26 +19004,26 @@ msgstr "Générateur d’alertes d’inventaire" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 -#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933 -#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044 -#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227 -#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713 -#: ../../include/functions_html.php:6714 +#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944 +#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055 +#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235 +#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741 +#: ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "Liste" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "Outil de conception" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "Non disponible" @@ -18954,7 +19127,7 @@ msgstr "Modifier des éléments" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "Supprimer les éléments" @@ -19009,7 +19182,7 @@ msgstr "Agent pour stocker des données" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "Manuel" @@ -19104,61 +19277,6 @@ msgstr "Alerte de service inconnue" msgid "S.L.A. critical service alert" msgstr "Alerte de service critique S.L.A." -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "OK" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19184,8 +19302,8 @@ msgstr "Service invalide" #: ../../enterprise/include/functions_reporting.php:3500 #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "Dynamique" @@ -19381,7 +19499,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." +"tagente_datos_string). Monthly partitions." msgstr "" "Créez automatiquement des partitions sur des fichiers IDB de base de données " "spécifiques (tagent_données, tagent_données_string, tevent). Partitions " @@ -19602,12 +19720,12 @@ msgid "Yes without changing status" msgstr "Oui sans changer d’état" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "Transférer les déroutements SNMP vers l'agent (s'il existe)" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "Utiliser le Système ACL Enterprise" @@ -19641,7 +19759,7 @@ msgid "Metaconsole DB password" msgstr "Mot de passe de la BD de la Métaconsole" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "Activer le collecteur de journaux" @@ -19766,7 +19884,7 @@ msgid "Port of ElasticSearch server" msgstr "Port du serveur ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "Nombre de jours avant nettoyage d'information ancienne" @@ -19798,21 +19916,21 @@ msgstr "Fonction PHP" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "Courriel" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "Profils sélectionnés" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "Groupes sélectionnés" @@ -19831,15 +19949,15 @@ msgstr "Attributs LDAP" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19847,19 +19965,20 @@ msgstr "OP" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "Profils" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "Sélectionner un profil" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "Ajouter de nouvelles autorisations" @@ -19872,57 +19991,63 @@ msgid "Change timezone visual" msgstr "Modifier la visualisation du fuseau horaire" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "Les nouveaux utilisateurs pourront se connecter aux nœuds." #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "Groupes AD" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "Recherche de groupe récursive" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "Vous devez sélectionner un profil de la liste de profils." -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "Sélectionnez un groupe dans la liste des groupes." -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "Hôte MySQL" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "Chemin SimpleSAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "Répertoire où se trouve votre dossier 'simplesamlphp'." -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "Source Saml" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "Nom Authsource, par exemple 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "Attribut d’ID utilisateur SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "Attribut de messagerie SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" @@ -19930,11 +20055,11 @@ msgstr "" "Champ SAML où rechercher l’e-mail de l’utilisateur (alors que la création " "automatique d’utilisateurs distants est activée)" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "Attribut de nom de groupe SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" @@ -19942,23 +20067,23 @@ msgstr "" "Champ SAML où rechercher le nom du groupe (alors que la création automatique " "d’utilisateurs distants est activée)" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "Attribut simple / Attribut à valeurs multiples" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "Profils SAML et attribut de l’étiquette" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "Attribut de profil" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "Attribut d’étiquette" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "Profil SAML et préfixe des étiquettes" @@ -20036,7 +20161,7 @@ msgstr "Ajouter un élément personnalisé au profil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "Nom du profil" @@ -20164,10 +20289,12 @@ msgstr "Groupe cible" #: ../../godmode/reporting/create_container.php:746 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "Étiquette" @@ -20187,8 +20314,8 @@ msgstr "Filtrer par étiquette" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "Tout sélectionner" @@ -20367,15 +20494,18 @@ msgstr "Assistant du modèle" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "Console visuelle" @@ -20476,7 +20606,7 @@ msgstr "Éditeur de modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "Erreur de mise à jour. Nom en blanc." @@ -20495,8 +20625,9 @@ msgstr "Erreur mise à jour du modèle" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "Largeur" @@ -20505,18 +20636,18 @@ msgstr "Largeur" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "Hauteur" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "1 heure" @@ -20531,19 +20662,19 @@ msgid "3 hours" msgstr "3 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "6 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "12 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20564,9 +20695,9 @@ msgid "Last week" msgstr "La semaine dernière" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20582,12 +20713,12 @@ msgid "2 months" msgstr "2 mois" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "6 mois" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "1 an" @@ -20617,7 +20748,7 @@ msgstr "1 an" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20650,7 +20781,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "Exception" @@ -20699,7 +20830,7 @@ msgstr "Dernière valeur" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20720,13 +20851,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "Total" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "Taux" @@ -20736,25 +20867,25 @@ msgstr "Taux" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "Effacer les éléments sélectionnés" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "Regrouper par agent" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "Afficher dans la même rangée" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "Afficher un module par rangée avec toutes ses opérations" @@ -20762,10 +20893,10 @@ msgstr "Afficher un module par rangée avec toutes ses opérations" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "Ordre" @@ -20775,9 +20906,9 @@ msgstr "Ordre" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "Croissant" @@ -20787,9 +20918,9 @@ msgstr "Croissant" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "Décroissant" @@ -20797,30 +20928,30 @@ msgstr "Décroissant" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "Par nom d'agent" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "Quantité (n)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "Afficher" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "Tout" @@ -20836,22 +20967,22 @@ msgstr "<" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "Pas OK" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "Afficher le graphique" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "Afficher le résumé" @@ -20868,7 +20999,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "Afficher l’élément au format paysage (uniquement PDF)" @@ -20876,7 +21007,7 @@ msgstr "Afficher l’élément au format paysage (uniquement PDF)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "Saut de page à la fin de l’article (UNIQUEMENT PDF)" @@ -20889,13 +21020,13 @@ msgid "Page orientation" msgstr "Orientation de la page" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20931,20 +21062,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "Afficher adresse au lieu du nom du module" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "Afficher l'adresse principale de l'agent" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "Requête SQL" @@ -20952,14 +21083,14 @@ msgstr "Requête SQL" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "Mode de basculement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20970,72 +21101,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "Type de basculement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "Basculement normal" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "Basculement simple" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "Rendu graphique" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "Moyenne, max & min" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "Max seulement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "Min seulement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "Moy uniquement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "Comparaison de temps (chevauché)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "Graphique en pleine résolution (TIP)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -21046,15 +21177,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "Afficher le seuil" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "Centile" @@ -21069,19 +21200,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "Afficher groupe récapitulatif" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "État de l'événement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "Graphiques d'événements" @@ -21120,37 +21251,37 @@ msgstr "Période de projection" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "En-tête sérialisé" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "Le caractère séparateur est |" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "Champ séparateur" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "Séparateur pour des champs différents dans la chaîne de texte en série" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "Séparateur de ligne" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text chain" msgstr "" @@ -21159,13 +21290,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "Décompresser le module" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "Utiliser des données de module non compressées." @@ -21245,7 +21376,7 @@ msgstr "Inverse SLA" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "Éléments SLA classés par valeur d'accomplissement" @@ -21257,11 +21388,11 @@ msgstr "Affiche seulement des SLA erronés" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21293,17 +21424,17 @@ msgstr "Modifier le modèle" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "Éditeur d'éléments" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "Liste d'éléments" @@ -21317,9 +21448,9 @@ msgstr "Liste de modèles" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "Rapports personnalisés" @@ -21396,12 +21527,12 @@ msgid "Set start and end date" msgstr "Définir les dates de début et de fin" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "Horodatage à partir de :" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "Horodatage jusqu'à :" @@ -21444,9 +21575,9 @@ msgstr "Éditeur d’éléments de modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "Poids" @@ -21458,7 +21589,7 @@ msgstr "Poids" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "Concordance exacte" @@ -21552,18 +21683,18 @@ msgstr "Aucune modification n’a été apportée" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "Action réussie" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "Action échouée" @@ -21598,13 +21729,13 @@ msgstr "Sélectionner un serveur" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "Métaconsole locale" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21617,7 +21748,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: if " "you use this field with \"Module exact match\" enabled then this field has to " @@ -21665,31 +21796,31 @@ msgstr "Cochez-le si vous ne souhaitez pas afficher les éléments sans données #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "Tableau personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "Nombre d'éléments maximum" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "Modèle de SQL personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21703,157 +21834,157 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "Le protocole doit être spécifié dans l’URL (par exemple: « https:// »)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "Regrouper par" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "Moyenne" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "Sélectionner les champs à afficher" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "Durée totale" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "Temps d'échec" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "Temps en état OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "Temps en état d'avertissement" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "Temps en état inconnu" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "Temps de module non initialisé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "Temps d'arrête" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "

Sélectionner les champs à afficher

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "Vérifications totales" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "Vérifications échouées" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "Vérifications en état OK" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "Vérifications inconnues" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "

Sélectionner les champs à afficher

" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "Valeur maximale de l'agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "Valeurs min de l’agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "Voir le sommaire " #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "Hauteur (graphiques dynamiques)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "Base de données de l'historique de requêtes" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "Mode prioritaire" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "Mode ok de priorité" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "Mode inconnu de priorité" @@ -21891,22 +22022,22 @@ msgstr "" "les modules de tous les agents." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "Calculer pour les intervalles personnalisés" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "Utiliser la notation de préfixe" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "Intervalles de temps" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise calculations" msgstr "" @@ -21914,17 +22045,17 @@ msgstr "" "calculs plus précis" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "Seulement le tableau" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "Seulement le graphique" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "Graphique et tableau" @@ -21945,28 +22076,28 @@ msgstr "Afficher les adresses IP non affectées à un agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "Créer un élément" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "Mettre à jour l'élément" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "SLA min. (valeur)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "SLA max. (valeur)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "Limite SLA (%)" @@ -22002,13 +22133,13 @@ msgstr "Nom littéral du module forcé" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "Sélectionnez d'abord un agent" @@ -22024,17 +22155,17 @@ msgstr "Le nom et la limite SLA ne peuvent pas être vides" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 ../../godmode/setup/os.builder.php:77 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 ../../godmode/setup/os.builder.php:77 #: ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "Icône" @@ -22101,7 +22232,7 @@ msgstr "Déplacer vers le bas" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "Aucun élément" @@ -22165,14 +22296,14 @@ msgstr "Créer une nouvelle tâche de console" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -22198,10 +22329,10 @@ msgstr "Tâche de mise à jour de la console" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "Paramètres" @@ -22324,7 +22455,7 @@ msgstr "État du nœud SQL" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "SSH" @@ -22416,7 +22547,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "État de l'agent" @@ -22554,21 +22685,21 @@ msgid "Default value: " msgstr "Valeur par défaut : " #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "Serveur de données" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "Serveur de réseau" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "Serveur d’alertes" @@ -22586,59 +22717,59 @@ msgstr "Serveur d’alertes" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "Serveur Discovery" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "Serveur de prédiction" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "Serveur de plugin" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "Console SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "Serveur SNMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "Serveur web" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "Serveur d'inventaire" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "Exporter le serveur" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "Serveur d'événements" @@ -22647,19 +22778,19 @@ msgid "ICMP server" msgstr "Serveur ICMP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "Serveur WUX" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "serveur NCM" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "Serveur WMI" @@ -23585,7 +23716,7 @@ msgid "Delete remote conf server files" msgstr "Supprimer les fichiers du serveur de configuration distant" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "Effacer le fichier de configuration à distance" @@ -23644,8 +23775,8 @@ msgstr "Serveur Satellite" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "Satellite" @@ -23658,16 +23789,16 @@ msgstr "Rapport à construire" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "Envoyer aux courriels (séparés par des virgules)" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23675,7 +23806,7 @@ msgstr "Objet" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23773,8 +23904,8 @@ msgstr "Annuellement" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23789,7 +23920,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "Le rapport programmé a essayé d'envoyer un email avec des fichier joints" #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "Bonjour" @@ -23800,22 +23931,22 @@ msgstr "Ajouté à cet email il y a un fichier CSV des journaux" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "Généré le" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "Merci pour votre temps." #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "Cordialement, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23903,8 +24034,8 @@ msgstr "Forcer l'exécution" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23927,7 +24058,7 @@ msgstr "Rapport" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "Chemin" @@ -23942,9 +24073,9 @@ msgstr "Tâche désactivée" #: ../../enterprise/tools/ipam/ipam_list.php:784 #: ../../enterprise/tools/ipam/ipam_ajax.php:505 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 ../../include/functions_treeview.php:663 -#: ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../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" @@ -23974,17 +24105,17 @@ msgid "avg" msgstr "moyenne" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "max" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "min" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "somme" @@ -24141,11 +24272,11 @@ msgstr "Super-réseau" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "Réseau" @@ -24196,9 +24327,9 @@ msgstr "Option inconnue" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "Champ personnalisé" @@ -24230,7 +24361,7 @@ msgstr "Argument du script" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "Mettre à jour l'action" @@ -24304,13 +24435,13 @@ msgstr "Temps global : " #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 ../../include/graphs/fgraph.php:879 -#: ../../include/functions_ui.php:7855 +#: ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -24324,8 +24455,8 @@ msgstr "Capturer regexp" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "Moyenne" @@ -24338,51 +24469,51 @@ msgid "Curl Error: " msgstr "Erreur Curl : " #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "Nouveau filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "Mettre à jour le filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "Nom du filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "Enregistrer dans le groupe" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "Écraser le filtre" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "Le nom du filtre ne peut pas être laissé en blanc" #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "Nom du filtre déjà utilisé" @@ -24433,8 +24564,8 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "Le fichier de la collection est plus grand que la limite (%s bytes)" #: ../../enterprise/include/functions_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" @@ -24446,24 +24577,24 @@ msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "Maximun" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "Minimum" @@ -24475,53 +24606,53 @@ msgstr "Minimum" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "Intervalle" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRITIQUE" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ALERTE" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s in %s : INCONNU" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "%s in %s : Non initialisées" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s in %s : ALERTES DÉCLENCHÉES" @@ -24537,7 +24668,7 @@ msgstr "Contenu" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24548,7 +24679,7 @@ msgstr "À" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24688,7 +24819,7 @@ msgid "Trap status agent recovered" msgstr "Agent d'état de trap récupéré" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "Les éléments service n'ont pas pu être collectés : " @@ -24716,11 +24847,16 @@ msgstr "Il n’y a pas de métaconsole définie." #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "Image" @@ -24739,8 +24875,8 @@ msgstr "Rapport d'événements de module" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "Disponibilité" @@ -24759,7 +24895,7 @@ msgid "Maximum value" msgstr "Valeur maximale" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "Valeur minimale de l'agent" @@ -24778,7 +24914,8 @@ msgstr "inventaire d'agents" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "À distance" @@ -24801,7 +24938,7 @@ msgid "Agent groups" msgstr "Groupes d’agents" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "Groupes secondaires d’agents" @@ -24816,7 +24953,7 @@ msgid "Prediction date" msgstr "Date de prédiction" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "Graphique de projection" @@ -24837,19 +24974,19 @@ msgid "Top %d" msgstr "Top %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "Rapport du groupe" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "Nombre total d'agents" @@ -24859,17 +24996,17 @@ msgstr "Agents inconnus" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "Nombre total de modules" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "Alertes definies" @@ -24877,18 +25014,21 @@ msgstr "Alertes definies" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "Alertes déclenchées" @@ -24925,8 +25065,8 @@ msgstr "Diagramme circulaire SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "Sommation" @@ -24938,7 +25078,7 @@ msgid "Minimum Value" msgstr "Valeur minimale" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "Minimum" @@ -24953,37 +25093,37 @@ msgstr "Valeur maximale" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "Incrément" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "À partir des données" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "Aux données" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "Croissance négative : " #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "Croissance positive : " #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "Croissance neutre : " @@ -24992,7 +25132,7 @@ msgstr "Croissance neutre : " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "Valeur moyenne" @@ -25003,7 +25143,7 @@ msgstr "Moyenne" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "Rapport du moniteur" @@ -25120,8 +25260,8 @@ msgstr "État " #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "Échec" @@ -25302,7 +25442,7 @@ msgstr "État jour" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "Mois" @@ -25407,7 +25547,7 @@ msgstr "Réseaux IPAM" #: ../../enterprise/include/functions_reporting_csv.php:1984 #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "ID d'agent" @@ -25419,16 +25559,16 @@ msgstr "ID d'agent" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "Commentaires" @@ -25461,7 +25601,7 @@ msgstr "Temps total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "Temps OK" @@ -25472,7 +25612,7 @@ msgstr "Temps erreur" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "Temps inconnu" @@ -25483,7 +25623,7 @@ msgid "Time Not Init" msgstr "Temps non initialisé" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "Temps d'arrêt" @@ -25496,7 +25636,7 @@ msgstr "Vérifications totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "Vérifications OK" @@ -25663,17 +25803,17 @@ msgid "Custom Graph" msgstr "Graphique personnalisée" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "Module de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "Agent de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "Rapport d'alertes de groupe" @@ -25692,20 +25832,20 @@ msgstr "Journal de rapport d'événement" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "Rapport de permissions" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25714,15 +25854,15 @@ msgstr "Identifiant de l'utilisateur" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "Nom complet" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "Permissions" @@ -25775,23 +25915,23 @@ msgid "Agent/module status" msgstr "État de l’agent/module" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "Dernière fois" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "Connexions Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "Adresse IP source" @@ -25801,8 +25941,8 @@ msgid "Destination IP" msgstr "IP Destination" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25873,6 +26013,8 @@ msgid "Public Key Authentication Failed" msgstr "Clé d'authentication publique échouée" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "La connexion a échoué" @@ -25885,7 +26027,7 @@ msgid "Register new node" msgstr "Enregistrer nouveau noeud" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "Mettre à jour le nœud" @@ -25948,7 +26090,7 @@ msgstr "Accès pas autorisé" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -26005,27 +26147,27 @@ msgstr "Résumée de la performance du réseau" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "Tache configurée." #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "Échec de l'assistant. La tache ne peut pas se configurer." @@ -26113,8 +26255,8 @@ msgstr "Application" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "Mettre à jour et continuer" @@ -26136,7 +26278,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -26174,8 +26316,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "Défini" @@ -26202,7 +26344,7 @@ msgstr "Chiffrer les mots de passe" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26482,16 +26624,16 @@ msgstr "Réseau programmé à être scanné. Voyez le progrès chez %s" #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "Pas d'identifiants disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "Gérer des identifiants" @@ -26504,7 +26646,7 @@ msgid "Scan from" msgstr "Scanner depuis" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "Identifiants avec lesquels essayer" @@ -26608,13 +26750,14 @@ msgstr "Programmé correctement" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26853,8 +26996,8 @@ msgstr "Modèle mis à jour" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "Erreur : %s" @@ -27306,7 +27449,7 @@ msgid "Log monitoring is disabled. %s" msgstr "La supervision de journaux est désactivée. %s" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "Ajouter source de journal" @@ -27314,7 +27457,7 @@ msgstr "Ajouter source de journal" msgid "Source name" msgstr "Nom de la source" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "Mettre à jour la source de journal" @@ -27631,90 +27774,90 @@ msgid "SAP System Number" msgstr "Número de système SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "Identifiants SAP" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "Optionnel" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "Licence SAP" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "Connexion SAP OK" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "Vidage SAP" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "Liste des entrées de verrouillage SAP" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "Travaux SAP annulés" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "Entrées par lot SAP erronées" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "IDOC SAP erroné" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "IDOC SAP OK" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "SAP WB sans redémarrage active" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "SAP WP arrêté" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "Moyenne de temps de réponse de SAPGUI" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "Utilisateurs connectés de dialogue" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "TRFC en erreur" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "QRFC en erreur SMQ2" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "Nombre de WPs de mise à jour en erreur" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " @@ -27723,40 +27866,40 @@ msgstr "" "Le module 180 doit être personnalisée avant de l'utiliser, veuillez utiliser " "les options avancées pour définir la documentation suivante :
%s" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "Modules disponibles" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "Ajouter des moniteurs" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "Éliminer des moniteurs" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "Modules sélectionnes" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "Définissez vos modules SAP personnalisés." -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "Configuration de module avancée" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "Définitions des modules personnalisés" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -28321,7 +28464,7 @@ msgid "Remove item" msgstr "Supprimer l’élément" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "Réinitialiser" @@ -28456,9 +28599,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "Champs utilisés lors de l'exécution lorsque l'alerte est déclenchée" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "Détail des alertes" @@ -28486,9 +28630,9 @@ msgstr "Correspondu" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "Déclenché" @@ -28538,7 +28682,7 @@ msgstr "Êtes-vous sûr que vous voulez stand-by l'alerte" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "Mode veille actif" @@ -28605,7 +28749,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "Métaconsole" @@ -28655,7 +28799,7 @@ msgid "Please restore your backups" msgstr "Veuillez rétablir vos sauvegardes" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "Requête" @@ -28665,8 +28809,8 @@ msgid "Table" msgstr "Table" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "Information" @@ -28698,8 +28842,8 @@ msgstr "Le processus a été complété correctement" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "Correctement" @@ -28874,12 +29018,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28918,7 +29062,7 @@ msgid "Missed id parameter." msgstr "Paramètre ID manqué." #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "Il n’y a pas d’informations supplémentaires à afficher" @@ -28934,11 +29078,11 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "Aimez-vous effectuer une restauration de base de données?" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "Arborescence par étiquettes" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " @@ -28949,14 +29093,14 @@ msgstr "" "perdues. Nous vous recommandons que la fréquence de stockage soit plus haute " "que la fréquence d'épurage." -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" "Problèmes avec la date de nettoyage d'événements et la date de passage de " "données à l'historique de la BD." -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller than " @@ -28967,7 +29111,7 @@ msgstr "" "configurer la date de nettoyage à un niveau supérieur à la date de passage de " "l'historique de la BD." -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" "Problèmes avec la date de nettoyage et la date de passage de données à " @@ -29020,7 +29164,7 @@ msgstr "Conformité SLA" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "Non initialisées" @@ -29066,7 +29210,7 @@ msgstr "Journal" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "Aucun SLA défini" @@ -29074,7 +29218,7 @@ msgstr "Aucun SLA défini" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "Inverse" @@ -29123,7 +29267,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "Inconnu" @@ -29131,7 +29275,7 @@ msgstr "Inconnu" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "Arrêts" @@ -29165,8 +29309,8 @@ msgstr "% temps ok" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "24h/24 7j/7" @@ -29189,17 +29333,17 @@ msgid "Checks Critical" msgstr "Vérifications critiques" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "Vérifications avertissement" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "Aucun Agent/Module défini" @@ -29223,51 +29367,51 @@ msgid "Scheduled shutdow" msgstr "Temps d'arrête programé" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "Agents de graphiques(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "Agent de graphiques(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "Il n'y a pas des données pour les conditions sélectionnées" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "Éditeur de modèle" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "Rapport ID" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "Envoyer par courriel" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "Envoyer par courriel " -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "Graphique simple de référence" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "Changements de configuration" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "Aucune fonctionnalité NCM détectée" @@ -29432,40 +29576,52 @@ msgstr "Poids OK" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "Inexistant. Cet élément doit être supprimé." #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "Cet élément n'affecte pas le poids du service parce qu'il est désactivé." #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "L'élément dynamique (%d) '%s' ne correspond avec aucun cible" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "Élément dynamique (%d) '%s' cause une erreur : %s" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "Élément dynamique" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "agents comme « %s »" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "modules comme « %s »" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "NON INITIALISÉ" @@ -29562,46 +29718,46 @@ msgstr "Le mot de passe doit contenir des symboles." msgid "Invalid old password" msgstr "Mot de passe ancien invalide" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "Les mots de passe ne concordent pas." -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "Mot de passe vide" -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Erreur d'authentification" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "Erreur de chargement des données" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "Activation de la double authentification" @@ -29649,10 +29805,11 @@ msgid "Invalid plugin definition" msgstr "Définition de plugin non valide" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "Test" @@ -29743,7 +29900,7 @@ msgstr "Récursif du group d'événement" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "Nombre" @@ -30482,22 +30639,22 @@ msgstr "Politique déjà définie : « %s »" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439 msgid "Event status" msgstr "État des événements" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "Confirmation de l'utilisateur" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "Date de début" @@ -30506,15 +30663,15 @@ msgid "Date to" msgstr "Date de fin" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "Répété" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "Événements d'alerte" @@ -30523,15 +30680,15 @@ msgid "Id source events" msgstr "Événements de source d'ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "Heures maximales" @@ -30541,14 +30698,14 @@ msgid "More than 5 tags" msgstr "Plus de 5 étiquettes" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "Événements avec les étiquettes suivantes" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "Événements sans les étiquettes suivantes" @@ -30620,8 +30777,8 @@ msgid "Subscription" msgstr "Abonnement" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "Le support expire" @@ -30643,7 +30800,7 @@ msgstr "Suivante IP disponible" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30651,12 +30808,12 @@ msgstr "Détails" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "Forcer" @@ -31063,7 +31220,7 @@ msgstr "Copie de" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "Vue de l'instantané" @@ -31074,9 +31231,11 @@ msgstr "Impossible de récupérer les données du module d'inventaire" #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "Chargement en cours..." @@ -31128,8 +31287,8 @@ msgstr "Afficher l'alerte" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324 -#: ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "foi(s)" @@ -31137,10 +31296,10 @@ msgstr "foi(s)" #: ../../godmode/alerts/alert_list.list.php:651 #: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "Alerte non déclenchée" @@ -31174,7 +31333,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptés) (Non liés)" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "Module non initialisé" @@ -31188,22 +31347,22 @@ msgstr "Module non initialisé" #: ../../enterprise/operation/agentes/tag_view.php:1169 #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "Dernier état" @@ -31213,114 +31372,115 @@ msgid "Tag view" msgstr "Vue des étiquettes" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264 +#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "Vues" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "État du moniteur" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "Afficher seulement les étiquettes utilisées" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "Module de serveur de données" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "Module de serveur de réseau" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "Module du serveur plugin" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "Module serveur WMI" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "Module de prédiction du serveur" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "Module du serveur web" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "Type de serveur" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "Activés seulement" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "Désactivés seulement" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "Afficher les moniteurs" #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "Type de données" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "Champs d'agent personnalisés" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "Pas de paramètres de recherche" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "Configuration à distance" @@ -31328,67 +31488,68 @@ msgstr "Configuration à distance" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "Graphique" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "Alerte" #: ../../enterprise/operation/agentes/tag_view.php:1083 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "NON INITIALISÉ" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "%d modules au total" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "%d modules en état normal" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "%d modules en état critique" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "%d modules en état d'alerte" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "%d modules en état inconnu" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "%d modules en état non initialisés" @@ -31399,7 +31560,7 @@ msgid "Main IP" msgstr "Adresse IP principale" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Dernier contact à distance" @@ -31410,24 +31571,24 @@ msgid "Monitors down" msgstr "Moniteurs hors service" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertes déclenchées" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "Analyseur d’itinéraire d’URL" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "Console UX" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "Console WUX" @@ -31527,10 +31688,10 @@ msgid "View all stats" msgstr "Voir toutes les statistiques" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "Afficher plus" @@ -31540,7 +31701,7 @@ msgstr "Transaction invalide." #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "Interface Elasticsearch" @@ -31560,50 +31721,50 @@ msgstr "" "Cette vue est destinée à être utilisée uniquement par les utilisateurs ayant " "une connaissance d’Elasticsearch" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "Sources de journaux" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "Pas pris en charge sur Windows" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "Tous les mots" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "N'importe quel mot" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "Mode recherche" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "Contexte complet" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "Sélectionner des dates par plage" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "personnalisé" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31614,8 +31775,8 @@ msgstr "personnalisé" msgid "%s hours" msgstr "%s heures" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31623,81 +31784,81 @@ msgstr "%s heures" msgid "%s days" msgstr "%s jours" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "1 semaine" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1 mois" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "Date du démarrage" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "Date de fin" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "Modifier les sources" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "Afficher les entrées de journal" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "Résultats du journal graphique" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "Mode d'affichage" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "Utiliser le modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "Créez un nouveau modèle" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "Barres horizontales" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "Barres verticales" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "Type de graphique" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "Options avancées" -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send the " "csv file" @@ -31705,11 +31866,11 @@ msgstr "" "La limite maximale de lignes a été dépassée. Veuillez entrer un e-mail pour " "envoyer le fichier csv" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "adresse e-mail" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." @@ -31718,27 +31879,27 @@ msgstr "" "votre attachement, le fichier sera enregistré dans le dossier des attachements " "local." -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "La date de début ne peut pas être supérieure à la date de fin." -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "Ajouter un nouveau modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "Modifier le modèle de capture" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "Erreur lors de la création d’un nouveau modèle" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "Erreur en supprimant le modèle" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "Erreur lors de la mise à jour du modèle" @@ -31751,8 +31912,8 @@ msgid "AWS view" msgstr "Vue AWS" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "Vue SAP" @@ -31887,7 +32048,7 @@ msgstr "Définition d’élément(s)" msgid "Add selected" msgstr "Ajouter la sélection" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." @@ -31895,49 +32056,49 @@ msgstr "" "Les poids configurés sont communs pour chaque article ajouté au service, si " "vous souhaitez les personnaliser, veuillez modifier le service." -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "Résumé des éléments de service" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "Poids critique" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "Poids d'alerte" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "Poids inconnu" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "Poids normal" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "Services sélectionnés" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "Créer un service" @@ -32060,10 +32221,10 @@ msgid "Show sunburst" msgstr "Afficher sunburst" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "Légende" @@ -32102,23 +32263,24 @@ msgstr "Créer un service" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "Aucune donnée disponible" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "Groupes trouvés" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "Module : " @@ -32523,8 +32685,8 @@ msgstr "Éliminer du super-réseau" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "Afficher les statistiques" @@ -32588,7 +32750,7 @@ msgstr "Supprimer le réseau" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "Interfaces" @@ -32613,7 +32775,7 @@ msgid "Please enter adress, for search vlans" msgstr "Veuillez entrer l'adresse pour chercher des vlans" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "Contexte" @@ -32656,13 +32818,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "Nom du réseau existe déjà dans le super-réseau %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "Erreur de mise à jour" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "Mis à jour correctement" @@ -32678,8 +32840,8 @@ msgstr "Erreur de création : nom en blanc." #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "Erreur de mise à jour des données" @@ -32749,7 +32911,7 @@ msgid "leased expiration" msgstr "expiration loué" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "MAC" @@ -32771,7 +32933,7 @@ msgid "Executing command: %s" msgstr "Exécution de la commande : %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "Exécuter à nouveau" @@ -33018,8 +33180,8 @@ msgid "Click on the file below to begin." msgstr "Cliquez sur le fichier ci-dessous pour commencer." #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "Cette action mettra à niveau cette console vers la version" @@ -33028,27 +33190,27 @@ msgid "This action will upgrade all servers to version " msgstr "Cette action mettra à niveau tous les serveurs vers la version" #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "Mise à jour vers" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "Voulez-vous vraiment quitter notre brillante application ?" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "Il n’y a pas de mises à jour disponibles." #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "Recherche des mises à jour..." #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "Package" @@ -33128,16 +33290,16 @@ msgstr "" "pas installée à moins que les correctifs ne soient autorisés. Veuillez activer " "les correctifs dans les paramètres du gestionnaire de mises à jour." -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "S’inscrire à Warp Update" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "Gardez cette %s console à jour avec les dernières mises à jour." -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -33155,24 +33317,24 @@ msgstr "" " ladite base de données à tout moment depuis les options de Update " "Manager." -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "Visitez notre politique de confidentialité pour plus d'informations" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "Votre email" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "OK !" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "Êtes-vous sûr de ne pas vouloir utiliser Warp Update?" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." @@ -33180,11 +33342,11 @@ msgstr "" "Vous devrez mettre à jour votre système manuellement, via le code source ou " "RPM packages pour être à jour avec les dernières mises à jour." -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "Abonnement infructueux" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "Pandora FMS abonné correctement avec UID : " @@ -33192,25 +33354,25 @@ msgstr "Pandora FMS abonné correctement avec UID : " msgid "The latest version of package installed is" msgstr "La dernière version du paquet installé est" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "Mettre à jour vers la prochaine version" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "Mise à jour vers la dernière version" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "Mettre à jour vers" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "Échec lors de la mise à jour" -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "Échec lors de la mise à jour :" @@ -33239,25 +33401,25 @@ msgstr "Échec de la création du répertoire temporaire." msgid "Failed storing uploaded file." msgstr "Échec du stockage du fichier téléchargé." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "Extension invalide. Le package doit être au format `%s` ou `%s`." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "Échec du téléchargement du fichier." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "Les signatures ne correspondent pas." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "Mise à jour %s installée correctement." -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "Échec lors de la mise à jour : %s" @@ -33329,6 +33491,7 @@ msgid "Matrix events" msgstr "Événements de la matrice" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "Le moteur WebService n'a pas été démarré, vérifiez la documentation" @@ -33565,7 +33728,7 @@ msgstr "Enregistrement de ressource" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "Ressources" @@ -33621,8 +33784,8 @@ msgid "%s Console URL" msgstr "%s URL de la console" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33683,7 +33846,7 @@ msgid "Show URL" msgstr "Afficher URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "Vérifier Schéma BD" @@ -33869,86 +34032,86 @@ msgstr "Exécuter SQL" msgid "Error querying database node" msgstr "Erreur lors de l’interrogation du nœud de base de données" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "Afficher l’état du module" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "Afficher les données du module" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "Informations à afficher" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "Agents/Modules" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "Afficher agent/module" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "Filtres " -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "" "Les groupes secondaires et les sous-groupes d'agents seront pris en compte." -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "Aucun agent avec des modules" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "Modules précédents" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "Plus de modules" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "Cellule orange quand le module contient des alertes déclenchées" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "Cellule rouge quand le module se trouve en état critique" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "Cellule jaune quand le module se trouve en état d'alerte" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "Cellule verte quand le module se trouve en état normal" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "Cellule grise quand le module se trouve en état inconnu" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "" "Cellule devient bleue quand le module se trouve en état « non initialisé »" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "Afficher agents/modules" @@ -34048,7 +34211,7 @@ msgid "Public link" msgstr "Lien publique" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "Dernière modification" @@ -34057,8 +34220,8 @@ msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "Aucun élément" @@ -34177,7 +34340,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "Sauvegarder l'agent (%s), module (%s) de donnés xml" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "Graphiques en temps réel" @@ -34224,12 +34387,12 @@ msgstr "Intervalle d'actualisation" msgid "Incremental" msgstr "Croissant" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "Supprimer le graphique" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "Utiliser cet OID" @@ -34318,8 +34481,8 @@ msgid "No modules for this profile" msgstr "Aucun module pour ce profil" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "Ajouter des modules" @@ -34396,15 +34559,15 @@ msgid "You can find more information at:" msgstr "Vous trouverez plus d’informations sur :" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "Veuillez introduire une valeur de pourcentage positive" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "Chaîne SNMP Enterprise" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "Nom OID" @@ -34412,23 +34575,23 @@ msgstr "Nom OID" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "Espace de noms" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "Mettre à jour le composant de réseau" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "Créer un composant de réseau" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "Gestion des composants à distance" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are read " @@ -34437,37 +34600,37 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Tous les composants distants sont en " "lecture seule. Accédez à %s pour les gérer." -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "Impossible de créer car le composant existe" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" "Rechercher par nom, description, TCP envoyé ou TCP reçu, concordances de " "listes." -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "Max/Min" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "Aucun composant de réseau défini" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "Créer un nouveau composant de réseau" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "Créer un nouveau composant de plugin" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "Créer un nouveau composant de WMI" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "Créer un nouveau composant d'assistant" @@ -34582,6 +34745,7 @@ msgstr "Laissé en blanc pour les modules d'inventaire LOCAUX" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "Format" @@ -34665,7 +34829,7 @@ msgid "Database size stats" msgstr "Statistiques sur la taille de la base de données" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "Nombre total d'événements" @@ -34722,7 +34886,7 @@ msgid "Update group" msgstr "Mettre à jour le groupe" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "Créer un groupe" @@ -34731,44 +34895,44 @@ msgstr "Créer un groupe" msgid "Manage agents group" msgstr "Gérer le groupe d'agents" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "Vous n'avez pas accès au parent" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "Mot de passe du groupe" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "Activer l'utilisation des alertes dans ce groupe." -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "Propager ACL" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "Propager la même sécurité de l'ACL dans les sous-groupes enfants." -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "Contact" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "Information de contact accessible via la _groupcontact_ macro" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "Information accessible par la _group_other_ macro" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "Nombre maximum d'agents autorisés" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Définissez le nombre maximum d'agents autorisés pour ce groupe. 0 est illimité." @@ -34787,8 +34951,8 @@ msgid "Groups defined in %s" msgstr "Groupes définis dans %s" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "Entrepôt d’identifiants" @@ -34813,32 +34977,32 @@ msgid "There was a problem creating group" msgstr "Erreur de création du groupe" #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "Chaque groupe doit avoir un nom différent" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "Le groupe doit avoir un nom" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "Groupe mis à jour correctement" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "Erreur de modification du groupe" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "Le groupe %s n'a pas pu être supprimé car il n'est pas vide dans les nœuds" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34846,42 +35010,42 @@ msgstr "" "Le groupe n'a pas été supprimé dans la Métaconsole en raison d'une erreur dans " "la base de données des nœuds" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "Le groupe %s a été supprimé dans les nœuds" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "Groupe supprimé correctement" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "Erreur de suppression du groupe" -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "Le groupe n'est pas vide. Il est en service sur %s" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "Aucun groupe défini" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" "Modifier ou supprimer des groupes peut provoquer des problèmes avec la " "synchronisation" -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "Es-tu sûr ? Ce groupe sera également supprimé dans tous les nœuds." -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -34931,24 +35095,20 @@ msgstr "Créer un groupe de modules" msgid "Tactical group view" msgstr "Vue de groupe tactique" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "Distribution par système d’exploitation" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "Événements par agent" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "Alertes et événements" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "Dernier contact à distance" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "Extensions définies" @@ -35093,7 +35253,7 @@ msgstr "Gestion des profils utilisateur" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "Gérer les utilisateurs" @@ -35246,7 +35406,7 @@ msgid "Create Profile" msgstr "Créer un profil" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "Afficher les agents" @@ -35267,7 +35427,7 @@ msgid "Edit events" msgstr "Modifier les événements" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "Gérer les événements" @@ -35296,7 +35456,7 @@ msgid "Manage network maps" msgstr "Gérer les cartes de réseau" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "Afficher la console visuelle" @@ -35326,36 +35486,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "Nom du profil déjà utilisé, veuillez changer le nom avant de sauvegarder" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "Supprimer l'utilisateur %s" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "Erreur de suppression de l'utilisateur" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Supprimer l'utilisateur %s de la Métaconsole" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "Supprimer l'utilisateur %s de %s" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "Supprimé de %s correctement" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "Erreur de suppression de l'utilisateur de %s" @@ -35364,15 +35524,15 @@ msgstr "Erreur de suppression de l'utilisateur de %s" msgid "ID user cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "Erreur de désactivation de l'utilisateur" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "Erreur d'activation de l'utilisateur" -#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284 +#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -35381,23 +35541,23 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations des " "utilisateurs sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "Profil/Groupe" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "Administrateur" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "Afficher les profils" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "D'autres profils sont également attribués." -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." @@ -35406,65 +35566,82 @@ msgstr "" "profils ne sont pas affichés. Vous ne pouvez pas activer/désactiver ou " "supprimer cet utilisateur." -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "Aucun profil/groupe assigné à cet utilisateur" -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "Editer l'utilisateur" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "Créer un utilisateur" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" "Le schéma d'authentification actuel ne prend pas en charge la création " "d'utilisateurs sur %s" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "Liste d'événements" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "Lien externe" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "Mettre à jour l'utilisateur" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "Créer un utilisateur" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "Éditeur d'information sur l'utilisateur" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "La ID de cette utilisateur existe déjà" + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID utilisateur non valide : les espaces vides de début ou de fin ne sont pas " "autorisés" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "Les mots de passe ne peuvent pas être vides." -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "Les mots de passe saisis ne sont pas identiques." -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "" "Le mot de passe fourni n’est pas valide. S’il vous plaît, entrez-en un autre." -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -35472,62 +35649,62 @@ msgstr "" "Les ACL strictes ne sont pas recommandées pour les administrateur parce que " "cela pourrait affecter la performance." -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "Profil ajouté correctement" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "Impossible d'ajouter le profil" -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "L'information de l'utilisateur a été mise à jour correctement." -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "" "Erreur de mise à jour de l'information de l'utilisateur (aucun changement ?)" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "" "Le mot de passe de l'utilisateur actif est requis pour effectuer le changement " "de mot de passe" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "Le mot de passe de l'utilisateur actif n'est pas correct" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "Les mots de passe ne concordent pas" -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "Vous avez généré un nouveau jeton API." -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "Les ACL strictes ne sont pas recommandées pour ces utilisateurs. La " "performance pourrait être affectée." -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " @@ -35536,67 +35713,67 @@ msgstr "" "Le jeton API sera renouvelé. Après cette action, le dernier jeton que vous " "utilisiez ne fonctionnera pas. Êtes-vous sûr?" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "Votre jeton API est :" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "S’il vous plaît, évitez de partager cette chaîne avec d’autres." -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "Nom complet (affiché)" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "Le fuseau horaire doit être celui du serveur associé." -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "Confirmation du mot de passe" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "Confirmation propre du mot de passe" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "Utilisateur administrateur" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "Courriel" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "Numéro de téléphone" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "Liste d’adresses IP autorisées pour la connexion" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -35604,31 +35781,31 @@ msgstr "" "Ajoutez les adresses IP source qui autoriseront l’accès à la console. Chaque " "adresse IP doit être séparée uniquement par une virgule. * permet tout." -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "Thème" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "Vue de recherche d’un champ personnalisé" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" "Charger par défaut la vue sélectionnée dans la vue de champ personnalisée" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "Utiliser configuration générale" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "Page d'accueil" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -35641,72 +35818,72 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 pour afficher la vue " "détaillée de l'agent" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "Accès à la Métaconsole" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "Filtre d'événement par défaut" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "Utilisateur eHorus" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "Mot de passe eHorus" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "L'utilisateur doit être créé avant d'activer la double authentification." -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "Afficher l'information" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "Activer la gestion d'agents" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "Activer l'accès au nœud" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Si cette option est activée, l'utilisateur pourra accéder à la console de nœuds" -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "Oui" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "Non" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "Veuillez sélectionner le profil et le groupe" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "Ce profil est déjà défini" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "La suppression du dernier profil supprimera cet utilisateur" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -35714,44 +35891,33 @@ msgstr "" "L'utilisateur sera créé sans profils attribués et ne pourra pas se connecter, " "êtes-vous sûr ?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "Information d'authentification double" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "La double authentification sera désactivée." -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "Désactiver" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "La double authentification a été désactivée correctement." -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "Erreur de désactivation de la double authentification" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "Liste d'événements" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "Lien externe" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "Informations du profil" @@ -35793,11 +35959,11 @@ msgstr "" "L’utilisateur dont l’authentification locale est activée utilisera toujours " "l’authentification locale." -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "Durée de la session" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -35805,55 +35971,55 @@ msgstr "" "Défini en minutes ; si vous souhaitez établir une session permanente, " "introduisez -1 dans ce champ." -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "Rafraîchissement automatique" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "Liste complète de pages" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "Pages avec rafraîchissement automatique" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "" "Ajouter les pages sélectionnées à la liste de rafraîchissement automatique." -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "" "Supprimer les pages sélectionnées de la liste de rafraîchissement automatique" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "Rafraîchissement automatique des pages" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "Temps de rafraîchissement automatique" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -35861,40 +36027,36 @@ msgstr "" "Intervalle de rafraîchissement automatique des éléments, par défaut ils sont " "de 30 secondes, il faut d'abord activer le rafraîchissement automatique" -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "Langage et apparence" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "Jeu de couleurs utilisateur" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "Filtre d'événements" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "Fuseau horaire" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "Réglages supplémentaires" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "Autoriser toutes les adresses IP" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "Généré automatiquement avec les informations fournies à l’utilisateur" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "Créé par modèle " @@ -35907,14 +36069,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Erreur d'ajout de modules. Les erreurs suivantes existent déjà : " #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "Modules ajoutés correctement" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "Modèles de modules" @@ -35925,7 +36087,7 @@ msgid "Assign" msgstr "Attribuer" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "Pas de modules" @@ -35946,70 +36108,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero). msgstr "" "Numéro de colonne à extraire du résultat de la requête WQL (à partir de zéro)." -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "Déboguer à distance ce module" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "Déboguez ce module une fois qu'il a été initialisé" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "Débogage" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "Requêtes" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "Identifiant du navigateur (Agent browser)" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "Authentification HTTP (connexion)" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "Authentification HTTP (mot de passe)" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "Authentification du proxy (connexion)" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "Authentification du proxy (mot de passe)" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "Authentification du proxy (serveur)" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "Authentification du proxy (realm)" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "Impossible d'obtenir ou de publier" -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "Détail des moniteurs" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "Dernier changement d’état" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "Afficher les champs de détail du moniteur" @@ -36033,15 +36200,15 @@ msgid "Could not be created, because IP already exists" msgstr "Impossible de créer, car l'IP existe déjà" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "Données GIS" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidents" @@ -36071,12 +36238,12 @@ msgid "Manage agents" msgstr "Gérer les agents" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "Le fichier de configuration a été supprimé correctement" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "Erreur de suppression du fichier de configuration" @@ -36120,11 +36287,11 @@ msgstr "Dupliquer l’adresse IP principale" msgid "There was a problem updating the agent" msgstr "Problème de mise à jour de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "Problème de chargement de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -36132,75 +36299,75 @@ msgstr "" "Problème de mise à jour du module. Un autre module avec le même nom existe " "déjà." -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Problème de mise à jour du module. Certains champs obligatoires sont " "manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "Problème de mise à jour du module. « Aucun changement »" -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "Problème de mise à jour du module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "Module mis à jour correctement" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the same " "name." msgstr "" "Problème d'ajout de module. Un autre module avec le même nom existe déjà." -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Problème d'ajout de module. Certains champs obligatoires sont manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "Problème d'ajout de module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Module ajouté correctement" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "Problème de suppression du module" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "Module supprimé correctement" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "Enregistrer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "Mise à jour par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "Insérer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "Onglet non valide" @@ -36288,7 +36455,7 @@ msgid "Error forcing inventory module" msgstr "Erreur : module d'inventaire non forcé" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "Cible" @@ -36340,49 +36507,54 @@ msgstr "" "Rechercher filtre par alias, nom, description, adresse IP ou contenu de champs " "personnalisés" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "Configuration de l'agent à distance" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "Module en temps d’arrêt planifié" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "Éditer la configuration à distance" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "Activer l'agent" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "Vous allez activer un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "Désactiver l'agent" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "Vous allez désactiver un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "ATTENTION! - Vous allez supprimer un agent de grappe. Êtes-vous sûr ?" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "Supprimer l'agent" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "Déployer des agents" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." @@ -36437,7 +36609,7 @@ msgstr "Tous les modules" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "Temps d'arrêt programmé" @@ -36534,7 +36706,7 @@ msgstr "Voulez-vous migrer automatiquement les éléments incorrects ?" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" "Cet élément ne peut pas être modifié lorsque le temps d'arrêt est en exécution." @@ -36691,12 +36863,12 @@ msgid "Type Periodicity" msgstr "Type de périodicité :" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "À partir du jour" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "Jusqu'au jour" @@ -36713,14 +36885,14 @@ msgid "To hour" msgstr "Jusqu'à l'heure :" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "Cron à partir de" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "Cron à" @@ -36764,12 +36936,12 @@ msgstr "Quelques modules" msgid "Add Module:" msgstr "Ajouter un module :" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "Veuillez sélectionner un module." -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36830,12 +37002,12 @@ msgstr "" msgid "Create field" msgstr "Créer un champ" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "Chemin SNMP" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36846,13 +37018,13 @@ msgstr "" "guillemets doubles sont nécessaires, veuillez les échapper avec une barre " "oblique inverse (\\\")" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "Télécommande Windows" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "Icône de l'agent" @@ -36862,7 +37034,7 @@ msgstr "Utiliser alias comme nom" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "IP unique" @@ -36889,64 +37061,64 @@ msgstr "Liste d’adresses IP" msgid "Primary group" msgstr "Groupe primaire" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "Modules de protection en cascade" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "Mode d'apprentissage" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "Mode normal" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "Mode désactivation automatique" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "Définition des modules" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "Services de protection en cascade" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "Mettre à jour les nouvelles données SIG" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "Adresse URL" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "Mode désactivé" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "Mode d'opération sécurisé" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "Texte du lien :" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "URL du lien :" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "Cette action n’est pas réversible. Êtes-vous sûr ?" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "Le groupe secondaire ne peut pas non plus être principal." @@ -37051,86 +37223,86 @@ msgid "Warning threshold" msgstr "Seuil d’avertissement" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "Min / Max" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "Seuil critique" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "Identification et catégorisation" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "Parent de module" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "Étiquettes de la politique" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "Intervalle d’exécution" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "Seuils et changements d’état" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "Intervalle de seuil dynamique" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "Deux queues" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "Les données et leur traitement" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "Notifications et alertes" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "Pas nécessaire" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "Services de protection en cascade" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "Direct" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "Basculement" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "Type de relations" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "Ajouter une relation" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "Changements" @@ -37162,7 +37334,8 @@ msgstr "" "Un problème est survenu lors de l'exécution de l'opération. Appliqué aux " "modules %d/%d." -#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999 +#: ../../godmode/agentes/module_manager.php:619 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "P" @@ -37170,42 +37343,42 @@ msgstr "P" msgid "S" msgstr "S" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "Adopté" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "Normaliser" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Créer un composant de réseau" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 -#: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "Aucune donnée disponible" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "Exécuter l'action" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "Sélectionner le type de module" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "Obtenez plus de modules sur Monitoring Library" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -37235,7 +37408,7 @@ msgid "Item list" msgstr "Liste d'éléments" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "Valeurs maximales" @@ -37261,49 +37434,49 @@ msgstr "Filtres Netflow" msgid "There are no defined filters" msgstr "Aucun filtre défini" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "Filtrer la liste" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "Ajouter un filtre" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "Adresse IP source" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "Adresse IP de destination" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "Port source" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "Port de destination" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "Regrouper par" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "Adresse IP de destination" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" @@ -37313,13 +37486,13 @@ msgstr "" "destination. Si le champ est laissé vide, toutes les adresses IP seront " "affichées. Exemple de filtre par IP :
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "Adresse IP source" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" @@ -37328,8 +37501,8 @@ msgstr "" "champ est laissé vide, toutes les adresses IP seront affichées. Exemple de " "filtre par IP :
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave the " "field blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37338,8 +37511,8 @@ msgstr "" "le champ est laissé vide, tous les ports seront affichés. Exemple de filtre " "par ports 80 et 22 :
80,22" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" @@ -37348,21 +37521,88 @@ msgstr "" "laissé vide, touts les ports seront affichés. Exemple de filtre par ports 80 " "et 22 :
80,22" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "Filtres avancés" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "Activer la supervision Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this filter. " +"It also creates a module that measures if the traffic of any IP of this filter " +"exceeds a certain threshold. A text type module will be created with the " +"traffic rate for each IP within this filter every five minutes (the 10 IP's " +"with the most traffic). Only available for Enterprise version." +msgstr "" +"Il vous permet de créer un agent qui supervise le volume de traffic de ce " +"filtre. Il crée aussi un module qui mesure si le traffic de n’importe quelle " +"IP de ce filtre dépasse un certain seuil. Un module de type texte sera créé " +"avec le taux du traffic pour chaque IP dans ce filtre tous les cinq minutes " +"(les 10 IP avec plus de traffic). Seulement disponible dans la version " +"Enterprise." + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "Intervalle de supervision Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "Intervalle de supervision Netflow en secondes." + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "Valeur du traffic maximale du filtre" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then " +"used to calculate the % of maximum traffic per IP." +msgstr "" +"Il spécifique le taux maximale (en bytes/sec) du traffic dans le filtre. Il " +"est après utilisé pour calculer le % du traffic maximale par IP." + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "Seuil CRITIQUE pour le maximum % du traffic pour une IP." + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" +"Si ce % est dépassé par une IP dans le filtre, un état critique sera généré." + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP." + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" +"Si ce % est dépasse par n’importe quelle IP dans le filtre, un état " +"d’AVERTISSEMENT sera généré." + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "Générateur de déroutements SNMP" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "SMNP" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "Paramètres vides" @@ -37481,9 +37721,9 @@ msgid "Custom Value/Enterprise String" msgstr "Valeur personnalisée/Chaîne Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "Nombre de fois déclenchée" @@ -37503,7 +37743,7 @@ msgstr "Voulez-vous supprimer cette alerte ?" msgid "Do you want delete the selected alerts?" msgstr "Voulez-vous supprimer les alertes sélectionnées ?" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "Ajouter une action " @@ -37592,147 +37832,147 @@ msgstr "Gérer les groupes d'agents" msgid "Private Enterprise Numbers" msgstr "Numéros d'entreprise privée" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "Composants distants" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Opérations des agents" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Opérations des modules" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Opérations des plugins" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Opérations des utilisateurs" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Opérations d'alertes" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "Filtres d'événements" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "Colonnes personnalisées" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "Liste d'alertes" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "Liste de jours spéciaux" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "Alertes SNMP" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "Gérer les serveurs" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "Gérer les consoles" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "Enregistrer Plugin" -#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuration générale" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "Sflow" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 -#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 +#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "Moteur de Websocket" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 -#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 +#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "Outils externes" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "Astuces de bienvenue" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "Connexions de cartes GIS" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "Information de diagnostic" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "Nouveautés du site" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "Vérifier schéma de la BD" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "Interface de la BD" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "Configuration de la console acoustique" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "Afficher le gestionnaire d'extension" -#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Warp Update" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "Mise à jour hors ligne" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "Mise à jour en ligne" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "Journal de Warp" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Bibliothèque de modules" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -38034,10 +38274,10 @@ msgstr "Agents avec des modèles" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "Modèles d'alertes" @@ -38059,7 +38299,7 @@ msgstr "Aucun module sélectionné" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "Aucun agent sélectionné" @@ -38148,29 +38388,29 @@ msgstr "Les utilisateurs ne peuvent pas être mis à jour (%s)" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Utilisateurs" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "Le rafraîchissement automatique sera activé sur les pages sélectionnées." #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "Liste de pages avec le rafraîchissement automatique" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "Temps de rafraîchissement" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "Aucune alerte sélectionnée" @@ -38288,33 +38528,33 @@ msgstr "Fichiers de configuration supprimés correctement" msgid "Configuration files cannot be deleted" msgstr "Erreur de suppression des fichiers de configuration" -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "Agents mis à jour correctement (%d)" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "Les agents ne peuvent pas être mis à jour (%d), ids (%s)" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "" "ID de l’agent : %s ne peut pas être mis à jour des champs personnalisés (%s)" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "" "ID de l’agent : %s ne peut pas être mis à jour %s groupes secondaires (%s)" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "Protection en cascade" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " "disabling it." @@ -38322,34 +38562,34 @@ msgstr "" "Si la configuration à distance est activée, elle passera également en mode " "veille lors de sa désactivation." -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "Activé" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "Supprimer les configurations à distance disponibles" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "Sans état" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "Mauvais" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "Ignorer les nouvelles données GIS :" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "" "L'agent fonctionne toujours mais les alertes et les événements seront arrêtés" -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -38401,15 +38641,11 @@ msgstr "" "mettre à jour)" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "Filtrer les agents" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "Communauté SNMP" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by editing " "config.php in each individual console and wait for cron to run in order to be " @@ -38452,7 +38688,7 @@ msgid "Hide" msgstr "Cacher" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "Actions d'alerte" @@ -38515,12 +38751,12 @@ msgstr "" "Les actions par défaut seront exécutées chaque fois que l'alerte est " "déclenchée et qu'aucune autre action est exécutée." -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "Afficher les informations avancées des alertes" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "Aucune alerte définie" @@ -38565,12 +38801,12 @@ msgid "Alert commands" msgstr "Commandes d'alertes" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "Aucun nom indiqué" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "Aucune commande spécifiée." @@ -38582,7 +38818,7 @@ msgstr " (copie)" msgid "No alert commands configured" msgstr "Aucune commande d'alerte configurée" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates information " @@ -38591,7 +38827,7 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations sur les " "modèles d'alerte sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit All " "group." @@ -38599,7 +38835,7 @@ msgstr "" "Vous ne pouvez pas modifier ce modèle d'alerte, vous n'êtes pas autorisé à " "modifier le groupe Tous." -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "Aucun modèle d'alerte défini" @@ -38616,6 +38852,14 @@ msgstr "Cette action peut cesser de fonctionner si vous modifiez son nom." msgid "Create Command" msgstr "Créer une commande" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless of " +"how many times the alert is triggered." +msgstr "" +"Une action d’alerte est exécutée seulement une fois dans cet intervalle de " +"temps, n’importe combien de fois l’alerte est déclenchée." + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "Déclenchement" @@ -38645,7 +38889,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "Configurer le modèle d'alerte" @@ -38672,6 +38916,14 @@ msgstr "" msgid "No template name specified" msgstr "Aucun nom de modèle spécifié" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" +"Remettre le compteur d’alertes dans la période configurée s’il n’y a pas de " +"récupération manuelle ou validation de l’alerte." + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those set " @@ -38718,7 +38970,7 @@ msgid "No wizard" msgstr "Pas d'assistant logiciel" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" "L'alerte est déclenchée lorsque la valeur concorde avec " msgstr "L'alerte est déclenchée lorsque la valeur est " #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" "L'alerte est déclenchée lorsque la valeur n'est pas " #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -38772,12 +39024,12 @@ msgstr "" "" #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "L'alerte est déclenchée lorsque le module se trouve en état d'alerte" #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "L'alerte est déclenchée lorsque le module se trouve en état critique" @@ -38827,14 +39079,14 @@ msgstr "Liste d'alertes" msgid "Stand by" msgstr "Veuillez patientez" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" "L'alerte est déclenchée lorsque la valeur ne concorde pas avec " -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38921,6 +39173,10 @@ msgstr "Créer une action" msgid "Create Template" msgstr "Créer un modèle" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "Il a de la priorité sur la configuration du seuil de l’action." + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "Terminer et afficher la grappe" @@ -38954,12 +39210,12 @@ msgid "Licence" msgstr "Licence" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "Mot de passe du client" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "Limite de la plateforme" @@ -38975,22 +39231,22 @@ msgid "modules" msgstr "modules" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "Nombre de plateformes actuelles" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "Nombre de plateformes actuelles (activés : éléments)" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "Nombre de plateformes actuelles (désactivés : éléments)" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "Mode licence" @@ -38999,7 +39255,7 @@ msgid "NMS" msgstr "NMS" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "Sous licence pour" @@ -39057,40 +39313,44 @@ msgstr "" msgid "Site news management" msgstr "Gérer les nouveautés du site" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "Erreur de nom" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "Écran modal" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "Expire le" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "Expiration" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "Aucune nouvelle définie" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "Auteur" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "Bienvenue à la console web Pandora FMS" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "Modal" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "Panneau" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "Expiré" @@ -39118,7 +39378,7 @@ msgstr "Connexion à la carte SIG" msgid "Pandora Websocket Engine" msgstr "Moteur de Websocket Pandora FMS" -#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493 +#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "Créer une astuce" @@ -39135,7 +39395,7 @@ msgid "Correct update the setup options" msgstr "Corrigez la mise à jour des options de configuration" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "Activer eHorus" @@ -39156,6 +39416,17 @@ msgstr "Port API" msgid "Request timeout" msgstr "Demande expirée" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "Connexion correcte" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "Tester la connexion" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "Système de Gestion à Distance" @@ -39197,24 +39468,24 @@ msgstr "Dépassement du délai de connexion" #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "Utilisateur ou mot de passe vide" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "Utilisateur introuvable" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "Mot de passe incorrect" @@ -39223,55 +39494,52 @@ msgstr "Mot de passe incorrect" msgid "Data storage path" msgstr "Chemin de stockage de données" -#: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "Intervalle de démon" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "Chemin binaire démon" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "Chemin binaire nfdump" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "Chemin binaire Nfexpire" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "Résolution maximale du graphique" -#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607 +#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "Durée de vie maximale de Sflow" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "La résolution de l'adresse IP peut prendre du temps" #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "Résolution du nom pour l'adresse IP" @@ -39288,7 +39556,7 @@ msgid "Bind port" msgstr "Lier le port" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "URL du proxy WebSocket" @@ -39301,11 +39569,11 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les définitions de système " "d'exploitation sont en lecture seule. Accédez à %s pour les gérer." -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "Aucun système d'exploitation défini" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "Définir système d'exploitation" @@ -39391,9 +39659,9 @@ msgstr "Google Maps" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "Image statique" @@ -39442,24 +39710,24 @@ msgid "Corners of the area of the image" msgstr "Coins qui délimitent la surface de l'image" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "Gauche" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "En bas" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "Droite" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "En haut" @@ -39555,7 +39823,7 @@ msgid "Integria IMS API is not reachable" msgstr "L'API Integria IMS n'est pas accessible" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "Activer Integria IMS" @@ -39628,183 +39896,183 @@ msgstr "Erreur d'enregistrement de la traduction SNMP" msgid "Unsucessful save the snmp translation." msgstr "Erreur d'enregistrement de la traduction SNMP" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "Durée de vie maximale du Netflow" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "Cliquer pour afficher les menus latéraux" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "Vue paginée du module" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "Taille de la police de l'étiquette de service" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "Espace entre les éléments sur les cartes de service" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "Couleurs" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "Apparence" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "Couleurs et texte" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "Modèle de style" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "Définir icône d'état" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "Logo de documentation personnalisé" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "Logo d'assistance personnalisé" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "Logo du centre de carte réseau personnalisé" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "Icône de console mobile personnalisée" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "Désactiver logo sur les graphiques" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "Désactiver les aides" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "En-tête fixe" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "Masquer automatiquement le sous-menu" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "Étiquettes GIS" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "Icône par défaut sur GIS" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "Icône du groupe de l'agent" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "Taille de police des graphiques" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "Afficher l'unité et la valeur dans les rapports" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "Taille du texte de l'agent" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "Petit" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "Taille du texte du module" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "Taille du texte de description" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "Taille du texte du titre de l'élément" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "Couleur du graphique #" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "Précision des données" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "Précision de données sur les graphiques" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "Épaisseur de ligne par défaut pour le graphique personnalisé" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "Zoomer les graphiques" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "Affichage classique" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "Vue des favoris" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "Type d'affichage des consoles visuelles" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "Nombre de consoles visuelles préférées à afficher dans le menu" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "Épaisseur de ligne par défaut pour la console visuelle" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "Nombre de services favoris à afficher dans le menu" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." @@ -39813,90 +40081,90 @@ msgstr "" "'images/custom_logo'. Vous pouvez télécharger plus de fichiers (SEULEMENT JPEG " "ET PNG) dans l'outil de téléchargement de la console." -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "Largeur maximale de la carte de réseau" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "Afficher les groupes vides dans la vue de groupe" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "Séparateur décimal" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" -msgstr "Heure visible des notifications réussies" +msgstr "Temps visible des notifications réussies" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "Valeurs personnalisées pour post-traitement" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "Supprimer les valeurs personnalisées" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "Valeurs d'intervalle" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "Supprimer des valeurs d’intervalle" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "Unités du module" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "Configuration de comportement" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "Configuration GIS" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "Configuration du style" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "Configuration de graphiques" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "Configuration de la police et du texte" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "Configuration des consoles visuelles" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "Configuration des rapports" -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "Configuration des services" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "Autre configuration" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "Aperçu du logo de la console mobile" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "Aperçu des icônes GIS" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "Aperçu de l'état" @@ -39980,8 +40248,12 @@ msgstr "Activer Sflow" msgid "General network path" msgstr "Chemin réseau général" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "Configuration du fuseau horaire du serveur" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "Liste noire des changements d'inventaire" @@ -40046,11 +40318,11 @@ msgstr "Utile pour les intégrations" msgid "Log location" msgstr "Emplacement du journal" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "Options générales" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/enable " "manually external connections using SMTP and you need to use STARTTLS on port " @@ -40066,29 +40338,29 @@ msgstr "" "Si vous avez des paramètres manuels dans votre pandora_server.conf, veuillez " "noter que ces paramètres ignoreront cette configuration de la console." -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "De l'adresse" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "Serveur SMTP" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "Port SMTP" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "Test d'un email" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "Envoyer" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "Vérifier la configuration de la messagerie" @@ -40100,29 +40372,29 @@ msgstr "Pandora_db s'exécutant dans la base de données historique." msgid "not executed" msgstr "Non exécuté" -#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834 +#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "Nombre de jours maximum avant la suppression de déroutements" #: ../../godmode/setup/performance.php:308 -#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838 +#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "Nombre de jours maximum avant la suppression de chaînes de données" -#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846 +#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "Nombre de jours maximum avant la suppression de données GIS" #: ../../godmode/setup/performance.php:353 -#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862 +#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "Nombre de jours maximum avant la compression de données" -#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854 +#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "Nombre de jours maximum avant la suppression de modules inconnus" -#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858 +#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "Nombre de jours maximum avant la suppression de modules non initialisés" @@ -40132,24 +40404,24 @@ msgstr "" "Nombre de jours maximum avant la suppression d'agents à désactivation " "automatique" -#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914 +#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "Période de rétention de jours spéciaux passés" #: ../../godmode/setup/performance.php:494 -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "Interpolation de compression en heures (1 Optimale-20 Mauvaise)" -#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928 +#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "Max. jours avant de supprimer les anciens messages" -#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932 +#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "Max. jours avant de supprimer les anciennes données de la matrice réseau" -#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923 +#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "Nombre de jours maximum avant la suppression de données d'inventaire" @@ -40169,20 +40441,20 @@ msgstr "10 jours" msgid "2 weeks" msgstr "2 semaines" -#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886 +#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "Utiliser des statistiques en temps réel" -#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890 +#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "Période de statistiques par lot (en secondes)" -#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898 +#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "" "Nombre maximum de fichiers recommandé dans le répertoire des pièces jointes" -#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902 +#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "Supprimer les modules non initialisés" @@ -40190,11 +40462,11 @@ msgstr "Supprimer les modules non initialisés" msgid "Big Operation Step to purge old data" msgstr "Étape majeure pour nettoyer les données anciennes" -#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910 +#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "Étape mineure pour nettoyer les données anciennes" -#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936 +#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "Conteneur de graphiques - Nombre maximal d'éléments" @@ -40237,7 +40509,7 @@ msgstr "Options de maintenance de la base de données historique" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "Autres" @@ -40246,7 +40518,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "Paramètres par défaut de l’Assistant de l’interface SNMP de l’agent" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "Index de %s" @@ -40286,8 +40558,8 @@ msgstr "Créer une console visuelle" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "Fond d'écran" @@ -40296,10 +40568,10 @@ msgid "Background image" msgstr "Image de fond" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "Couleur de fond" @@ -40348,107 +40620,107 @@ msgstr "Le fichier n'a pas une extension d'image." msgid "Problems with move file to target." msgstr "Problèmes de déplacement du fichier à la cible" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "Mis à jour correctement" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "Mise à jour échouée" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "Créé correctement" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "Erreur de création" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "Suppression multiple réussie" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "Suppression multiple échouée" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "Supprimé correctement" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "Liste de consoles visuelles" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "Afficher lien vers console visuelle publique" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "Données principales" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "Liste d'éléments" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "Assistant de services" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "Nouvelle console visuelle" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "Classer les éléments sélectionnés à partir de la position : " -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "Déplacer avant" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "Déplacer après" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "Classer les éléments" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "Supprimer les éléments sélectionnés à partir de la position : " -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "Supprimer ce qui se trouve au-dessus de" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "Supprimer ce qui se trouve au-dessous de" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "Position" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." @@ -40456,16 +40728,16 @@ msgstr "" "Êtes-vous sûr de trier les éléments dans le rapport ?\\n. Cette action modifie " "le tri des éléments dans la base de données." -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "Veuillez sélectionner un élément à organiser" -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "Êtes-vous sûr(e) de vouloir supprimer les éléments dans le rapport ?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "Veuillez sélectionner un élément à supprimer" @@ -40517,7 +40789,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "Type de graphique" @@ -40525,8 +40797,8 @@ msgstr "Type de graphique" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "Afficher graphique à pleine échelle (TIP)" @@ -40542,7 +40814,7 @@ msgstr "Graphique de module simple" #: ../../godmode/reporting/create_container.php:715 msgid "Dynamic rules for simple module graph" -msgstr "Règles dynamiques pour un graphique de module simple" +msgstr "Règles dynamiques pour le graphique du module simple" #: ../../godmode/reporting/create_container.php:731 msgid "There are no items in this container." @@ -40584,7 +40856,7 @@ msgid "Graph editor" msgstr "Éditeur de graphique" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "Afficher graphique" @@ -40671,23 +40943,23 @@ msgstr "" "Le nombre maximal d'éléments dans un graphique est %d. Vous avez %d éléments, " "seul le premier %d sera affiché." -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "Classer les éléments sélectionnés" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "avant" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "après" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "Non valide" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use it " "for scheduled reports and not for real-time view." @@ -40722,55 +40994,55 @@ msgstr "" msgid "Show modules" msgstr "Afficher les modules" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "Dernier" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "Serveur cible" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "Définition des macros" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "Définition du rendu" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" "Veuillez noter que tous les styles CSS ne sont pas pris en charge par les " "rapports PDF." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "Supérieur ou égal (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "Inférieur ou égal (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "Inférieur (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "Supérieur (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "Égal (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "Pas égal (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at the " "end of the report and Checks." @@ -40778,39 +41050,39 @@ msgstr "" "Afficher un graphique récapitulatif avec le nombre maximum, minimum, moyen de " "modules au total à la fin du rapport et des vérifications." -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "Vérifie dans l'état d'avertissement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "Données uniquement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "Inclure les événements prolongés" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "Afficher les données personnalisées" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "Par agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "Par validateur d’utilisateur" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "Par criticité" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "Validé vs non validé" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." @@ -40818,20 +41090,20 @@ msgstr "" "Avec le jeton activé, la requête affectera la base de données historique, ce " "qui peut signifier une petite baisse des performances." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "Inclure Filtre" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "Recherche de chaîne de texte libre sur la description de l'événement" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "Exclure le filtre" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" @@ -40840,88 +41112,88 @@ msgstr "" "20,8Koctets/s), sinon la valeur complète sera affichée (exemple : 20,742 " "octets/s)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "Groupe non affecté" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "Groupe non affecté" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "Sélectionner par groupe" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "Afficher les options" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "Filtre de groupe d'agents" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "Filtre du système d'exploitation de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "Champ personnalisé de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "Filtre de champ personnalisé de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "Filtre d'état de l'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "Filtre de version d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "L'agent a une configuration à distance" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "Filtrer les agents par configuration à distance activée." -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "Filtre de module d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "Filtre de groupe de modules" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "Rechercher nom de module" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "Basculement d'agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "Basculement de module" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "" "Veuillez enregistrer l’élément avant d’ajouter des entrées à cette liste." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "taux" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." @@ -40929,46 +41201,46 @@ msgstr "" "Veuillez faire attention lorsque le module présente des intervalles " "différents ; la sommation pourrait obtenir des résultats erronés." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "Veuillez sauvegarder le rapport pour ajouter des éléments à la liste." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "Informations sur l'éditeur d’éléments" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "Veuillez sélectionner un nom." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "Veuillez sélectionner un agent" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "Veuillez insérer une requête SQL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "Veuillez insérer une URL." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "Veuillez cocher une option d'intervalle personnalisé." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "Veuillez sélectionner un utilisateur." -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "Sélectionnez un groupe." @@ -40989,26 +41261,26 @@ msgid "Percentile Bubble" msgstr "Bulle de centile" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "Graphique de module" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "Graphique de l'historique des événements" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "Valeur simple" @@ -41026,52 +41298,54 @@ msgstr "Valeur simple (processus moyen)" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "Boîte" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "Lien réseau" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "Nuage de couleur" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "Graphique de base" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "Odomètre" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "Horloge" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "Modifier les étiquettes" @@ -41114,14 +41388,14 @@ msgid "An error has ocurred" msgstr "Une erreur est survenue" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "Liste de rapports" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "Rapports personnalisés" @@ -41144,16 +41418,16 @@ msgstr "" msgid "Create report" msgstr "Créer un rapport" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "Afficher le rapport" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "Créez un rapport personnalisé." -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "Action échouée

" @@ -41164,16 +41438,16 @@ msgstr "Graphique statique" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "Élément centile" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "Graphique de module" @@ -41191,30 +41465,30 @@ msgid "Size (px)" msgstr "Taille (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "Taille de la police" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "Processus" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "Valeur minimale" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "Valeur maximale" #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "Valeur moyenne" @@ -41223,20 +41497,20 @@ msgid "Width (px)" msgstr "Largeur (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "Bulle" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "Pourcentage" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "Valeur à afficher" @@ -41293,7 +41567,7 @@ msgstr "La taille minimale autorisée est 1024x768" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "Action en cours" @@ -41445,88 +41719,88 @@ msgstr "" "Si elle est activée, la commande sera affichée à tout utilisateur pouvant " "exécuter cette réponse d’événement" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "Enregistrer dans le groupe" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" "Ce groupe sera utilisé pour limiter la visibilité de ce filtre avec les ACL." -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "Choisissez parmi les utilisateurs ayant validé un événement. " -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "Propriétaire." -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "Tous les événements" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489 msgid "Group events" msgstr "Événements du groupe" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "Groupes d'agents" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "ID supplémentaire de groupe" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "Filtrer les événements d'alerte" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "Seulement les événements d'alerte" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "Identifiant supplémentaire" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "Type de filtre de données personnalisé" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "Filtrer les données personnalisées par champ de nom" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "Filtrer les données personnalisées par champ de valeur" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "Données personnalisées" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "Id source d'événement" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -41598,7 +41872,7 @@ msgid "Severity mini" msgstr "Sévérité mini" #: ../../godmode/events/custom_events.php:116 -#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "ID personnalisé du module" @@ -41689,24 +41963,19 @@ msgstr "Erreur interne, veuillez réexécuter cet assistant." msgid "Manual interval means that it will be executed only On-demand" msgstr "Avec l'intervalle manuel il sera exécuté uniquement sur demande" -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes." - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "Utiliser la définition de fichier CSV" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "Définissez des cibles à l'aide de la définition de réseau csv ou." -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "Réseaux (csv)" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK format. " "For instance: 192.168.1.1/32" @@ -41714,15 +41983,15 @@ msgstr "" "Vous pouvez télécharger un fichier CSV. Chaque ligne doit contenir un réseau " "au format IP/MASK. Par exemple : 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "Réseaux (actuels)" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "Veuillez télécharger un nouveau fichier pour écraser ce contenu." -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." @@ -41732,11 +42001,11 @@ msgstr "" "spécifique, séparés par des virgules, par exemple : " "192.168.50.0/24,192.168.60.0/24, hostname.artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "Filtrer par ports ouverts" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) is " "open." @@ -41744,11 +42013,11 @@ msgstr "" "Les cibles seront analysées si au moins un des ports définis (séparés par des " "virgules) est ouvert." -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "Découverte automatique du matériel connu" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." @@ -41756,12 +42025,12 @@ msgstr "" "Les cibles seront surveillées en fonction de son numéro d'entreprise " "privée . Nécessite SNMP." -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" "Le module Host Alive sera ajouté par défaut aux agents découverts." -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " @@ -41770,21 +42039,21 @@ msgstr "" "Les réseaux configurés peuvent générer %d agents, votre licence n'autorise que " "%d, « revoir les résultats » est obligatoire." -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "Réviser les résultats" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "" "Les cibles doivent être validées par l'utilisateur avant de créer des agents." -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "Appliquer les règles de configuration automatique" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." @@ -41792,19 +42061,19 @@ msgstr "" "Le système est capable de configurer automatiquement l'hôte et les " "périphériques détectés en appliquant vos règles de configuration définies." -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "SNMP activé" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "Ignorer les interfaces non activées" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "Communautés SNMP à essayer avec" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" @@ -41812,30 +42081,35 @@ msgstr "" "Vous pouvez définir plusieurs valeurs séparées par des virgules. Par exemple : " "public,mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "Détection du système d'exploitation" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "Résolution du nom" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "Détection de parents" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "Récursion de parents" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "VLAN activé" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "WMI activé" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "Veuillez sélectionner..." + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "Tâche supprimée correctement" @@ -42147,6 +42421,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "Terminé" @@ -42159,47 +42434,42 @@ msgstr "Non démarré" msgid "Searching" msgstr "Recherche" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "Le serveur a échoué." -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "Le serveur est arrêté." -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "Serveur d'exécution activé" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "Gérer les tâches de découverte" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "Réinitialiser l'état du module et le nombre d'alertes déclenchées" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "Réclamer les modules SNMP" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "Gérer les hôtes satellites" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "Mettre à jour le serveur" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "Serveurs %s" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "Standard" @@ -42228,34 +42498,35 @@ msgstr "Editeur standard" msgid "Advanced editor" msgstr "Éditeur avancé" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "Configuration à distance" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "Recherche dynamique" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "Gérer les serveurs" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "Action réussie" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "Serveur mis à jour correctement" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "Problème de mise à jour du serveur" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "Pour gérer le plugin d’inventaire, activez la gestion centralisée" @@ -42276,55 +42547,66 @@ msgstr "" "Cette console n'est pas gestionnaire de cet environnement, veuillez gérer " "cette fonctionnalité à partir de la fonctionnalité de %s." -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "Enregistrement du plugin" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" +"Cet extension fait l’enregistrement du plugins du serveur plus facile. Ici " +"vous pouvez télécharger un plugin du serveur dans le format comprimé .pspz. " +"Veuillez lire la documentation pour obtenir et utiliser les plugins du serveur " +"de Pandora FMS." + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "Vous pouvez obtenir plus de plugins dans notre" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "Bibliothèque publique de ressources" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "Impossible de créer un répertoire temporaire" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "Erreur de chargement du fichier INI" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "Plugin d'exécution introuvable. Annulation en cours !" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "Plugin déjà enregistré. Annulation en cours !" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "Erreur d'enregistrement du plugin à distance" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "Veuillez vérifier la syntaxe du fichier « plugin_definition.ini »" -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "Plugin du module enregistré" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "Enregistré correctement" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "Impossible de décompresser le fichier" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "Impossible de déplacer le fichier téléchargé vers %s" @@ -42333,15 +42615,15 @@ msgstr "Impossible de déplacer le fichier téléchargé vers %s" msgid "Network Components" msgstr "Composants de réseau" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "Pièces jointes" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "Index de la pièce jointe/plug-in" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "Plugins enregistrés sur %s" @@ -42350,7 +42632,7 @@ msgstr "Plugins enregistrés sur %s" msgid "Plugin update" msgstr "Mise à jour du plugin" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " @@ -42360,7 +42642,7 @@ msgstr "" " \t\tveuillez gérer cette fonctionnalité à partir de la console de " "gestion centralisée (Metaconsole)." -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "Nagios" @@ -42405,74 +42687,78 @@ msgstr "" msgid "Plug-in parameters" msgstr "Paramètres des plugins" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "Macros des paramètres" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "Cacher la valeur" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "Ce champ sera affiché sous forme de points, comme un mot de passe" -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "Supprimer la macro" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "Vous devez créer vos propres plugins compatibles avec Windows" -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "Problème de mise à jour du plugin" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "Plugin mis à jour correctement" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "Problème de création du plugin" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "Plugin créé correctement" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "Problème de suppression du plugin" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "Plugin supprimé correctement" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "Verrouillage" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "Tous les modules qui utilisent ce plugin seront supprimés" -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "Aucun plugin dans le système" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "Ajouter un plugin" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "Liste de modules et composants créés par « %s » " -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "Certains modules ou composants utilisent le plugin." -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" @@ -42480,11 +42766,11 @@ msgstr "" "Les modules ou composants doivent être mis à jour manuellement ou en utilisant " "les opérations massives pour les plugins après ce changement." -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "Êtes-vous sûr(e) de vouloir effectuer cette action ?" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -42529,37 +42815,37 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations des balises " "sont en lecture seule. Allez vers %s pour le gérer." -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "Nom de l'étiquette" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "Information detaillée" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "Nombre de modules affectés" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "Téléphone" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "Détails de l'étiquette" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "Courriels pour l'étiquette : %s" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "Numéros de téléphone pour l'étiquette : %s" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "Créer une étiquette" @@ -42575,25 +42861,25 @@ msgstr "Étiquette mise a jour correctement" msgid "Error updating tag" msgstr "Erreur de mise à jour de l'étiquette" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "Étiquette créée correctement" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "Erreur de création de l'étiquette" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "Hyperlien pour information qui doit exister préalablement" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Adresse courriel associée à utiliser postérieurement avec les alertes " "associées aux étiquettes." -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Numéro de téléphone associé à utiliser postérieurement avec les alertes " @@ -42708,7 +42994,7 @@ msgstr "Erreur lors du chargement des résultats" msgid "Pandora FMS %s - Build %s" msgstr "Pandora FMS %s - Créer %s" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." @@ -42716,7 +43002,8 @@ msgstr "" "Accès à cette page est limité aux utilisateurs autorisés seulement, veuillez " "contacter votre administrateur système si vous avez besoin de l'aide." -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on the " @@ -42725,6 +43012,14 @@ msgstr "" "Rappelez-vous que les essais d'accès à cette page seront enregistrés dans la " "base du système %s." +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" +"Licence non valide, veuillez contacter votre administrateur système si vous " +"avez besoin de l'aide." + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -42735,7 +43030,7 @@ msgstr "%s portable" msgid "%s : Mobile" msgstr "%s : Portable" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "Accueil" @@ -42744,27 +43039,27 @@ msgstr "Accueil" msgid "%s %s - Build %s" msgstr "%s %s - Build %s" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "En-tête introuvable" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "Contenu introuvable" -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "Pied de page introuvable" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "Forme incorrecte" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "Grille incorrecte" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "Pliage incorrect" @@ -42807,52 +43102,62 @@ msgstr "" msgid "Login out" msgstr "Fermer la session" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "utilisateur" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "mot de passe" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "Code d'authentification" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "Filtrer agents par %s" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "Appliquer le filtre" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "Aucun agent" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "(Par défaut)" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "Groupe : %s" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "État : %s" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "Recherche libre : %s" @@ -42862,20 +43167,28 @@ msgstr "Recherche libre : %s" msgid "Filter Modules by %s" msgstr "Filtrer les modules par %s" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "Intervalle" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "Dernière mise à jour" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "Choisissez une option" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "Groupe de module: %s" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "Étiquette : %s" @@ -42885,20 +43198,29 @@ msgstr "Étiquette : %s" msgid "Visual consoles" msgstr "Consoles visuelles" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "État du serveur" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "Aucun service trouvé" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "Aucun agent retrouvé" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "Modules par état" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "Événements (24h)" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "Derniers %s événements" @@ -42908,15 +43230,22 @@ msgstr "Derniers %s événements" msgid "Filter Alerts by %s" msgstr "Filtrer alertes par %s" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "Agent/Module" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "Déclenchée pour la dernière fois" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "Aucune alerte" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "En mode veille : %s" @@ -42929,128 +43258,155 @@ msgstr "Toutes les consoles visuelles" msgid "Favourite visual consoles" msgstr "Consoles visuelles préférées" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "Aucune carte définie" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" +msgstr "Aucune carte favorite à afficher" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "Données de module" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "Aucune donnée" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "%s: %s" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "Options pour %s : %s" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "Afficher les alertes" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "Afficher les événements" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "Comparaison de temps (séparément)" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "Afficher le graphique inconnu" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "Intervalle de temps (heures)" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "Date de début" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "Mettre à jour le graphique" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "Erreur d'obtention du graphique" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784 msgid "New event" msgstr "Nouvel événement" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797 msgid "Event validated" msgstr "Événement validé" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809 msgid "Event in process" msgstr "Événement en cours" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "ERREUR : détails de l'événement" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "Erreur lors de la connexions dans la base de données." -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "Détails de l'événement" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900 msgid "Event ID" msgstr "Identification de l'événement" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "Reconnu par" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "En cours" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "Validé correctement" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "Validation échouée" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "En processus correcte" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "En processus échoué" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "Filtrer les évènements par %s" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "Filtres prédéfinis" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -43058,31 +43414,35 @@ msgstr "Filtres prédéfinis" msgid "No events" msgstr "Aucun événement" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "Filtrer : %s" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "Sévérité : %s" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "Type : %s" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "Recherche libre : %s" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "Heures : %s" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "Pas de serveurs" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "Dernière activité" @@ -43111,166 +43471,162 @@ msgstr "" msgid "Border color" msgstr "Couleur du bord" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "Largeur du bord" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "Couleur de remplissage" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" "Survolez la souris sur l'éditeur d'étiquettes pour changer la couleur de fond" -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "Animation de l'horloge" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "Analogique" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "Numérique" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "Format de l'heure" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "Seulement l'heure" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "Heure et date" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "Activer le lien" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "Blanc" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "Noir" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "Transparent" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "Couleur de la grille" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "Données dans l'image" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "Couleur de la légende" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "24h" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "8h" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "2h" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "1h" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "Temp max." -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "Taille originale" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "Rapport hauteur/largeur" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "Largeur proportionnelle" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "Hauteur proportionnelle" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "Largeur" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "Barre de progression circulaire" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "Barre de progression circulaire (intérieur)" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "Couleur de l'élément" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "Couleur de la valeur" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "Diamètre" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "Couleur par défaut" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " @@ -43280,93 +43636,93 @@ msgstr "" "dans laquelle se trouve la valeur du module (avec les valeurs initiale et " "finale de la plage incluses)" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "Gammes" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "À partir de la valeur" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "À la valeur" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "Couleur" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "Afficher toujours en haut" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" msgstr "" "Il permet de superposer l'élément au reste des éléments de la console visuelle" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "Masquer la dernière valeur sur les modules booléens" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "Afficher la dernière valeur" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" "Pour utiliser les dimensions originales du fichier d'image, réglez la largeur " "et la hauteur à 0." -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "Console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "Par poids d’état" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "Par éléments critiques" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "Type de calcul d'état de la console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "Par défaut" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "Poids de la console visuelle liée" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "Les lignes n'ont pas d'options avancées" -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "Limiter l'accès au groupe" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " @@ -43376,135 +43732,135 @@ msgstr "" "limité aux utilisateurs qui ont accès au groupe sélectionné. Ceci est aussi " "utilisé pour calculer les consoles visuelles des enfants." -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "Expiration du cache" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "Cliquez sur le point de départ
de la ligne." -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "Cliquez sur le point final
de la ligne." -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "Diagramme circulaire sérialisé" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "Graphique à barres" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "Afficher la grille" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "Supprimer l'élément" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "Copier l'élément" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "Informations sur le constructeur de console visuelle" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "La taille minimale autorisée est 1024x768" -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "Aucun graphique personnalisé défini." -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "Aucune image ou nom définis" -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "Aucune étiquette définie" -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "Aucun service défini." -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "Aucune image définie" -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "Aucun processus défini" -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "Aucune valeur max. définie" -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "Aucune largeur définie" -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "Aucune hauteur définie" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "" "La largeur ne doit pas dépasser la taille du conteneur de la console visuelle." -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "" "La hauteur ne doit pas dépasser la taille du conteneur de la console visuelle." -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "Aucune période définie" -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "Aucun agent défini" -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "Aucun module défini" -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "Aucun module défini. Ce module doit être de type chaîne." -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "Modifications enregistrées correctement" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "Impossible de sauvegarder." @@ -43518,100 +43874,96 @@ msgid "Selected" msgstr "Sélectionnés" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "Hors limites" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "Annuler zoom" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "Seuils d'état d'alerte et critique" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "Aperçu du graphique" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "Aucune donnée" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "Serveur de déroutements SNMP" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "Serveur de corrélation" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "Serveur ICMP Enterprise" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "Serveur SNMP Enterprise" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "Serveur Satellite Enterprise" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "Serveur de Transaction Enterprise" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "Serveur central" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "Serveur sync" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "Serveur WUX" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "Serveur de journaux" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "Serveur de provisionnement automatique" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "Serveur de migration" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "Serveur Netflow" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "Serveur de prédiction" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "Serveur Satellite" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "De :" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "À :" @@ -43638,31 +43990,31 @@ msgid "Downtime" msgstr "Temps d'arrêt" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "Valeur minimale" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "Valeur moyenne" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "Valeur maximale" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "Valeur par" @@ -43672,190 +44024,195 @@ msgid "%s System" msgstr "Système %s" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "Événements par utilisateur validateur" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "Événements par sévérité" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "Événements validés vs non validés" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "Groupes secondaires" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "Configuration à distance" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "Ajouté" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "Supprimé" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "" "La cellule devient grise lorsque le module se trouve dans un état « non " "initialisé »." -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "Moniteurs" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "Evénements (non validés)" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "Événements validés par l'utilisateur" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "Événements par sévérité" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "Nombre d'événements validés" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "Résumé total" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "Aucune alerte déclenchée" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "Interface « %s » graphique de rendement" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "État actuel" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "Modules vides" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "Temps dans le module non initialisé" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "% OK" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "Vérifications inconnues" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "Primaire" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "Niveau d'alerte" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "Agents du groupe : %s" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "Dernier échec" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "S/O(*)" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "Vérifications de moniteurs" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "Nombre total d'agents et de moniteurs" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "Aperçu des nœuds" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "Événements en état critique" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "Événements en état d'alerte" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "Événements en état OK" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "Événements en état inconnu" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "Le compte correspond aux événements dans la dérnière heure" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "Événements importants par sévérité" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "Dernière activité dans la console %s" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "Information des événements (1h)" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "Ce SLA a été affecté par les temps d'arrêt planifiés suivants" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" @@ -43863,16 +44220,16 @@ msgstr "" "Si la durée du temps d'arrêt programmé est inférieure à 5 minutes, il ne sera " "pas représenté dans le graphique" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "Dates" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "Cet élément est affecté par un temps d'arrêt programmé mal formé" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "" "Accédez à la section des temps d'arrêt programmés pour résoudre ce problème" @@ -43891,7 +44248,7 @@ msgstr "M" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "Y" @@ -43908,47 +44265,47 @@ msgid "N" msgstr "N" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "Entretien" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "Informatif" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "Mineur" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "Majeure" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "Moniteur en état critique" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "Moniteur en état d'alerte" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "Moniteur en état normal" @@ -43956,17 +44313,17 @@ msgstr "Moniteur en état normal" msgid "Monitor Unknown" msgstr "Moniteur inconnu" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "Alertes récupérées" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "Alerte arrêtée" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "Validation manuelle de la alerte" @@ -43974,12 +44331,12 @@ msgstr "Validation manuelle de la alerte" msgid "Agent created" msgstr "Agent créé" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "Hôte de reconnaissance détecté" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "Modification de la configuration" @@ -43989,9 +44346,9 @@ msgstr "ALETE DÉCLENCHÉE" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "PAS DE DONNÉES" @@ -44086,7 +44443,7 @@ msgid "2 minutes" msgstr "2 minutes" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "5 minutes" @@ -44095,49 +44452,54 @@ msgstr "5 minutes" msgid "15 minutes" msgstr "15 minutes" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "30 minutes" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "Série récapitulative" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "Série moyenne" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "Unité" -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "Moyenne" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "Min :" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "Max :" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "Moy :" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "du module" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "Projection" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "Tester l’email Pandora FMS" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." @@ -44145,7 +44507,7 @@ msgstr "" "Il s'agit d'un test par e-mail envoyé par Pandora FMS. Si vous pouvez lire " "ceci, votre configuration fonctionne." -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -44154,11 +44516,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "Valeur '%s' non recommandée dans la configuration PHP" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "La valeur recommandée est : -1" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -44168,7 +44530,7 @@ msgstr "" "Veuillez le modifier sur votre fichier de configuration PHP (php.ini) ou " "communiquez avec votre administrateur." -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "Documentation" @@ -44303,9 +44665,9 @@ msgstr "" msgid "Successful delete of alert template." msgstr "Suppression réussie du modèle d'alerte." -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "%d agents concernés" @@ -44410,168 +44772,168 @@ msgstr "Module de politique SNMP mis à jour correctement" msgid "Successful deletion" msgstr "Suppression réussie" -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "Utilisateur créé." -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "Utilisateur mis à jour." -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "Utilisateur activé" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "Utilisateur désactivé" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "Le modèle a été inséré dans %d agents." -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "Le fichier XML a été généré correctement dans le chemin :" -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "Le module a été créé dans %d agents." -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "Une action a été définie pour %d agents." -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "Utilisateur supprimé." -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "Profil d’utilisateur ajouté." -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "Profil d’utilisateur supprimé." -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "Module désactivé correctement." -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "Erreur de désactivation du module." -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "Module activé correctement." -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "Erreur d'activation du module." -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "Erreur de désactivation de l’alerte." -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "L'alerte n'a pas pu être activée." -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "Agent activé" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "Agent désactivé" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "La Metaconsole et les licences de tous les nœuds ont été mis à jour." -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" "La licence Metaconsole a été mise à jour mais %d sur %d nœud n'a pas réussi à " "se synchroniser." -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "Cette fonction est réservée à la Métaconsole." -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "Supprimé correctement" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "L'utilisateur ne peut pas accéder au grappe." -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "Filtre d'événement créé correctement." -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "Filtre d'événement mis à jour correctement." -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "Filtre d'événement supprimé correctement." -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "Traps validés." -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "Traps supprimés." -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" "Module/nombre d'alertes mis à jour correctement dans l'agent d'identification " "%d." -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "Nombre de modules/alertes mis à jour correctement dans tous les agents" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" "Ajouté correctement pour supprimer l'agent d'ID en attente %d dans la " "stratégie d'ID %d." -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" "Erreur d'activation/désactivation de la tâche de découverte. Id_user ne peut " "pas être laissé vide." -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left blank." msgstr "" "Erreur d'activation/désactivation de la tâche de découverte. La valeur " "d'activation/désactivation ne peut pas être laissée vide." -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "Erreur lors de l'activation/désactivation de la tâche de découverte." -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "Tâche de découverte activée." -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "Tâche de découverte désactivée." @@ -44705,25 +45067,39 @@ msgstr "Le code est valide, mais il y a une erreur de sauvegarde des données" msgid "3 minutes" msgstr "3 minutes" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "Regrouper les modules par balise" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "Regrouper les modules par groupe de modules" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "Regrouper les modules par agents" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "Afficher les groupes" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "Date des dernières données" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "Hors limites" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "Contact suivant" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -44735,13 +45111,17 @@ msgid "F." msgstr "F." #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "Aucune alerte retrouvée" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "Si une valeur de 0 est attribuée, le seuil de l’action sera utilisé." + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "Autorisations insuffisantes pour valider les alertes" @@ -44772,32 +45152,32 @@ msgstr "Échec de la création de la politique" msgid "Policy created succesfully" msgstr "Politique créée correctement" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "3 mois" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "2 ans" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "3 ans" -#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "Choisir un temps à partir de maintenant" -#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "Spécifier l'intervalle de temps" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "Phrase exacte" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in database, " "charts or CSV exported data won't match, because is interpreted at runtime. " @@ -44808,15 +45188,11 @@ msgstr "" "ne correspondront pas, car elles sont interprétées au moment de l'exécution. " "Veuillez consulter le chapitre « Pandora FMS Ingénierie » de la documentation." -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "Aucune donnée disponible à montrer" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "T" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -44827,41 +45203,41 @@ msgstr "T" #: ../../include/functions_reports.php:693 #: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "Graphiques" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "Temps écoulé depuis le dernier changement d’état : " -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "Forcer les vérifications" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "Pas tous les moniteurs possèdent ce filtre" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "Cet agent n'a pas de moniteurs actifs." -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "Charger" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "Mettre à jour/supprimer le filtre" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "Sauvegarder le filtre actuel" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "Supprimer le filtre" @@ -44944,107 +45320,107 @@ msgstr "Erreur de suppression du filtre." msgid "Console successfully deleted" msgstr "Console supprimée correctement" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "Échec de la récupération des commentaires" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "Sauvegarder/Mettre à jour les filtres" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "non autorisée" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "Erreur lors de l'exécution de la réponse" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "Associé" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "Champs d'agent" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "Erreur d'ajout du commentaire" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "Commentaire ajouté correctement" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "Erreur de modification de l'état de l'événement" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "État de l'événement modifié correctement" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "Erreur de modification du propriétaire de l'événement" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "Propriétaire de l'événement modifié correctement" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "Erreur de suppression de l'événement" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "Afficher tous les événements des dernières 24h" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "Ces commandes s'appliqueront à tous les événements sélectionnés" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "Nombre total d’événements dans ce nœud atteint" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "Nombre total d’événements par nœud" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "Configuration de la console" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "Définir la condition" -#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "Tous les nouveaux événements" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "Durée du son" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "Mélodie sonore" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "Tester mélodie" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "Alertes découvertes" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "Aucune alerte découverte" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "Félicitations! il n’y a rien à montrer" @@ -45066,28 +45442,28 @@ msgstr "Aucun moniteur" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "Au moins un module en état CRITIQUE" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "Au moins un module en état d'ALERTE" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "Au moins un module en état INCONNU" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "Tous les moniteurs OK" @@ -45099,12 +45475,12 @@ msgstr "Alerte déclenchée dans l’agent" msgid "Dialog response time" msgstr "Temps de réponse du dialogue" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "Aucun changement trouvé" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "Obtenir fichier CSV" @@ -45219,7 +45595,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "Erreur de modification du mot de passe sur Pandora FMS à distance" -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "Votre installation de PHP ne prend pas en charge LDAP" @@ -45239,17 +45615,17 @@ msgstr "Utilisateur, groupe ou profil non spécifié" msgid "User, group or profile status not specified" msgstr "Utilisateur, groupe ou état du profil non spécifié" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "Aucune alerte déclenchée" -#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490 -#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698 +#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500 +#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108 +#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "SYSTÈME" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "Nœud principal" @@ -45270,240 +45646,264 @@ msgstr "Cliquez ici pour voir ce module" msgid "Module information" msgstr "Informations sur le module" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "Accéder à l'édition de modules" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "Erreur de chargement des alertes" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "Accéder à l'édition d'alertes" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "Erreur de chargement de l'agent" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "Cliquez ici pour voir cet agent" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "Autres adresses IP" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "Contact à distance" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "Suivant contact avec l'agent" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "Informations sur l’agent" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "Accessibilité de l'agent (24h)" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "Trafic d'interface" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "Informations d'interface" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "Position (Long, Lat)" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "Adresse URL" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "Fuseau horaire désactivé" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "Informations avancées" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "Accéder à l’édition cluster" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "Accéder à la création des modules" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "Accéder à l'édition de l'agent" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "Configurer l'utilisateur" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "Configurer le profil" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "Gestion des modèles de module" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "Gestion des modules d'inventaire" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "Outil de conception de la console visuelle" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "Afficher le rapport" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "Visualiseur de graphique" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "Gérer les graphiques personnalisés" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "Afficher conteneurs de graphiques" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "Gérer conteneurs de graphiques" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "Afficher modèles de graphiques" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "Gérer les modèles de graphiques" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "Éléments du modèle de graphiques" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "Assistant de modèles de graphiques" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "Nouveaux rapports personnalisés" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "Modifier des rapports personnalisés" -#: ../../include/functions_menu.php:588 +#: ../../include/functions_menu.php:590 +msgid "Remove custom reports" +msgstr "Effacer les rapports personnalisés globales" + +#: ../../include/functions_menu.php:592 msgid "Edit item" msgstr "Modifier élément" -#: ../../include/functions_menu.php:590 +#: ../../include/functions_menu.php:594 msgid "Wizard sla" msgstr "SLA de l’assistant" -#: ../../include/functions_menu.php:591 +#: ../../include/functions_menu.php:595 msgid "Global custom reports" msgstr "Rapports personnalisés globales" -#: ../../include/functions_menu.php:592 +#: ../../include/functions_menu.php:596 msgid "Avanced options" msgstr "Options avancées" -#: ../../include/functions_menu.php:595 +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "Gérer cartes GIS" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "Gérer les messages" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "Gérer les groupes de modules" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "Gérer champ personnalisé" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "Gérer les actions d'alerte" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "Gérer les commandes" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "Gérer les objectifs d'exportation" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "Générateur de déroutements SNMP" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "Gérer l'incident" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "Gérer les groupes" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "Administration" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "Information" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "Information du système" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "Système PHP" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "Version MR" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "Gestionnaire de mises à jour" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "Rapport système" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "État de santé de la base de données" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "Information sur l'état de la base de données" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "Fragmentation des tables dans la base de données %s" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "Système PHP" @@ -45623,6 +46023,7 @@ msgstr "" "Maintenant, déroulez le menu « Gérer les alertes » et cliquez sur « Actions ». " #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "Vous avez des modules inconnus dans cet agent." @@ -46028,8 +46429,8 @@ msgid "Please check if the email configuration is correct." msgstr "Veuillez vérifier que la configuration du courriel est correcte." #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "Profils/Groupes assignés à cet utilisateur" @@ -46065,111 +46466,111 @@ msgstr "" "Il est possible que ce mode de visionnement utilise une partie de " "l'information dont votre utilisateur n'a pas accès." -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "Logiciel" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "Forcer la vérification" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" "L'alerte sera déclenchée quand la valeur soit supérieure à " -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" "L'alerte sera déclenchée quand la valeur soit inférieure à " -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "Option inconnue." -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "Système de surveillance flexible" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "Nombre total d'éléments : %s" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "Premier" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "Type inconnu" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "Aucun enregistrements correspondants trouvés" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "Aucune donnée disponible dans le tableau" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "Exporter la page actuelle au format CSV" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "ALERTE" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "ENTRETIEN" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "INFORMATIF" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "MINEUR" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "MAJEUR" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "Version Enterprise non installée" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "Écrivez un minimum de deux caractères pour rechercher" -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "Erreur non traitée" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "Une erreur non gérée se produit" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " @@ -46178,43 +46579,43 @@ msgstr "" "Ces contrôles utilisent le fuseau horaire du système (%s) au lieu du vôtre " "(%s). La différence avec votre fuseau horaire en heures est de %s." -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "Résultats" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "Exécute la requête" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "Afficher le mot de passe" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "Serveur web" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "Module assistant" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "Sélectionnez un module d'inventaire" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "utiliser les champs personnalisés." -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "Nom du champ" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "C'est un mot de passe" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "Ajouter un champ" @@ -46233,21 +46634,21 @@ msgstr "Agent ajouté au layout correctement" msgid "Modules successfully added to layout" msgstr "Modules ajoutés au layout correctement" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "Agents ajoutés correctement" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "Erreur de chargement de la carte visuelle" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "Graphique à barres" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "Barre de centile" @@ -46296,7 +46697,7 @@ msgstr "État pas normal" msgid "No actions defined" msgstr "Aucune action définie" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "Le groupe d'alerte et de commande ne correspond pas" @@ -46426,24 +46827,24 @@ msgid "Current ranges" msgstr "Gammes actuelles" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "largeur" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "hauteur" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "X" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "Afficher en haut" @@ -46486,11 +46887,15 @@ msgstr "Couleur de la légende" msgid "Show legend" msgstr "Afficher la légende" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "Récursif" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "Échec de la connexion au nœud" @@ -46513,67 +46918,67 @@ msgstr "Paramètres généraux" msgid "Specific settings" msgstr "Paramètres spécifiques" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "Type d’élément non valide [" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "Le type d'élément n'a pas de méthode getFormInputs [" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "NetworkLink de" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "État de l'interface %s" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "Dans" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "À l'extérieur de" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "NetworkLink vers" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "Échec de la génération des graphiques : %s" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "Position de l’étiquette" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "Lien activé" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "Graphique statique" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "Graphique de l'historique des événements" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "Bulle de centile" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "Image Vc" @@ -46615,8 +47020,8 @@ msgstr "Cliquez ici pour obtenir plus d’information…" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "Graphique simple" @@ -46737,12 +47142,12 @@ msgid "Inventory changes" msgstr "Changements d'inventaire" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "Configuration des agents" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "Configuration du groupe" @@ -46772,61 +47177,62 @@ msgstr "SQL" msgid "Graph Sql" msgstr "Graphe SQL" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "Veuillez sélectionner un élément dans cette liste." -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "Veuillez sélectionner..." - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "Tapez pour rechercher des agents" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "Tapez pour rechercher des modules" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "Seuls les modules communes" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "semaines" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "Jour du mois" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "Jour de la semaine" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" msgstr "Séléctionner un fichier" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "Introduire au moins deux caractères pour rechercher le module." -#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817 -#: ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818 +#: ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "" "%s ne peut pas vérifier l'origine de requête. Veuillez essayer à nouveau." -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "Tapez au moins deux caractères pour rechercher l'utilisateur." -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "Le groupe principal ne peut pas non plus être secondaire." +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "Aller en haut" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -46893,7 +47299,7 @@ msgstr "Utiliser le certificat" msgid "Integria inventory" msgstr "Inventaire d'Integria IMS" -#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "Mot de passe de l'API d'Integria IMS" @@ -46941,481 +47347,489 @@ msgid "alias_as_name" msgstr "Alias comme nom" #: ../../include/functions_config.php:374 +msgid "keep_in_process_status_extra_id" +msgstr "keep_in_process_status_extra_id" + +#: ../../include/functions_config.php:378 msgid "Console log enabled" msgstr "Journal de la console activé" -#: ../../include/functions_config.php:378 +#: ../../include/functions_config.php:382 msgid "Audit log enabled" msgstr "Journal d'audit activé" -#: ../../include/functions_config.php:382 +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "ID personnalisé du module en lecture seule" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "Hôte de BD de réplication" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "Nom de la BD de réplication" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "Utilisateur de BD de réplication" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "Mot de passe de BD de réplication" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "Port de BD de réplication" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "Cache de l'agent de la Métaconsole" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "Activer le Update Manager" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "Base de données HA héritée" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "Ipam Occupé Manager Critique" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "Avertissement du gestionnaire occupé par Ipam" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "Visuel de fuseau horaire automatique" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "Recherche récursive" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "Délai d’expiration de la recherche Ldap" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "Démarrage secondaire TLS" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "Paramètres de profils SAML" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "2FA tous les utilisateurs" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "Délai d'expiration de la session forcé à 90 minutes" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "Purge d’événements" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "Nombre de jours maximum avant suppression d'éléments désactivés" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "Limite d'éléments pour rapports en temps réel" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "Étape majeure pour nettoyer les données anciennes" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "Réponse maximale à l'événement d'exécution" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "Chemin binaire de SNMP walk" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "Chemin binaire SNMP walk (repli pour v1)" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "Binaire WMI par défaut" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "Assistant de l’agent d’interface SNMP" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "Heure de fermeture automatique des notifications" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "Couleur du graphique #4" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "Couleur du graphique #5" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "Couleur du graphique #6" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "Couleur du graphique #7" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "Couleur du graphique #8" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "Couleur du graphique #9" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "Couleur du graphique #10" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "Afficher code QR dans l'en-tête" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "Logo personnalisé (fond blanc)" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "En-tête de titre personnalisé" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "En-tête de sous-titre personnalisé" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "Fond d'écran de connexion" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "URL de documents personnalisée" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "URL d'assistance personnalisée" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "Logo personnalisé de la Métaconsole (fond blanc d’en-tête)" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "Logo personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "Splash personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "Titre1 personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "Titre2 personnalisé pour écran de connexion de la Métaconsole" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "Fond d'écran de connexion à la Métaconsole" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "Ligne par défaut favourite_view pour la console visuelle" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "Éléments prédéterminés de menu de ligne pour console visuelle" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "Éléments de menu de ligne par défaut pour les Services" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "Afficher unités dans les valeurs du rapport" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "Menu caché automatiquement" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "Animation visuelle" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "Graphique fixe" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "Paginer module" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "Répertoire personnalisé graphviz" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "Graphique de module de données raccourcies" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "Afficher les groupes vides dans la vue de groupe." -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "Type de graphiques de modules par défaut" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "Nombre d'éléments par défaut dans le graphique personnalisé." -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "Type de graphiques d'interface par défaut" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "Afficher menus latéraux en faisant clic gauche" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "Espace entre les nœuds de la carte de service" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "Centile par défaut" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "Pleine échelle par défaut (TIP)" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "Graphiques logiciels par défaut" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "Graphiques de zoom par défaut" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "Hauteur par défaut de l'image du graphique" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "Ajouter personnalisation au processus postérieur" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "Supprimer personnalisation du processus postérieur" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "Ajouter une unité de module personnalisée" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "Supprimer l'unité de module personnalisé" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "Séparateur de milliers" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "Chemin de stockage du nom" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "Répertoire du nom de Sflow" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "IP du serveur ElasticSearch" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "Port du serveur ElasticSearch" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "Activer le déroutement d’historique" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "Activer la base de données d’historique avancée" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "Jours de chaîne" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "Jours de déroutements" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "Purge de déroutements d’historique" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "Purge des déroutements de la base de données historique" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "Connexion utilisateur eHorus" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "Nom d'hôte API eHorus" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "Port API eHorus" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "Délai de requête eHorus" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "Identifiant du champ personnalisé eHorus" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "Connexion utilisateur Integria" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "Utilisateur d’Integria" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "Mot de passe d’Integria" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "nom d'hôte de l'API d’Integria" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "Délai d'expiration de la requête d’Integria" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "Groupe par défaut d’Integria" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "Groupe par défaut de réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "Priorité par défaut d’Integria" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "Priorité par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "Créateur par défaut d’Integria" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "Propriétaire par défaut d’Integria" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "Propriétaire par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "Type de ticket par défaut d’Integria" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "Type de ticket par défaut de réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "État du ticket par défaut d'Integria" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "État du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "Titre du ticket par défaut d’Integria" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "Titre du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "Contenu du ticket par défaut d'Integria" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "Contenu du ticket par défaut de la réponse personnalisée d’Integria" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "Utilisateur de la bibliothèque de modules" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "Mot de passe de la bibliothèque de modules" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "Adresse de liaison WebSocket" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "Port WebSocket" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" "La mise à jour a échoué. Les valeurs suivantes n’ont pas pu être mises à " "jour :
-%s" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "Métaconsole PandoraFMS" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "Console d'exploitation centralisée" @@ -47518,7 +47932,7 @@ msgstr "Agréger par %s" msgid "Resolution %s" msgstr "Résolution %s" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "Alertes des modules" @@ -47675,7 +48089,6 @@ msgid "Sound not exist" msgstr "Le son n’existe pas" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "Événements sonores" @@ -47684,8 +48097,8 @@ msgid "Add new sound" msgstr "Ajouter un nouveau son" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" -msgstr "Liste des sons de la console acoustique" +msgid "Acoustic console sound list" +msgstr "Liste de sons de la console visuelle" #: ../../include/class/EventSound.class.php:253 msgid "Name:" @@ -47728,7 +48141,7 @@ msgid "Something is wrong" msgstr "Il y a un problème" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "Que s'est-il passé?" @@ -47741,7 +48154,7 @@ msgid "Submit" msgstr "Envoyer" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "Commentaires" @@ -47801,7 +48214,7 @@ msgid "%s Licence Information" msgstr "Informations sur la licence %s" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "État du dossier d’attachements" @@ -47994,7 +48407,7 @@ msgstr "Système d'exploitation" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "IP" @@ -48135,39 +48548,39 @@ msgstr "Fragmentation des tables (valeur actuelle)" msgid "Table fragmentation status" msgstr "État de fragmentation de la table" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "Taille des journaux du serveur (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "Journaux du serveur d'état" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "Journaux d'erreur de taille (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "Journaux d’erreur d’état" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "Journaux de la taille de la console (valeur actuelle)" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "Journaux de la console d'état" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "La capacité de la licence est inférieure à 90 %" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "La capacité de licence dépasse 90 pour cent" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" @@ -48175,48 +48588,48 @@ msgstr "" "La moyenne des modules par agent est supérieure à 40. Vous pouvez avoir des " "problèmes de performances" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "La moyenne des modules par agent est inférieure à 40" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "Le système n'a pas de charge" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "Système de gestion réseau" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "Off" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "État de la capacité des agents" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "État des modules moyens par agent" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "Moyenne d'intervalle des modules réseau" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "Le dossier joint contient plus de 700 fichiers." -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "Le dossier joint contient moins de 700 fichiers." -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "Nombre total de fichiers dans le dossier joint" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -48224,31 +48637,31 @@ msgstr "" "La table tagent_données contient trop de données. Une base de données " "historique est recommandée." -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La table tagent_données contient une quantité de données acceptable." -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "Données totales dans la table tagent_données" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "État de la table Tagent_données" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "Threads" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "Fils maximales" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "Threads en cours d'exécution de pandora_server" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -48256,7 +48669,7 @@ msgstr "" "Il y a plus de threads pandora_server que configurés, exécutez-vous plusieurs " "serveurs simultanément ?" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -48265,7 +48678,7 @@ msgstr "" "assurer que le démon de maintenance de la base de données est en cours " "d'exécution." -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -48273,45 +48686,45 @@ msgstr "" "Il est très important de maintenir la base de données à jour pour obtenir les " "meilleures performances et résultats dans Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "Vous avez plus de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "Vous avez moins de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "Inclure les données d'installation" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "Hello Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "Hello" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "L'utilisateur %s signale un problème dans son expérience %s" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "Retrouver quelques fichiers joints à ce mail" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "PDF correspond aux informations de diagnostic récupérées au moment du rapport" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "CSV contient les états de chaque fiche produit" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " @@ -48320,11 +48733,11 @@ msgstr "" "Si vous pensez que ce rapport doit être escaladé, n'hésitez pas à transmettre " "ce courrier à \"%s\"" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "AVERTISSEMENT LÉGAL" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -48333,7 +48746,7 @@ msgstr "" "privilégiées et confidentielles destinées uniquement à l'usage de la personne " "ou de l'entité nommée ci-dessus." -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -48343,11 +48756,11 @@ msgstr "" "vous informons que toute diffusion, distribution ou copie de ces documents est " "strictement interdite." -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "Si vous avez reçu cette transmission par erreur, ne la lisez pas" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -48355,83 +48768,83 @@ msgstr "" "Veuillez répondre immédiatement à l'expéditeur que vous avez reçu cette " "communication par erreur, puis la supprimer" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "Tâche cron non valide" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "L'envoi des informations a été traité" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "Informations de diagnostic" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "Info PHP" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "" "Échec de la génération de dotmap, veuillez sélectionner un schéma de mise en " "page différent" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "Échec de la récupération des données du graphique." -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "Zone d'attente" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "Modifier le nœud %s" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "Afficher les détails et les options" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "Ajouter lien d'interface" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "Configurer parent d'interface" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "Configurer comme enfants" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "Configurer parent" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "Abandonner l'action de configuration de relations" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "Ajouter un nœud" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "Configurer le centre" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "Continuer" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -48439,144 +48852,144 @@ msgstr "" "Si vous réinitialisez la carte, tous vos réglages personnalisés, y compris les " "relations manuelles entre éléments, nouveaux éléments, etc. seront supprimés." -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "Réinitialiser la carte" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "Annuler la relation d'interface" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "Modifier le nœud" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "Adresses" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "Type de système d’exploitation" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "Détails du nœud" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "Information de l'interface (SNMP)" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "Forme" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "Cercle" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "Carré" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "Losange" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "Nommer le nœud" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "Nom du nœud fictif" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "Lien à la carte de réseau" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "Mettre à jour le nœud fictif" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "Options du nœud" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "Source du nœud" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "Source de l'interface" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "Cible de l'interface" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "Cible du nœud" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "Aucune relation" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "Ajouter lien d'interface" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "Ajouter nœud d'agent" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "Ajouter nœud d'agent (filtrer par groupe)" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "Ajouter nœud fictif" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "Ajouter un point fictif" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "Jusqu'à la suivante mise à jour" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "Ouvrir minicarte" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "Cacher les étiquettes" @@ -48638,11 +49051,11 @@ msgstr "Êtes-vous sûr de supprimer le script ?" msgid "Delete Script" msgstr "Supprimer le script" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "Il n'y a pas de scripts net scan dans le système" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "Chemin complet du script" @@ -48702,12 +49115,12 @@ msgid "Extra (2)" msgstr "Supplément (2)" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "ID de clé d’accès :" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "Clé d'accès secrète" @@ -48717,22 +49130,22 @@ msgid "Account ID" msgstr "ID de compte" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "Application secret" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "Locataire ou nom de domaine" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "ID Abonnement" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "Authentification JSON" @@ -48753,45 +49166,45 @@ msgid "3" msgstr "3" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "Méthode authentifiée et non privée" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "Méthode authentifiée et privée" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "Méthode non authentifiée et non privée" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "Authentification de l'utilisateur" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "Authentification par mot de passe" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "ID Client" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "ID de compte" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "Enregistrer une nouvelle clé dans le magasin de clés" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "Mettre à jour la clé" @@ -48800,9 +49213,9 @@ msgid "Trap subtype" msgstr "Sous-type de déroutements" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "Non déclenché" @@ -48812,25 +49225,25 @@ msgstr "Déclenché" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "Non validé" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "Validé" @@ -48838,46 +49251,46 @@ msgstr "Validé" msgid "Group by Enterprise String/IP" msgstr "Regrouper par chaîne Enterprise / IP" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "Voir les détails de l'agent" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "Masquer les détails" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "Total :" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "Premier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "Dernier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "Type :" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "Description :" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "Chaîne Enterprise :" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "Liens variables :" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "Afficher plus de détails" @@ -48952,51 +49365,51 @@ msgstr "résultats trouvés" msgid "Press enter to search" msgstr "Cliquez enter pour rechercher" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "Astuce supprimée" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "Rechercher par titre" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "Astuce créée" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "Mauvaise taille, nous recommandons des images de 464x260 px" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "Veuillez sélectionner une image" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "Ajouter une image" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "Images" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "Astuce modifiée" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "Fichier incorrect" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "Format d’image non valide" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "Taille de l’image trop grande" @@ -49005,15 +49418,19 @@ msgstr "Taille de l’image trop grande" msgid "NetScan Custom" msgstr "NetScan personnalisé" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes." + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "Script Recon" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "Explication" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "macro_desc" @@ -49087,7 +49504,7 @@ msgid "The modules is already added" msgstr "Les modules sont déjà ajoutés" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "Ajouter des composants" @@ -49124,11 +49541,11 @@ msgstr "Supprimer ce module" msgid "Do you want delete this module?" msgstr "Voulez-vous supprimer ce module ?" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "Voulez-vous supprimer tous les modèles ?" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "Voulez-vous supprimer les modèles sélectionnés ?" @@ -49861,6 +50278,108 @@ msgstr "" "Si quelque chose ne fonctionne pas comme prévu, recherchez cette icône et " "signalez-le !" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" +"Notez que tous les systèmes d’exploitation doivent être des architectures " +"basées sur 64-bits" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "Choisissez votre système d’exploitation" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" +"Utilisez votre %s adresse IP du serveur de données ici. Il doit être possible " +"d’établir une connexion depuis l’agent au port 41121/tcp de cette adresse." + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "Adresse du serveur" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "veuillez lire les instructions suivantes" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "Si vous avez besoin de plus d’informations sur les agents" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "Générer installateur" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "Agent Linux" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" +"Exécutez la commande suivante dans la Shell de votre serveur Linux pour faire " +"l’installation de l’agent génèré :" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software agent " +"service:" +msgstr "" +"Un fois installé, exécutez la commande suivante pour initialiser le service de " +"l’agent logiciel:" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "dépendances" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" +"Pour la correcte opération de l’agent Linux il est nécessaire que le serveur " +"installe le suivant " + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "Agent Windows" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "Exécutez la commande suivante dans cmd.exe en tant qu’administrateur :" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "Agent Mac" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation and " +"configure the server address to XXX and specify the group as XXX. Thank you " +"for your cooperation." +msgstr "" +"Afin de compléter le processus d’installation, veuillez faire l’installation " +"manuelle et configurez l’adresse du serveur à XXX et spécifiez le groupe en " +"tant que XXX. Merci de votre coopération." + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "Cliquez ici pour télécharger cet agent" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "Modifier la configuration" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "Installer" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "Erreur lors de l’ajout d’une collection" @@ -50009,12 +50528,12 @@ msgstr "Informations sur les modules" msgid "Current value" msgstr "Valeur actuelle" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "L'opération '%s' n'est pas autorisée. Examen des composants distants." -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "Modules sur le point d'être créés" @@ -50216,210 +50735,210 @@ msgstr "Exclure" msgid "Event Report Module" msgstr "Module de rapports d'événements" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "Agent/Modules" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "État de l’agent/des modules" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "Exception - Tout" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Exception - Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Exception - Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "Exception - Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "Exception - Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "Exception - Égal à %s" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "Égal à %s" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "Exception - Pas égal à %s" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "Pas égal à %s" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "Exception - Modules en état normal" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "Modules en état normal" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "Exception - Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "Aucun module sous ces conditions" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "Aucun module supérieur ou égal à %s" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "Aucun module inférieur ou égal à %s" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "Aucun module inférieur à %s" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "Aucun module supérieur à %s" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "Aucun module égal à %s" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "Aucun module pas égal à %s" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "Aucun module en état normal" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "Aucun module en état critique ou d'alerte" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "Agent de rapport d'événement" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "Base de données sérialisée" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "Dernière valeur" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "Aucune donnée à afficher dans l'intervalle sélectionné" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "Rapport des interfaces du réseau" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "Rapport de rendu personnalisé" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Cette requête n’est pas sécurisée, elle peut appliquer des modifications " "indésirables sur le schéma" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "Le groupe n'a pas d'agents ou aucun agent a une interface de réseau" -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "octets/s" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "Barres verticales du graphique SQL" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "Barres horizontales du graphique SQL" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "Diagramme circulaire SQL" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "Zone Netflow" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "Résumé Netflow" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "Données Netflow" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "Rapport inconnu" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "Date de prédiction" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -50428,226 +50947,226 @@ msgstr "" "peuvent pas être employés : *, supprimer, déposer, altérer, modifier, mot de " "passe, passe, introduire ou mettre à jour." -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "Aucune adresse" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "Le moniteur ne dispose pas de données dans cette plage de dates ou le type de " "moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "Le type de moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "Maximum" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "Graphique automatique combiné" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "État du serveur" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "%d serveurs hors service" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "État du moniteur" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "%d Moniteurs anormaux" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "de moniteurs actifs" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" -msgstr "Module sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" +msgstr "État des modules" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "%d moniteurs non initialisés" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "du total de modules initialisés" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "%d alertes déclenchées" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "d'alertes définies non déclenchées" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "État des modules" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "Alertes définies et déclenchées" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "Utilisateurs définis" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "Agent sans données" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "%d modules normaux" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "%d modules critiques" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "%d modules en état d'alerte" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "%d modules inconnus" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "%d agents au total" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "%d agents normaux" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "%d agents critiques" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "%d agents en état d'alerte" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "%d agents inconnus" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "%d agents non initialisés" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "Nombre total de modules en fonctionnement" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "Ratio" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "Modules par seconde" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "Modules locaux" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "Modules de réseau" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "Modules plugin" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "Modules de prédiction" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "Modules WMI" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "Modules Web" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Performance du serveur" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "Condition de démarrage" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "Condition d’arrêt" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "Hebdomadaire :" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "Mensuel :" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "Graphique de registres du module" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "Ce courriel contient une pièce jointe en format PDF du" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "rapport" @@ -50705,85 +51224,85 @@ msgstr "Répertoire créé correctement" msgid "Something gone wrong creating directory" msgstr "Une erreur s'est produite lors de la création du répertoire" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "Créer un répertoire" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "Créer un fichier" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "Télécharger des fichiers" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "Chemin réel" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "Le répertoire %s n'existe pas !" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "Répertoire parent" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "Répertoire" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "Fichier compressé" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "Fichier de texte" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "Ce fichier peut être exécuté par n'importe quel utilisateur" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "Assurez-vous qu'il ne peut pas effectuer des tâches dangereuses." -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "Aucun fichier ou répertoire à afficher." -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "Créer un répertoire" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" "Téléversez le zip à ce répertoire, utile pour téléverser plusieurs fichiers." -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "Décompresser" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "Créer un fichier" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "Téléverser fichier(s)" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "Ce répertoire est seulement accessible en lecture." @@ -50796,15 +51315,15 @@ msgstr "Cliquez ici pour ouvrir une fenêtre pop-up avec l'étiquette de l'URL" msgid "Copy of %s" msgstr "Copie de %s" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "Erreur lors de la création ou de la mise à jour du tableau de bord" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "Tableau de bord des images d'icônes" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -50812,28 +51331,28 @@ msgstr "Tableau de bord des images d'icônes" msgid "Failed to connect to node %d" msgstr "Échec de la connexion au nœud %d" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "Veuillez configurer le widget avant de l'utiliser" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "Le widget ne peut pas être chargé" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "Veuillez le reconfigurer encore une fois" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "État général du groupe" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "Aucun agent dans ce groupe" @@ -50863,7 +51382,7 @@ msgid "No modules in selected groups" msgstr "Aucun module dans les groupes sélectionnés" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "Carte de chaleur" @@ -50900,7 +51419,7 @@ msgstr "Sinon, la mise en page est verticale" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "Vous n'avez pas accès." @@ -50922,13 +51441,14 @@ msgstr "Couleur de la police" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "Agent / module" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -50961,9 +51481,9 @@ msgid "Maps" msgstr "Cartes" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" -msgstr "Données du module Moy| Somme| Max| Min" +msgstr "Avg|Sum|Max|Min Module Data" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:390 msgid "Last 30 days" @@ -51047,7 +51567,7 @@ msgstr "Merci d'utiliser %s." #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "Couleur des onglets des modules" @@ -51134,21 +51654,21 @@ msgid "Zoom level" msgstr "Niveau de zoom" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "Rapport d'alertes déclenchées" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "Pas d'alerte déclenchée" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "Sélectionnez un groupe" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "Liste des derniers événements" @@ -51158,16 +51678,16 @@ msgstr "Filtres personnalisés" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "Tous les événements" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "Seulement les événements validés" @@ -51180,10 +51700,38 @@ msgstr "Seulement ceux en attente" msgid "Please, event filter has been removed." msgstr "Veuillez noter que le filtre d’événements a été supprimé." +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "Couleur de la table" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "Afficher l’étiquette" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "Taille de l'étiquette en px" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "Couleur de l’étiquette" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "Afficher la valeur" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "Valeur de la taille en px" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "Valeur de la couleur" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" -msgstr "Carton événementiel" +msgstr "Carte d’événement" #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 @@ -51316,12 +51864,12 @@ msgid "Missing Service id" msgstr "ID de service manquant" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "Vue Agent/Module" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "Filtrer les modules" @@ -51375,23 +51923,23 @@ msgstr "critique" msgid "unknown" msgstr "inconnu" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "Type d'arbre" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "Ouvrir tous les groupes" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "État des agents" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "État des modules" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " @@ -51400,38 +51948,38 @@ msgstr "" "L'utilisateur n'est pas autorisé à lire les agents. Veuillez contacter votre " "administrateur %s." -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "Systèmes d'exploitation trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "Étiquettes trouvées" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "Groupes de modules trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "Modules trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "Groupes trouvés" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "Agents anormales" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "Modules anormales" @@ -51448,10 +51996,6 @@ msgstr "" "Expression régulière ou chaîne insensible à la casse pour le nom du module. " "Par exemple : .*usage.* correspondra à : cpu_usage, vram usage." -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "Moyenne" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "Aucun agent/module trouvé correspondant à l'ensemble de filtres" @@ -51515,11 +52059,11 @@ msgstr "Active-Passive" msgid "Cluster already defined, please use another name." msgstr "Grappe déjà définie, utilisez un autre nom." -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "Nom de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" @@ -51527,11 +52071,11 @@ msgstr "" "Un agent avec le m^me nom de la grappe sera créé, ainsi qu'un service special " "avec le même nom" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "Type de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" @@ -51539,49 +52083,49 @@ msgstr "" "AA c'est une grappe où tous les membres travaillent. Dans la grappe AP " "seulement le membre master travaille" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "Active - Active" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "Active - Passive" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "L'agent de grappe cible sera stocké sous ce groupe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status calculations" msgstr "" "Vous devez détecter un Serveur de prédiction pour accomplir toutes les " "estimations d'état de grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "critique si" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "% des modules balancés sont désactivés (égal ou supérieur)" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "Veuillez définir des seuils pour tous les modules actifs-passifs" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "Veuillez définir des seuils pour tous les modules actifs-actifs" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "" "Veuillez vérifier tout les modules critiques active-passive pour cette grappe" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." @@ -51589,7 +52133,7 @@ msgstr "" "Si un module balancé critique entre un état critique, la grappe deviendra " "critique." -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "Problèmes de connexion : %s" @@ -51706,52 +52250,52 @@ msgid "Collapse the tree" msgstr "Réduire l'arborescence" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "Rechercher les options" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "Options SNMP v3" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "Rechercher concordances" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "Créer des modules d'agent" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "Créer des modules de politique" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "Créer des composants de réseau" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr " disponible" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr " À appliquer" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "Créer une nouvelle politique" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "Annuler" -#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51 +#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "Problème de connexion avec le nœud" @@ -51790,7 +52334,8 @@ msgid "GIS map layers" msgstr "Couches de carte GIS" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "Cartes de réseau" @@ -51824,159 +52369,153 @@ msgstr "Impossible de se connecter : %s" msgid "Latest events" msgstr "Derniers événements" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "Changement à état inconnu" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "Alerte validée manuellement" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "Changement de l'état critique à l'état d'alerte" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "Passage à l'état critique" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "Passage à l'état normal" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "Passage de l'état normal à l'état d'alerte" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "Le serveur Discovery a détecté un nouvel hôte" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "Nouvel agent créé" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "Type inconnu :" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "Uniquement les nouveaux" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "Uniquement ceux en cours" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "Uniquement les non validés" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "En cours" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "Non validés" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "Changer de propriétaire" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "Modifier l'état" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "Ajouter un commentaire" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983 msgid "Delete event" msgstr "Supprimer l'événement" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "Réponses personnalisées" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "Informations étendues" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "Erreur de connexion au nœud" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "Détails de l'agent" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" "Cet agent appartient à la Métaconsole, il n'est pas possible de l'afficher" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "Afficher les champs personnalisés" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "Détails du module" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "Non attribué" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "Accéder à l'aperçu de données" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "Données personnalisées non valides : %s" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "Premier événement" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "Dernier événement" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "Autovalidé" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "Identifiant supplémentaire" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "Aucun commentaire" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "par" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "Événement # %d" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "Exécution de la commande : " @@ -52052,15 +52591,15 @@ msgstr "Erreur SAML" msgid "User is blocked" msgstr "L’utilisateur est bloqué" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "L'utilisateur n'existe pas" -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "L'utilisateur peut seulement utiliser l'API." -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Métaconsole MR (%d) est différent de celui-ci (%d)" @@ -52097,35 +52636,35 @@ msgstr "groupes de modules" msgid "policies" msgstr "politiques" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "Rechercher groupe" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "Afficher les modules non initialisés" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "Rechercher agent" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "Afficher les agents non initialisés" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "Afficher hiérarchie complète" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "Afficher uniquement désactivé" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "Rechercher module" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "Rechercher arborescence" @@ -52208,34 +52747,29 @@ msgstr "" "Si vous cochez cette case, la taille du bloc de la configuration globale sera " "utilisée" -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "Thème" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "Cette modification ne s’appliquera qu’aux nœuds" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "Configuration utilisateur eHorus" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "Configuration d’utilisateur Integria" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "You can not change your user info under the current authentication scheme" msgstr "" "Vous ne pouvez pas modifier vos informations d'utilisateur sous le schéma " "d'authentification actuel" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "Cet utilisateur n'a aucun profil/groupe assigné." @@ -52267,41 +52801,41 @@ msgstr "" msgid "Matches" msgstr "Concordances" -#: ../../operation/visual_console/view.php:407 +#: ../../operation/visual_console/view.php:409 msgid "Delete Item" msgstr "Supprimer l'élément" -#: ../../operation/visual_console/view.php:413 +#: ../../operation/visual_console/view.php:415 msgid "Copy Item" msgstr "Copier l'élément" -#: ../../operation/visual_console/view.php:430 +#: ../../operation/visual_console/view.php:432 msgid "Force remote checks" msgstr "Forcer les vérifications à distance" -#: ../../operation/visual_console/view.php:788 +#: ../../operation/visual_console/view.php:790 msgid "Are you sure you wish to set the visual console in maintenance mode" msgstr "" "Êtes-vous sûr de vouloir mettre la console visuelle en mode maintenance ?" -#: ../../operation/visual_console/view.php:791 -#: ../../operation/visual_console/view.php:798 +#: ../../operation/visual_console/view.php:793 +#: ../../operation/visual_console/view.php:800 msgid "Are you sure you wish to disable maintenance mode" msgstr "Êtes-vous sûr de vouloir désactiver le mode maintenance ?" -#: ../../operation/visual_console/view.php:794 +#: ../../operation/visual_console/view.php:796 msgid "The visual console was set to maintenance mode" msgstr "La console visuelle a été réglée en mode maintenance" -#: ../../operation/visual_console/view.php:796 +#: ../../operation/visual_console/view.php:798 msgid "ago by user" msgstr "par l’utilisateur" -#: ../../operation/visual_console/view.php:803 +#: ../../operation/visual_console/view.php:805 msgid "Maintenance mode" msgstr "Mode maintenance" -#: ../../operation/visual_console/view.php:864 +#: ../../operation/visual_console/view.php:866 msgid "Are you sure" msgstr "Êtes-vous certain" @@ -52333,64 +52867,65 @@ msgstr "Heure de rafraîchissement" msgid "Show events" msgstr "Afficher les événements" -#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/stat_win.php:303 #: ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "Afficher les alertes" -#: ../../operation/agentes/stat_win.php:307 -#: ../../operation/agentes/stat_win.php:418 -#: ../../operation/agentes/interface_traffic_graph_win.php:209 +#: ../../operation/agentes/stat_win.php:311 +#: ../../operation/agentes/stat_win.php:430 +#: ../../operation/agentes/interface_traffic_graph_win.php:214 msgid "Begin time" msgstr "Heure de début" -#: ../../operation/agentes/stat_win.php:325 -#: ../../operation/agentes/stat_win.php:428 -#: ../../operation/agentes/interface_traffic_graph_win.php:215 +#: ../../operation/agentes/stat_win.php:333 +#: ../../operation/agentes/stat_win.php:444 +#: ../../operation/agentes/interface_traffic_graph_win.php:231 #: ../../operation/agentes/graphs.php:233 #: ../../operation/reporting/graph_viewer.php:346 msgid "Time range" msgstr "Intervalle de temps" -#: ../../operation/agentes/stat_win.php:340 +#: ../../operation/agentes/stat_win.php:348 #: ../../operation/reporting/graph_viewer.php:390 msgid "Zoom" msgstr "Zoom" -#: ../../operation/agentes/stat_win.php:360 -#: ../../operation/agentes/interface_traffic_graph_win.php:229 +#: ../../operation/agentes/stat_win.php:368 +#: ../../operation/agentes/interface_traffic_graph_win.php:245 msgid "Show percentil" msgstr "Afficher centile" -#: ../../operation/agentes/stat_win.php:386 +#: ../../operation/agentes/stat_win.php:394 msgid "Show AVG/MAX/MIN data series in graph" msgstr "Afficher les séries de données MOY/MAX/MIN dans le graphique" -#: ../../operation/agentes/stat_win.php:484 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 +#: ../../operation/agentes/stat_win.php:500 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/interface_traffic_graph_win.php:322 msgid "Graph configuration menu" msgstr "Menu de configuration du graphique" -#: ../../operation/agentes/alerts_status.php:344 +#: ../../operation/agentes/alerts_status.php:346 msgid "No actions" msgstr "Aucune action" -#: ../../operation/agentes/alerts_status.php:378 -#: ../../operation/agentes/estado_monitores.php:577 +#: ../../operation/agentes/alerts_status.php:380 +#: ../../operation/agentes/estado_monitores.php:575 #: ../../operation/agentes/alerts_status.functions.php:223 msgid "Free text for search (*):" msgstr "Texte libre pour la recherche (*):" -#: ../../operation/agentes/alerts_status.php:379 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:224 msgid "Filter by module name, template name or action name" msgstr "Filtrer par nom de module, nom de modèle ou nom d'action" -#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/alerts_status.php:481 msgid "Full list of alerts" msgstr "Liste complète des alertes" -#: ../../operation/agentes/alerts_status.php:567 +#: ../../operation/agentes/alerts_status.php:577 msgid "You must select at least one alert." msgstr "Vous devez sélectionner au moins une alerte." @@ -52464,15 +52999,15 @@ msgid "Search in custom fields" msgstr "Rechercher dans les champs personnalisés" #: ../../operation/agentes/estado_agente.php:467 -#: ../../operation/agentes/status_monitor.php:1058 +#: ../../operation/agentes/status_monitor.php:1060 msgid "Manage filter" msgstr "Gérer le filtre" -#: ../../operation/agentes/estado_agente.php:1059 +#: ../../operation/agentes/estado_agente.php:1067 msgid "L.S change" msgstr "Changement L.S" -#: ../../operation/agentes/estado_agente.php:1238 +#: ../../operation/agentes/estado_agente.php:1247 msgid "Agent events" msgstr "Evénements de l’agent" @@ -52519,14 +53054,14 @@ msgid "Latest events for this agent" msgstr "Derniers événements pour cet agent" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2347 +#: ../../operation/agentes/pandora_networkmap.view.php:2348 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "Écran normal" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2375 +#: ../../operation/agentes/pandora_networkmap.view.php:2376 msgid "List of networkmap" msgstr "Liste de cartes de réseau" @@ -52706,39 +53241,39 @@ msgid "Succesfully created" msgstr "Créée correctement" #: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:514 +#: ../../operation/agentes/pandora_networkmap.php:515 msgid "Succesfully updated" msgstr "Mise à jour correctement" -#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/agentes/pandora_networkmap.php:540 msgid "Succesfully duplicate" msgstr "Dupliquée correctement" -#: ../../operation/agentes/pandora_networkmap.php:562 +#: ../../operation/agentes/pandora_networkmap.php:563 msgid "Succesfully deleted" msgstr "Supprimée correctement" -#: ../../operation/agentes/pandora_networkmap.php:672 +#: ../../operation/agentes/pandora_networkmap.php:673 msgid "List of network maps" msgstr "Liste des cartes du réseau" -#: ../../operation/agentes/pandora_networkmap.php:787 +#: ../../operation/agentes/pandora_networkmap.php:788 msgid "Empty map" msgstr "Carte vide" -#: ../../operation/agentes/pandora_networkmap.php:791 +#: ../../operation/agentes/pandora_networkmap.php:792 msgid "Pending to generate" msgstr "En attente de générer" -#: ../../operation/agentes/pandora_networkmap.php:846 +#: ../../operation/agentes/pandora_networkmap.php:847 msgid "There are no maps defined." msgstr "Aucune carte définie" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create network map" msgstr "Créer une carte de réseau" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create empty network map" msgstr "Créer une carte réseau vide" @@ -52747,11 +53282,11 @@ msgstr "Créer une carte réseau vide" msgid "%s Interface Graph" msgstr "%s Graphique d'interface" -#: ../../operation/agentes/interface_traffic_graph_win.php:252 +#: ../../operation/agentes/interface_traffic_graph_win.php:268 msgid "Zoom factor" msgstr "Facteur de zoom" -#: ../../operation/agentes/interface_traffic_graph_win.php:259 +#: ../../operation/agentes/interface_traffic_graph_win.php:275 msgid "Full" msgstr "Complet" @@ -52816,15 +53351,15 @@ msgid "Custom graph create from the tab graphs in the agent." msgstr "" "Graphique personnalisé créé à partir de la section des graphiques de l'agent" -#: ../../operation/agentes/datos_agente.php:173 +#: ../../operation/agentes/datos_agente.php:174 msgid "Received data from" msgstr "Données reçues de" -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "Main database" msgstr "Base de données principale" -#: ../../operation/agentes/datos_agente.php:181 +#: ../../operation/agentes/datos_agente.php:182 msgid "" "Switch between the main database and the history database to retrieve module " "data" @@ -52832,7 +53367,7 @@ msgstr "" "Changez entre la base de données principale et la base de données de " "l'historique pour récupérer les données du module." -#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/datos_agente.php:213 #: ../../operation/agentes/alerts_status.functions.php:151 msgid "Free text for search" msgstr "Texte libre pour recherche" @@ -52867,7 +53402,7 @@ msgid "% Bandwidth usage (out)" msgstr "% d'utilisation de la bande passante (sortie)" #: ../../operation/agentes/interface_view.functions.php:731 -#: ../../operation/agentes/pandora_networkmap.view.php:1308 +#: ../../operation/agentes/pandora_networkmap.view.php:1309 msgid "inOctets and outOctets must be enabled." msgstr "inOctets et outOctets doivent être activés." @@ -52922,28 +53457,24 @@ msgstr "Aucun champ défini" msgid "Interface view" msgstr "Vue de l'interface" -#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186 -msgid "Monitor detail" -msgstr "Détail des moniteurs" - -#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/status_monitor.php:591 #: ../../operation/agentes/alerts_status.functions.php:127 msgid "No tags" msgstr "Aucune étiquette" -#: ../../operation/agentes/status_monitor.php:675 +#: ../../operation/agentes/status_monitor.php:674 msgid "Wux server module" msgstr "Module du serveur WUX" -#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/status_monitor.php:973 msgid "Min. hours in current status" msgstr "Heures min. dans l'état actuel" -#: ../../operation/agentes/status_monitor.php:981 +#: ../../operation/agentes/status_monitor.php:983 msgid "Not condition" msgstr "Pas de condition" -#: ../../operation/agentes/status_monitor.php:996 +#: ../../operation/agentes/status_monitor.php:998 msgid "" "If you check this option, those elements that do NOT meet any of the " "requirements will be shown" @@ -52951,26 +53482,26 @@ msgstr "" "Si vous cochez cette option, les éléments qui ne répondent à aucune des " "exigences seront affichés" -#: ../../operation/agentes/status_monitor.php:1541 +#: ../../operation/agentes/status_monitor.php:1543 msgid "Data Type" msgstr "Type de données" -#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1587 msgid "W/C" msgstr "W/C" -#: ../../operation/agentes/status_monitor.php:1671 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/status_monitor.php:1673 +#: ../../operation/agentes/pandora_networkmap.view.php:1820 msgid "(Adopt) " msgstr "(Adopter) " -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/pandora_networkmap.view.php:1827 +#: ../../operation/agentes/status_monitor.php:1681 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 msgid "(Unlinked) (Adopt) " msgstr "(Dissocié) (Adopter) " -#: ../../operation/agentes/status_monitor.php:1682 -#: ../../operation/agentes/pandora_networkmap.view.php:1830 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1831 msgid "(Unlinked) " msgstr "(Dissocié) " @@ -52978,6 +53509,10 @@ msgstr "(Dissocié) " msgid "Summary of the status groups" msgstr "Résumé des groupes par état" +#: ../../operation/agentes/group_view.php:233 +msgid "Total items" +msgstr "Total des éléments" + #: ../../operation/agentes/estado_monitores.php:51 msgid "Tag's information" msgstr "Information des étiquettes" @@ -52994,23 +53529,15 @@ msgstr "Modules non initialisés trouvés." msgid "List of modules" msgstr "Liste de modules" -#: ../../operation/agentes/estado_monitores.php:191 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" -"Pour afficher la liste de modules paginés, activez cette option dans la " -"configuration de styles." - -#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/estado_monitores.php:516 msgid "Not Normal" msgstr "Pas normal" -#: ../../operation/agentes/estado_monitores.php:559 +#: ../../operation/agentes/estado_monitores.php:557 msgid "Status:" msgstr "État :" -#: ../../operation/agentes/estado_monitores.php:578 +#: ../../operation/agentes/estado_monitores.php:576 msgid "Search by module name, list matches." msgstr "Rechercher par nom de module, concordances de listes" @@ -53020,24 +53547,24 @@ msgstr "" "Afficher uniquement la tâche avec le script de reconnaissance \"SNMP L2 Recon" "\"." -#: ../../operation/agentes/pandora_networkmap.view.php:1687 +#: ../../operation/agentes/pandora_networkmap.view.php:1688 msgid "Success be updated." msgstr "Mis à jour correctement" -#: ../../operation/agentes/pandora_networkmap.view.php:1784 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 msgid "Name: " msgstr "Nom : " -#: ../../operation/agentes/pandora_networkmap.view.php:1834 +#: ../../operation/agentes/pandora_networkmap.view.php:1835 msgid "Policy: " msgstr "Politique : " -#: ../../operation/agentes/pandora_networkmap.view.php:1931 +#: ../../operation/agentes/pandora_networkmap.view.php:1932 msgid "Data: " msgstr "Données : " -#: ../../operation/agentes/pandora_networkmap.view.php:1933 -#: ../../operation/agentes/estado_generalagente.php:923 +#: ../../operation/agentes/pandora_networkmap.view.php:1934 +#: ../../operation/agentes/estado_generalagente.php:830 msgid "Last contact: " msgstr "Dernier contact : " @@ -53045,27 +53572,27 @@ msgstr "Dernier contact : " msgid "Sons" msgstr "Fils" -#: ../../operation/agentes/ver_agente.php:1596 +#: ../../operation/agentes/ver_agente.php:1592 msgid "Log Viewer" msgstr "Visionneur de journaux" -#: ../../operation/agentes/ver_agente.php:1635 +#: ../../operation/agentes/ver_agente.php:1631 msgid "Terminal" msgstr "Terminal" -#: ../../operation/agentes/ver_agente.php:1657 +#: ../../operation/agentes/ver_agente.php:1653 msgid "Processes" msgstr "Processus" -#: ../../operation/agentes/ver_agente.php:1840 +#: ../../operation/agentes/ver_agente.php:1836 msgid "Data View" msgstr "Vue des données" -#: ../../operation/agentes/ver_agente.php:1910 +#: ../../operation/agentes/ver_agente.php:1906 msgid "Network configuration" msgstr "Configuration réseau" -#: ../../operation/agentes/ver_agente.php:1925 +#: ../../operation/agentes/ver_agente.php:1921 msgid "Agent main view" msgstr "Vue principale de l’agent" @@ -53078,43 +53605,27 @@ msgstr "" msgid "In scheduled downtime" msgstr "En arrêt planifié" -#: ../../operation/agentes/estado_generalagente.php:395 +#: ../../operation/agentes/estado_generalagente.php:366 msgid "Agent contact" msgstr "Contact de l'agent" -#: ../../operation/agentes/estado_generalagente.php:401 +#: ../../operation/agentes/estado_generalagente.php:372 msgid "Refresh data" msgstr "Rafraîchir les données" -#: ../../operation/agentes/estado_generalagente.php:435 -msgid "Out of bounds" -msgstr "Hors limites" - -#: ../../operation/agentes/estado_generalagente.php:470 -msgid "Next contact" -msgstr "Contact suivant" - -#: ../../operation/agentes/estado_generalagente.php:555 -msgid "There is no GIS data." -msgstr "Aucune donnée GIS" - -#: ../../operation/agentes/estado_generalagente.php:688 +#: ../../operation/agentes/estado_generalagente.php:657 msgid "Agent access rate (Last 24h)" msgstr "Taux d'accès des agents (dernières 24h)" -#: ../../operation/agentes/estado_generalagente.php:745 +#: ../../operation/agentes/estado_generalagente.php:714 msgid "Active incident on this agent" msgstr "Incident actif sur cet agent" -#: ../../operation/agentes/estado_generalagente.php:903 -msgid "Events info (24hr.)" -msgstr "Information des événements (24h)" - -#: ../../operation/agentes/estado_generalagente.php:1050 +#: ../../operation/agentes/estado_generalagente.php:957 msgid "Agent data" msgstr "Données de l'agent" -#: ../../operation/agentes/estado_generalagente.php:1111 +#: ../../operation/agentes/estado_generalagente.php:1018 msgid "Interface information (SNMP)" msgstr "Information de l'interface (SNMP)" @@ -53122,8 +53633,8 @@ msgstr "Information de l'interface (SNMP)" msgid "This agent has not modules inventory" msgstr "Cet agent n'a pas de modules d'inventaire." -#: ../../operation/agentes/agent_inventory.php:193 -#: ../../operation/agentes/agent_inventory.php:194 +#: ../../operation/agentes/agent_inventory.php:248 +#: ../../operation/agentes/agent_inventory.php:249 msgid "Diff view" msgstr "Affichage des différence" @@ -53278,7 +53789,7 @@ msgstr "Nombre de résultat à afficher" #: ../../operation/network/network_report.php:183 #: ../../operation/network/network_usage_map.php:189 -#: ../../operation/netflow/nf_live_view.php:483 +#: ../../operation/netflow/nf_live_view.php:556 msgid "Defined period" msgstr "Période définie" @@ -53314,47 +53825,56 @@ msgstr "Afficher la carte netflow" msgid "Results to show" msgstr "Résultats à afficher" -#: ../../operation/netflow/nf_live_view.php:130 +#: ../../operation/netflow/nf_live_view.php:135 msgid "Netflow live view" msgstr "Netflow en temps réel" -#: ../../operation/netflow/nf_live_view.php:163 +#: ../../operation/netflow/nf_live_view.php:172 msgid "Error creating filter" msgstr "Erreur de création du filtre" -#: ../../operation/netflow/nf_live_view.php:165 +#: ../../operation/netflow/nf_live_view.php:174 msgid "Filter created successfully" msgstr "Filtre créé correctement" -#: ../../operation/netflow/nf_live_view.php:184 +#: ../../operation/netflow/nf_live_view.php:193 msgid "Filter updated successfully" msgstr "Filtre mis à jour correctement" -#: ../../operation/netflow/nf_live_view.php:185 +#: ../../operation/netflow/nf_live_view.php:194 msgid "Error updating filter" msgstr "Erreur de mise à jour du filtre" -#: ../../operation/netflow/nf_live_view.php:228 +#: ../../operation/netflow/nf_live_view.php:237 msgid "Connection" msgstr "Connexion" -#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/netflow/nf_live_view.php:293 msgid "Select a filter" msgstr "Sélectionner un filtre" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "IP address resolution" msgstr "Résolution de l'adresse IP" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "Resolve the IP addresses to get their hostnames." msgstr "Résoudre les adresses IP pour obtenir leurs noms d'hôte" -#: ../../operation/netflow/nf_live_view.php:360 +#: ../../operation/netflow/nf_live_view.php:369 msgid "Source ip" msgstr "IP source" -#: ../../operation/netflow/nf_live_view.php:465 +#: ../../operation/netflow/nf_live_view.php:387 +msgid "New filter name" +msgstr "Nouveau nom de filtre" + +#: ../../operation/netflow/nf_live_view.php:425 +#, php-format +msgid "WARNING threshold for the maximum % of traffic of an IP." +msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP." + +#: ../../operation/netflow/nf_live_view.php:538 #: ../../operation/incidents/integriaims_export_csv.php:84 #: ../../operation/incidents/configure_integriaims_incident.php:353 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339 @@ -53362,31 +53882,31 @@ msgstr "IP source" msgid "Resolution" msgstr "Résolution" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:550 msgid "The interval will be divided in chunks the length of the resolution." msgstr "L'intervalle sera divisé en morceaux de la longueur de la résolution." -#: ../../operation/netflow/nf_live_view.php:508 +#: ../../operation/netflow/nf_live_view.php:581 msgid "Aggregated by" -msgstr "Agrégé par" +msgstr "Ajouté par" -#: ../../operation/netflow/nf_live_view.php:525 +#: ../../operation/netflow/nf_live_view.php:598 msgid "Max values" msgstr "Valeurs maximales" -#: ../../operation/netflow/nf_live_view.php:575 +#: ../../operation/netflow/nf_live_view.php:648 msgid "Draw" msgstr "Dessiner" -#: ../../operation/netflow/nf_live_view.php:587 +#: ../../operation/netflow/nf_live_view.php:660 msgid "Save as new filter" msgstr "Enregistrer comme nouveau filtre" -#: ../../operation/netflow/nf_live_view.php:588 +#: ../../operation/netflow/nf_live_view.php:661 msgid "Update current filter" msgstr "Mise à jour de ce filtre" -#: ../../operation/netflow/nf_live_view.php:618 +#: ../../operation/netflow/nf_live_view.php:691 msgid "No filter selected" msgstr "Aucun filtre sélectionné" @@ -53419,19 +53939,20 @@ msgstr "Déroutements reçus par la chaîne d'Enterprise" msgid "Trap Enterprise String" msgstr "Déroutement Enterprise de chaîne" -#: ../../operation/snmpconsole/snmp_browser.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:79 msgid "SNMP Browser" msgstr "Explorateur SNMP" -#: ../../operation/snmpconsole/snmp_browser.php:218 +#: ../../operation/snmpconsole/snmp_browser.php:223 msgid "Adding modules in progress" msgstr "Ajout de modules en cours" -#: ../../operation/snmpconsole/snmp_browser.php:546 +#: ../../operation/snmpconsole/snmp_browser.php:551 msgid "Create policy" msgstr "Créer une politique" -#: ../../operation/snmpconsole/snmp_browser.php:638 +#: ../../operation/snmpconsole/snmp_browser.php:621 +#: ../../operation/snmpconsole/snmp_browser.php:697 msgid "Are you sure you want add module?" msgstr "Êtes-vous sûr de vouloir ajouter un module ?" @@ -53478,11 +53999,10 @@ msgid "RSS" msgstr "RSS" #: ../../operation/menu.php:570 ../../operation/menu.php:583 -#: ../../operation/events/sound_events.php:63 -#: ../../operation/events/sound_events.php:164 -#: ../../operation/events/events.php:1532 ../../operation/events/events.php:1582 -msgid "Accoustic console" -msgstr "Console acoustique" +#: ../../operation/events/sound_events.php:62 +#: ../../operation/events/events.php:1586 ../../operation/events/events.php:1636 +msgid "Acoustic console" +msgstr "Console sonore" #: ../../operation/menu.php:648 msgid "Configure user notifications" @@ -53744,44 +54264,42 @@ msgstr "Mis à jour/Démarré" msgid "No tickets to show" msgstr "Aucun ticket à afficher" -#: ../../operation/inventory/inventory.php:535 -#: ../../operation/inventory/inventory.php:570 +#: ../../operation/inventory/inventory.php:537 +#: ../../operation/inventory/inventory.php:572 msgid "Basic info" msgstr "Infos de base" -#: ../../operation/inventory/inventory.php:661 +#: ../../operation/inventory/inventory.php:663 msgid "Order by agent" msgstr "Ordonner par agent" -#: ../../operation/inventory/inventory.php:733 +#: ../../operation/inventory/inventory.php:734 msgid "You must select at least one filter." msgstr "Vous devez sélectionner au moins un filtre." -#: ../../operation/inventory/inventory.php:859 -#: ../../operation/inventory/inventory.php:860 -#: ../../operation/inventory/inventory.php:948 -#: ../../operation/inventory/inventory.php:949 -#: ../../operation/inventory/inventory.php:1100 -#: ../../operation/inventory/inventory.php:1101 -#: ../../operation/inventory/inventory.php:1211 -#: ../../operation/inventory/inventory.php:1212 +#: ../../operation/inventory/inventory.php:814 +#: ../../operation/inventory/inventory.php:815 +#: ../../operation/inventory/inventory.php:925 +#: ../../operation/inventory/inventory.php:926 +#: ../../operation/inventory/inventory.php:1086 +#: ../../operation/inventory/inventory.php:1087 +#: ../../operation/inventory/inventory.php:1176 +#: ../../operation/inventory/inventory.php:1177 +#: ../../operation/inventory/inventory.php:1206 +#: ../../operation/inventory/inventory.php:1207 msgid "No inventory found" msgstr "Aucun inventaire trouvé" -#: ../../operation/inventory/inventory.php:1001 -#: ../../operation/inventory/inventory.php:1295 +#: ../../operation/inventory/inventory.php:1247 msgid "Secondary IP" msgstr "IP secondaire" -#: ../../operation/inventory/inventory.php:1010 -#: ../../operation/inventory/inventory.php:1304 +#: ../../operation/inventory/inventory.php:1256 msgid "Values Custom Fields" msgstr "Valeurs des champs personnalisés" -#: ../../operation/inventory/inventory.php:1031 -#: ../../operation/inventory/inventory.php:1032 -#: ../../operation/inventory/inventory.php:1325 -#: ../../operation/inventory/inventory.php:1326 +#: ../../operation/inventory/inventory.php:1278 +#: ../../operation/inventory/inventory.php:1279 msgid "Agent info not found" msgstr "Informations sur l’agent introuvables" @@ -53871,14 +54389,6 @@ msgstr "Aucune donnée" msgid "Custom graph viewer" msgstr "Affichage personnalisé du tableau" -#: ../../operation/events/sound_events.php:229 -msgid "Time Sound" -msgstr "Cronométrer mélodie" - -#: ../../operation/events/sound_events.php:288 -msgid "Events not found" -msgstr "Événements introuvables" - #: ../../operation/events/events_rss.php:195 msgid "Your IP is not into the IP list with API access." msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API" @@ -53887,174 +54397,174 @@ msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API" msgid "The URL of your feed has bad hash." msgstr "L'URL de votre flux a un mauvais hachage." -#: ../../operation/events/events.php:884 +#: ../../operation/events/events.php:889 msgid "Validate events" msgstr "Valider les événements" -#: ../../operation/events/events.php:901 +#: ../../operation/events/events.php:906 msgid "Validate event" msgstr "Valider l'événement" -#: ../../operation/events/events.php:936 +#: ../../operation/events/events.php:941 msgid "Change to in progress status" msgstr "Passer à état en cours" -#: ../../operation/events/events.php:961 +#: ../../operation/events/events.php:966 msgid "Delete events" msgstr "Supprimer les évènements" -#: ../../operation/events/events.php:1440 +#: ../../operation/events/events.php:1494 msgid "Event viewer" msgstr "Visionneur d'événements" -#: ../../operation/events/events.php:1482 +#: ../../operation/events/events.php:1536 msgid "History event list" msgstr "Liste des événements de l'historique" -#: ../../operation/events/events.php:1493 +#: ../../operation/events/events.php:1547 msgid "RSS Events" msgstr "Événements RSS" -#: ../../operation/events/events.php:1504 +#: ../../operation/events/events.php:1558 msgid "Export to CSV file" msgstr "Exporter dans un fichier CSV" -#: ../../operation/events/events.php:1587 +#: ../../operation/events/events.php:1641 msgid "History" msgstr "Historique" -#: ../../operation/events/events.php:1641 +#: ../../operation/events/events.php:1695 msgid "Errors" msgstr "Erreurs" -#: ../../operation/events/events.php:1706 ../../operation/events/events.php:1727 +#: ../../operation/events/events.php:1760 ../../operation/events/events.php:1781 msgid "WARNING: This could cause a performace impact." msgstr "AVERTISSEMENT : Cela pourrait avoir un impact sur les performances." -#: ../../operation/events/events.php:1725 +#: ../../operation/events/events.php:1779 msgid "Search in secondary groups" msgstr "Recherche dans les groupes secondaires" -#: ../../operation/events/events.php:1815 +#: ../../operation/events/events.php:1869 msgid "Search for elements NOT containing given text." msgstr "Rechercher des éléments ne contenant PAS de texte donné." -#: ../../operation/events/events.php:2076 +#: ../../operation/events/events.php:2130 msgid "Id source event" msgstr "Événements de source d'ID" -#: ../../operation/events/events.php:2134 +#: ../../operation/events/events.php:2188 msgid "From (date:time)" msgstr "Du (date:heure)" -#: ../../operation/events/events.php:2192 +#: ../../operation/events/events.php:2246 msgid "To (date:time)" msgstr "À (date:heure)" -#: ../../operation/events/events.php:2203 +#: ../../operation/events/events.php:2257 msgid "Filter custom data by field name" msgstr "Filtrer les données personnalisées par nom de champ" -#: ../../operation/events/events.php:2204 +#: ../../operation/events/events.php:2258 msgid "Filter custom data by field value" msgstr "Filtrer les données personnalisées par valeur de champ" -#: ../../operation/events/events.php:2224 +#: ../../operation/events/events.php:2278 msgid "Custom data filter" msgstr "Filtre de données personnalisé" -#: ../../operation/events/events.php:2246 +#: ../../operation/events/events.php:2300 msgid "Custom data search" msgstr "Recherche de données personnalisée" -#: ../../operation/events/events.php:2372 +#: ../../operation/events/events.php:2426 msgid "Current filter" msgstr "Filtre actuel" -#: ../../operation/events/events.php:2377 +#: ../../operation/events/events.php:2431 msgid "Not set." msgstr "Non paramétré." -#: ../../operation/events/events.php:2390 +#: ../../operation/events/events.php:2444 msgid "Any status." msgstr "Tout état." -#: ../../operation/events/events.php:2394 +#: ../../operation/events/events.php:2448 msgid "New events." msgstr "Nouveaux événements." -#: ../../operation/events/events.php:2398 +#: ../../operation/events/events.php:2452 msgid "Validated." msgstr "Validé." -#: ../../operation/events/events.php:2402 +#: ../../operation/events/events.php:2456 msgid "In proccess." msgstr "En cours." -#: ../../operation/events/events.php:2406 +#: ../../operation/events/events.php:2460 msgid "Not validated." msgstr "Pas validé." -#: ../../operation/events/events.php:2418 +#: ../../operation/events/events.php:2472 msgid "Any time." msgstr "À tout moment." -#: ../../operation/events/events.php:2420 ../../operation/events/events.php:3030 +#: ../../operation/events/events.php:2474 ../../operation/events/events.php:3089 msgid "Last hour." msgstr "Dernière heure." -#: ../../operation/events/events.php:2422 +#: ../../operation/events/events.php:2476 #, php-format msgid "Last %d hours." msgstr "%d dernières heures." -#: ../../operation/events/events.php:2430 +#: ../../operation/events/events.php:2484 msgid "Duplicated" msgstr "Dupliqué" -#: ../../operation/events/events.php:2433 +#: ../../operation/events/events.php:2487 msgid "All events." msgstr "Tous les événements." -#: ../../operation/events/events.php:2437 +#: ../../operation/events/events.php:2491 msgid "Group agents." msgstr "Agents du groupe." -#: ../../operation/events/events.php:2439 +#: ../../operation/events/events.php:2493 msgid "Group extra id." msgstr "ID supplémentaire de groupe." -#: ../../operation/events/events.php:2543 +#: ../../operation/events/events.php:2597 msgid "In progress selected" msgstr "En cours sélectionné" -#: ../../operation/events/events.php:2544 +#: ../../operation/events/events.php:2598 msgid "Validate selected" msgstr "Valider la sélection" -#: ../../operation/events/events.php:2566 +#: ../../operation/events/events.php:2620 msgid "Execute event response" msgstr "Exécuter la réponse à l'événement" -#: ../../operation/events/events.php:2598 +#: ../../operation/events/events.php:2652 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "" "Un maximum de %s réponses personnalisées d'événement peut être sélectionné" -#: ../../operation/events/events.php:2603 +#: ../../operation/events/events.php:2657 msgid "Please, select an event" msgstr "Veuillez sélectionner un événement" -#: ../../operation/events/events.php:2689 +#: ../../operation/events/events.php:2743 msgid "has at least" msgstr "a au moins" -#: ../../operation/events/events.php:2691 +#: ../../operation/events/events.php:2745 msgid "events" msgstr "événements" -#: ../../operation/events/events.php:3032 +#: ../../operation/events/events.php:3091 msgid "hours." msgstr "heures." @@ -54598,15 +55108,15 @@ msgstr "Signaler un problème" msgid "Console only reporting node" msgstr "Nœud de création de rapports de console uniquement" -#: ../../general/reporting_console_node.php:77 +#: ../../general/reporting_console_node.php:82 msgid "Mr" msgstr "Mr" -#: ../../general/reporting_console_node.php:85 +#: ../../general/reporting_console_node.php:90 msgid "Memory limit" msgstr "Limite de mémoire" -#: ../../general/reporting_console_node.php:93 +#: ../../general/reporting_console_node.php:98 msgid "Php version" msgstr "Version PHP" @@ -54913,16 +55423,80 @@ msgstr "Cliquez ici pour ne plus afficher ce message" msgid "Maintenance tasks in progress" msgstr "Taches de maintenance en progrès" -#: ../../general/logon_ok.php:175 +#: ../../general/logon_ok.php:184 #, php-format msgid "%s Overview" msgstr "%s Aperçu" -#: ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:226 +msgid "By" +msgstr "Par" + +#: ../../general/logon_ok.php:237 +msgid "Welcome to our monitoring tool so grand," +msgstr "Bienvenue à notre outil de supervision si grand," + +#: ../../general/logon_ok.php:238 +msgid "Where data insights are at your command." +msgstr "Où les données sont à votre commande." + +#: ../../general/logon_ok.php:239 +msgid "Sales, marketing, operations too," +msgstr "Ventes, marketing, opérations aussi" + +#: ../../general/logon_ok.php:240 +msgid "Customer support, we've got you." +msgstr "Service client, comptez sur nous" + +#: ../../general/logon_ok.php:243 +msgid "Our interface is user-friendly," +msgstr "Notre interface est facile à utiliser," + +#: ../../general/logon_ok.php:244 +msgid "Customize your dashboard, it's easy." +msgstr "N’oubliez votre tableau de bord configurer." + +#: ../../general/logon_ok.php:245 +msgid "Set up alerts and gain insights so keen," +msgstr "Définissez vos alertes et contrôlez tout," + +#: ../../general/logon_ok.php:246 +msgid "Optimize your data, like you've never seen." +msgstr "Optimisez vos données comme un fou." + +#: ../../general/logon_ok.php:249 +msgid "Unleash its power now, and join the pro league," +msgstr "Déclenchez sa puissance comme un professionel," + +#: ../../general/logon_ok.php:250 +msgid "Unlock the potential of your data to intrigue." +msgstr "Surprenez et débloquez tout le potentiel." + +#: ../../general/logon_ok.php:251 +msgid "Monitoring made simple, efficient and fun," +msgstr "Supervision simplifiée, efficace et amusante." + +#: ../../general/logon_ok.php:252 +msgid "Discover a whole new way to get things done." +msgstr "Découvrez un nouvelle manière de tout faire sans redoute," + +#: ../../general/logon_ok.php:255 +msgid "And take control of your IT once and for all." +msgstr "Contrôlez l’informatique une fois pour toutes." + +#: ../../general/logon_ok.php:257 +msgid "" +"You can replace this message with a personalized one at Admin tools -> Site " +"news." +msgstr "" +"Vous pouvez remplacer ce message par un personnalisé dans Outils " +"d’administration -> Nouvelles du site." + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "Tableau de nouvelles" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "Dernière activité" @@ -54952,7 +55526,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "Vous ne pouvez utiliser ce noeud jusqu'à que le système soit unifié" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "Naviguez ves %s pour unifier le système" @@ -54975,7 +55549,7 @@ msgstr "" "enregistrées dans les journaux de sécurité de la base de données du système " "Pandora FMS." -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "Gestion" @@ -55014,14 +55588,14 @@ msgstr "Aller vers la page WEB %s" msgid "Go to Login" msgstr "Aller à Connexion" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" -msgstr "Connexion en tant qu'administateur" - -#: ../../general/login_page.php:355 +#: ../../general/login_page.php:297 ../../general/login_page.php:355 msgid "Let's go" msgstr "Commencer" +#: ../../general/login_page.php:302 +msgid "Login as admin" +msgstr "Connexion en tant qu'administateur" + #: ../../general/login_page.php:409 msgid "View details" msgstr "Voir les détails" @@ -55291,6 +55865,12 @@ msgstr "" #~ msgid "Queue filter" #~ msgstr "Filtre de la file d'attente" +#~ msgid "SMNP" +#~ msgstr "SMNP" + +#~ msgid "SMNP community" +#~ msgstr "Communauté SNMP" + #~ msgid "Events Configuration Information" #~ msgstr "Informations sur la configuration des événements" @@ -55444,6 +56024,9 @@ msgstr "" #~ msgid "Update Filter" #~ msgstr "Mise à jour du filtre" +#~ msgid "Manage satellite hosts" +#~ msgstr "Gérer les hôtes satellites" + #~ msgid "No tags defined" #~ msgstr "Aucune étiquette définie" @@ -55453,21 +56036,15 @@ msgstr "" #~ msgid "Create Tag" #~ msgstr "Créer une étiquette" +#~ msgid "No maps defined" +#~ msgstr "Aucune carte définie" + #~ msgid "Warning
Critical" #~ msgstr "Alerte
Critique" #~ msgid "Scheduled jobs" #~ msgstr "Tâches planifiées" -#~ msgid "Go to module edition" -#~ msgstr "Accéder à l'édition de modules" - -#~ msgid "Go to cluster edition" -#~ msgstr "Accéder à l’édition cluster" - -#~ msgid "Go to agent edition" -#~ msgstr "Accéder à l'édition de l'agent" - #~ msgid "PANDORA FMS" #~ msgstr "PANDORA FMS" @@ -55510,6 +56087,9 @@ msgstr "" #~ "d'opérer avec eux. L'opération, lorsque la réplication d'événement est " #~ "activée, doit être effectuée uniquement dans la Métaconsole." +#~ msgid "This change will only apply to nodes" +#~ msgstr "Cette modification ne s’appliquera qu’aux nœuds" + #~ msgid "No log sources found" #~ msgstr "Aucune source de journal trouvée" @@ -55522,12 +56102,25 @@ msgstr "" #~ msgid "This group doesn't have any monitor" #~ msgstr "Ce groupe n'a aucun moniteur" +#~ msgid "" +#~ "To see the list of modules paginated, enable this option in the Styles " +#~ "Configuration." +#~ msgstr "" +#~ "Pour afficher la liste de modules paginés, activez cette option dans la " +#~ "configuration de styles." + #~ msgid "Remote configuration enabled" #~ msgstr "Configuration à distance activée" #~ msgid "Agent info" #~ msgstr "Information de l'agent" +#~ msgid "There is no GIS data." +#~ msgstr "Aucune donnée GIS" + +#~ msgid "Events info (24hr.)" +#~ msgstr "Information des événements (24h)" + #~ msgid "Select this checkbox to write interval instead a date." #~ msgstr "Cochez cette case pour écrire un intervalle à la place d'une date." @@ -55543,6 +56136,12 @@ msgstr "" #~ msgid "Sound console" #~ msgstr "Console sonore" +#~ msgid "Time Sound" +#~ msgstr "Cronométrer mélodie" + +#~ msgid "Events not found" +#~ msgstr "Événements introuvables" + #~ msgid "Sound events" #~ msgstr "Événements sonores" @@ -55952,9 +56551,6 @@ msgstr "" #~ msgid "Events replication" #~ msgstr "Réplication d'événements" -#~ msgid "Replication interval" -#~ msgstr "Intervalle de réplication" - #~ msgid "Replication limit" #~ msgstr "Limite de réplication" @@ -56383,9 +56979,6 @@ msgstr "" #~ msgid "Could not be updated, it already exists" #~ msgstr "N'a pas pu être mis à jour, il existe déjà" -#~ msgid "Welcome to Pandora FMS Web Console" -#~ msgstr "Bienvenue à Pandora FMS Web Console" - #~ msgid "Welcome to Pandora FMS" #~ msgstr "Bienvenue à Pandora FMS" @@ -56820,9 +57413,6 @@ msgstr "" #~ msgid "First date" #~ msgstr "Première date" -#~ msgid "Latest data" -#~ msgstr "Dernier donnés" - #~ msgid "Purge event data over 90 days" #~ msgstr "Effacer les données d'événements sauf pour le dernier trimestre" @@ -56927,26 +57517,9 @@ msgstr "" #~ msgid "Number lines of log" #~ msgstr "Nobre de lignes de registre" -#~ msgid "Generate file" -#~ msgstr "Générer fichier" - #~ msgid "VNC view" #~ msgstr "Vue VNC" -#, php-format -#~ msgid "" -#~ "This extension makes registration of server plugins more easy. Here you can " -#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins." -#~ "

You can get more plugins in our
Public Resource " -#~ "Library" -#~ msgstr "" -#~ "Cet extension fait enregistrement du plugins du serveur plus facile. Ici " -#~ "vous pouvez télécharger un plugin du serveur dans le format comprimé de " -#~ "Pandora FMS 3.x (.pspz). Si vous plaît lire la documentation pour obtenir " -#~ "et utiliser les plugins du serveur de Pandora FMS.

Vous pouvez " -#~ "obtenir plus de plugins dans notre Public Resource Library" - #~ msgid "Ping to " #~ msgstr "Faire un ping dans " @@ -58189,9 +58762,6 @@ msgstr "" #~ msgid "There was an error with the zip file" #~ msgstr "Il y avait une erreur avec le fichier zip" -#~ msgid "At least one option must be selected" -#~ msgstr "Au moins une option doit être sélectionnée" - #~ msgid "Agents:" #~ msgstr "Agents :" @@ -59940,9 +60510,6 @@ msgstr "" #~ msgid "Event graph by user" #~ msgstr "Graphique d'événements par utilisateur" -#~ msgid "Successfully set in process" -#~ msgstr "Démarré correctement" - #~ msgid "Successfully validated" #~ msgstr "Validé correctement" diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot index bd3f78dca8..48f69dd8ca 100644 --- a/pandora_console/include/languages/index.pot +++ b/pandora_console/include/languages/index.pot @@ -7,24 +7,24 @@ #: ../../enterprise/meta/monitoring/group_view.php:211 #: ../../enterprise/meta/monitoring/group_view.php:228 #: ../../enterprise/include/functions_reporting_csv.php:2304 -#: ../../include/functions_reporting_html.php:4147 -#: ../../include/functions_reporting_html.php:4153 -#: ../../include/functions_reporting_html.php:4159 -#: ../../include/functions_reporting_html.php:4165 -#: ../../include/functions_reporting_html.php:4171 -#: ../../include/functions_reporting_html.php:4177 -#: ../../include/functions_reporting_html.php:4183 -#: ../../include/functions_reporting_html.php:4241 -#: ../../include/functions_reporting_html.php:4247 -#: ../../include/functions_reporting_html.php:4253 -#: ../../include/functions_reporting_html.php:4259 -#: ../../include/functions_reporting_html.php:4265 +#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4187 +#: ../../include/functions_reporting_html.php:4193 +#: ../../include/functions_reporting_html.php:4199 +#: ../../include/functions_reporting_html.php:4205 +#: ../../include/functions_reporting_html.php:4211 +#: ../../include/functions_reporting_html.php:4269 +#: ../../include/functions_reporting_html.php:4275 +#: ../../include/functions_reporting_html.php:4281 +#: ../../include/functions_reporting_html.php:4287 +#: ../../include/functions_reporting_html.php:4293 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-09 10:50+0200\n" +"POT-Creation-Date: 2023-06-06 09:26+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,17 +33,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../views/consoles/list.php:32 +#: ../../views/consoles/list.php:31 #, php-format msgid "%s registered consoles" msgstr "" -#: ../../views/consoles/list.php:68 +#: ../../views/consoles/list.php:40 +#: ../../enterprise/meta/advanced/servers.build_table.php:42 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../godmode/menu.php:298 ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../godmode/servers/modificar_server.php:59 +#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:238 +#: ../../godmode/servers/modificar_server.php:293 +#: ../../godmode/servers/plugin_registration.php:73 +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 +#: ../../godmode/servers/plugin.php:794 +#: ../../mobile/include/functions_web.php:28 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 +msgid "Servers" +msgstr "" + +#: ../../views/consoles/list.php:69 #: ../../enterprise/include/functions_tasklist.php:177 msgid "Console ID" msgstr "" -#: ../../views/consoles/list.php:69 ../../views/calendar/list.php:98 +#: ../../views/consoles/list.php:70 ../../views/calendar/list.php:98 #: ../../views/calendar/special_days_edit.php:137 #: ../../views/calendar/edit.php:112 ../../views/cluster/list.php:70 #: ../../views/cluster/view.php:285 @@ -81,7 +103,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_collections.php:323 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:143 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:407 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 @@ -210,22 +232,22 @@ msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:234 #: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/modules/manage_network_components.php:780 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 #: ../../godmode/modules/manage_inventory_modules_form.php:128 #: ../../godmode/modules/module_list.php:100 #: ../../godmode/modules/manage_network_templates.php:249 -#: ../../godmode/groups/configure_group.php:239 -#: ../../godmode/groups/group_list.php:884 -#: ../../godmode/users/user_list.php:581 +#: ../../godmode/groups/configure_group.php:258 +#: ../../godmode/groups/group_list.php:885 +#: ../../godmode/users/user_list.php:582 #: ../../godmode/agentes/agent_template.php:276 #: ../../godmode/agentes/inventory_manager.php:234 -#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../godmode/agentes/modificar_agente.php:709 #: ../../godmode/agentes/planned_downtime.list.php:734 #: ../../godmode/agentes/planned_downtime.editor.php:914 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:170 #: ../../godmode/agentes/agent_manager.php:569 -#: ../../godmode/agentes/module_manager_editor_common.php:1019 +#: ../../godmode/agentes/module_manager_editor_common.php:1029 #: ../../godmode/agentes/module_manager.php:644 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:769 @@ -233,7 +255,7 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:313 #: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_agents.php:791 #: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 #: ../../godmode/alerts/alert_commands.php:752 @@ -245,8 +267,8 @@ msgstr "" #: ../../godmode/reporting/graphs.php:363 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 #: ../../godmode/reporting/reporting_builder.main.php:140 #: ../../godmode/reporting/reporting_builder.php:885 #: ../../godmode/reporting/graph_builder.main.php:182 @@ -254,26 +276,26 @@ msgstr "" #: ../../godmode/events/event_responses.list.php:67 #: ../../godmode/servers/modificar_server.php:99 #: ../../godmode/servers/plugin.php:449 ../../godmode/servers/plugin.php:567 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/tag.php:303 -#: ../../godmode/tag/edit_tag.php:196 ../../mobile/operation/tactical.php:352 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/edit_tag.php:200 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:3663 -#: ../../include/functions_reporting_html.php:3711 -#: ../../include/functions_reporting_html.php:5491 -#: ../../include/functions_reporting_html.php:6371 +#: ../../include/functions_reporting_html.php:1617 +#: ../../include/functions_reporting_html.php:1773 +#: ../../include/functions_reporting_html.php:3691 +#: ../../include/functions_reporting_html.php:3739 +#: ../../include/functions_reporting_html.php:5519 +#: ../../include/functions_reporting_html.php:6405 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 -#: ../../include/ajax/heatmap.ajax.php:345 ../../include/ajax/module.php:1002 -#: ../../include/ajax/events.php:2668 ../../include/functions_treeview.php:126 -#: ../../include/functions_treeview.php:655 +#: ../../include/ajax/heatmap.ajax.php:288 +#: ../../include/ajax/heatmap.ajax.php:413 +#: ../../include/ajax/heatmap.ajax.php:473 ../../include/ajax/module.php:1025 +#: ../../include/ajax/events.php:2669 ../../include/functions_treeview.php:126 +#: ../../include/functions_treeview.php:659 #: ../../include/class/ConfigPEN.class.php:450 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:566 -#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ManageNetScanScripts.class.php:562 +#: ../../include/class/ManageNetScanScripts.class.php:611 #: ../../include/class/ModuleTemplates.class.php:849 #: ../../include/class/ModuleTemplates.class.php:1042 #: ../../include/class/ModuleTemplates.class.php:1186 @@ -281,13 +303,13 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:1284 #: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:816 #: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1884 +#: ../../include/functions_snmp_browser.php:1893 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 #: ../../operation/agentes/gis_view.php:222 -#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/estado_agente.php:1034 #: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 @@ -299,8 +321,7 @@ msgstr "" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:277 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:408 #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 -#: ../../operation/inventory/inventory.php:1004 -#: ../../operation/inventory/inventory.php:1298 +#: ../../operation/inventory/inventory.php:1250 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 #: ../../operation/reporting/graph_viewer.php:568 @@ -308,8 +329,8 @@ msgstr "" msgid "Description" msgstr "" -#: ../../views/consoles/list.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../views/consoles/list.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:80 #: ../../enterprise/meta/advanced/metasetup.consoles.php:927 #: ../../enterprise/godmode/servers/list_satellite.php:56 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -319,29 +340,29 @@ msgstr "" #: ../../godmode/extensions.php:160 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../include/functions_reporting_html.php:1628 -#: ../../include/functions_menu.php:953 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1637 +#: ../../include/functions_menu.php:958 #: ../../include/functions_snmp_browser.php:762 -#: ../../general/reporting_console_node.php:69 +#: ../../general/reporting_console_node.php:74 msgid "Version" msgstr "" -#: ../../views/consoles/list.php:71 +#: ../../views/consoles/list.php:72 msgid "Last Execution" msgstr "" -#: ../../views/consoles/list.php:72 +#: ../../views/consoles/list.php:73 msgid "Console type" msgstr "" -#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../views/consoles/list.php:74 ../../godmode/users/configure_user.php:1172 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "Timezone" msgstr "" -#: ../../views/consoles/list.php:74 +#: ../../views/consoles/list.php:75 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 #: ../../godmode/setup/setup_general.php:480 @@ -349,7 +370,7 @@ msgstr "" msgid "Public URL" msgstr "" -#: ../../views/consoles/list.php:76 ../../views/calendar/list.php:99 +#: ../../views/consoles/list.php:77 ../../views/calendar/list.php:99 #: ../../views/cluster/list.php:75 ../../views/dashboard/header.php:81 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 @@ -368,21 +389,22 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:606 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2376 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3013 -#: ../../godmode/menu.php:580 +#: ../../godmode/menu.php:578 #: ../../godmode/reporting/reporting_builder.list_items.php:429 -#: ../../include/ajax/events.php:2308 +#: ../../include/ajax/events.php:2309 #: ../../include/class/ConfigPEN.class.php:603 #: ../../include/class/EventSound.class.php:308 #: ../../include/class/CredentialStore.class.php:819 #: ../../include/class/ExternalTools.class.php:412 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2386 +#: ../../operation/agentes/pandora_networkmap.view.php:2387 +#: ../../operation/events/sound_events.php:185 msgid "Options" msgstr "" -#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/consoles/list.php:114 ../../views/consoles/list.php:124 #: ../../views/dashboard/list.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../enterprise/meta/advanced/servers.build_table.php:185 #: ../../enterprise/meta/advanced/metasetup.visual.php:454 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:688 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:719 @@ -406,15 +428,16 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:805 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:887 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:200 #: ../../enterprise/godmode/agentes/plugins_manager.php:216 #: ../../enterprise/godmode/agentes/plugins_manager.php:302 #: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_modules.php:1666 -#: ../../enterprise/godmode/policies/policy_modules.php:1715 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -#: ../../enterprise/godmode/policies/policy_queue.php:715 -#: ../../enterprise/godmode/policies/policy_queue.php:762 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../enterprise/godmode/policies/policy_modules.php:1760 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:717 +#: ../../enterprise/godmode/policies/policy_queue.php:766 #: ../../enterprise/godmode/policies/policies.php:662 #: ../../enterprise/godmode/policies/policy_external_alerts.php:600 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 @@ -422,7 +445,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:1534 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:434 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:239 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:149 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:151 #: ../../enterprise/godmode/setup/setup_acl.php:734 #: ../../enterprise/godmode/reporting/graph_template_list.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 @@ -450,8 +473,8 @@ msgstr "" #: ../../enterprise/include/class/AgentRepository.class.php:912 #: ../../enterprise/include/class/Omnishell.class.php:1398 #: ../../enterprise/include/class/Omnishell.class.php:1533 -#: ../../enterprise/include/class/LogSource.class.php:751 -#: ../../enterprise/include/class/LogSource.class.php:873 +#: ../../enterprise/include/class/LogSource.class.php:748 +#: ../../enterprise/include/class/LogSource.class.php:870 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 @@ -470,27 +493,27 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:363 #: ../../godmode/modules/manage_inventory_modules.php:342 #: ../../godmode/modules/manage_inventory_modules.php:385 -#: ../../godmode/modules/manage_network_components.php:857 -#: ../../godmode/modules/manage_network_components.php:906 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/modules/manage_network_components.php:909 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:971 -#: ../../godmode/groups/group_list.php:972 +#: ../../godmode/groups/group_list.php:983 +#: ../../godmode/groups/group_list.php:984 #: ../../godmode/groups/modu_group_list.php:263 #: ../../godmode/extensions.php:282 ../../godmode/extensions.php:290 #: ../../godmode/extensions.php:300 ../../godmode/extensions.php:308 #: ../../godmode/users/profile_list.php:457 -#: ../../godmode/users/user_list.php:982 +#: ../../godmode/users/user_list.php:983 #: ../../godmode/agentes/agent_template.php:297 #: ../../godmode/agentes/module_manager_editor.php:802 -#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/inventory_manager.php:263 #: ../../godmode/agentes/planned_downtime.list.php:748 #: ../../godmode/agentes/planned_downtime.list.php:904 #: ../../godmode/agentes/planned_downtime.editor.php:1419 #: ../../godmode/agentes/planned_downtime.editor.php:1459 #: ../../godmode/agentes/fields_manager.php:206 -#: ../../godmode/agentes/module_manager_editor_common.php:1538 -#: ../../godmode/agentes/module_manager.php:1000 +#: ../../godmode/agentes/module_manager_editor_common.php:1548 +#: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:203 ../../godmode/netflow/nf_edit.php:223 @@ -499,16 +522,16 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/alert_actions.php:356 #: ../../godmode/alerts/alert_actions.php:478 -#: ../../godmode/alerts/alert_list.list.php:1023 -#: ../../godmode/alerts/alert_templates.php:475 -#: ../../godmode/setup/news.php:354 ../../godmode/setup/gis.php:71 +#: ../../godmode/alerts/alert_list.list.php:1022 +#: ../../godmode/alerts/alert_templates.php:479 +#: ../../godmode/setup/news.php:358 ../../godmode/setup/gis.php:71 #: ../../godmode/setup/links.php:196 ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1873 -#: ../../godmode/setup/setup_visuals.php:1965 -#: ../../godmode/setup/setup_visuals.php:2040 -#: ../../godmode/reporting/reporting_builder.list_items.php:633 -#: ../../godmode/reporting/reporting_builder.list_items.php:677 -#: ../../godmode/reporting/reporting_builder.list_items.php:802 +#: ../../godmode/setup/setup_visuals.php:1888 +#: ../../godmode/setup/setup_visuals.php:1980 +#: ../../godmode/setup/setup_visuals.php:2055 +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +#: ../../godmode/reporting/reporting_builder.list_items.php:678 +#: ../../godmode/reporting/reporting_builder.list_items.php:803 #: ../../godmode/reporting/create_container.php:747 #: ../../godmode/reporting/create_container.php:802 #: ../../godmode/reporting/map_builder.php:421 @@ -518,39 +541,39 @@ msgstr "" #: ../../godmode/reporting/graphs.php:420 #: ../../godmode/reporting/graphs.php:450 #: ../../godmode/reporting/graphs.php:481 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/graph_builder.graph_editor.php:409 #: ../../godmode/reporting/visual_console_builder.elements.php:828 #: ../../godmode/reporting/reporting_builder.php:1209 #: ../../godmode/reporting/reporting_builder.php:1298 #: ../../godmode/events/event_filter.php:200 #: ../../godmode/events/event_filter.php:242 #: ../../godmode/events/event_responses.list.php:90 -#: ../../godmode/servers/servers.build_table.php:273 -#: ../../godmode/servers/plugin.php:1067 +#: ../../godmode/servers/servers.build_table.php:286 +#: ../../godmode/servers/plugin.php:1059 #: ../../godmode/category/category.php:190 #: ../../godmode/category/category.php:227 ../../include/functions_cron.php:931 #: ../../include/functions_cron.php:958 #: ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2949 #: ../../include/class/ManageNetScanScripts.class.php:405 #: ../../include/class/CredentialStore.class.php:1267 -#: ../../include/class/CredentialStore.class.php:1695 +#: ../../include/class/CredentialStore.class.php:1704 #: ../../include/class/SnmpConsole.class.php:466 #: ../../include/class/SnmpConsole.class.php:518 -#: ../../include/class/SnmpConsole.class.php:868 -#: ../../include/class/SnmpConsole.class.php:880 -#: ../../include/class/TipsWindow.class.php:458 +#: ../../include/class/SnmpConsole.class.php:870 +#: ../../include/class/SnmpConsole.class.php:882 +#: ../../include/class/TipsWindow.class.php:470 #: ../../include/class/ModuleTemplates.class.php:894 #: ../../include/class/ModuleTemplates.class.php:1187 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 #: ../../include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../operation/visual_console/view.php:863 -#: ../../operation/agentes/pandora_networkmap.php:824 -#: ../../operation/agentes/status_monitor.php:2264 +#: ../../operation/visual_console/view.php:865 +#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/status_monitor.php:2266 #: ../../operation/messages/message_list.php:197 #: ../../operation/messages/message_list.php:296 #: ../../operation/messages/message_list.php:332 @@ -562,13 +585,13 @@ msgstr "" msgid "Delete" msgstr "" -#: ../../views/consoles/list.php:121 +#: ../../views/consoles/list.php:122 msgid "" "Are you sure?

WARNING: you also need to delete config." "php options in your console or delete the whole console." msgstr "" -#: ../../views/consoles/list.php:127 +#: ../../views/consoles/list.php:128 #: ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 @@ -596,23 +619,23 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1824 #: ../../enterprise/include/class/AgentRepository.class.php:903 #: ../../enterprise/include/class/AgentRepository.class.php:1001 -#: ../../enterprise/include/class/LogSource.class.php:824 -#: ../../enterprise/include/class/LogSource.class.php:877 +#: ../../enterprise/include/class/LogSource.class.php:821 +#: ../../enterprise/include/class/LogSource.class.php:874 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114 #: ../../enterprise/include/class/ManageBackups.class.php:455 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:926 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:949 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:254 +#: ../../update_manager_client/views/register.php:86 +#: ../../godmode/agentes/status_monitor_custom_fields.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:2226 #: ../../godmode/snmpconsole/snmp_alert.php:2241 #: ../../godmode/massive/massive_operations.php:416 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/events/custom_events.php:234 -#: ../../include/functions_visual_map_editor.php:878 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/functions_register.php:179 #: ../../include/class/ConfigPEN.class.php:675 #: ../../include/class/ConfigPEN.class.php:699 @@ -621,24 +644,25 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1199 #: ../../include/class/SatelliteAgent.class.php:1261 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2951 -#: ../../include/class/CredentialStore.class.php:1647 -#: ../../include/class/CredentialStore.class.php:1699 -#: ../../include/class/ModuleTemplates.class.php:1360 +#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/CredentialStore.class.php:1656 +#: ../../include/class/CredentialStore.class.php:1708 +#: ../../include/class/ModuleTemplates.class.php:1364 #: ../../include/class/WelcomeWindow.class.php:174 #: ../../include/class/SatelliteCollection.class.php:536 #: ../../include/class/SatelliteCollection.class.php:579 -#: ../../include/class/AgentWizard.class.php:6234 +#: ../../include/class/AgentWizard.class.php:6230 #: ../../operation/agentes/pandora_networkmap.editor.php:746 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:545 -#: ../../operation/snmpconsole/snmp_browser.php:625 -#: ../../operation/snmpconsole/snmp_browser.php:640 +#: ../../operation/snmpconsole/snmp_browser.php:179 +#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:623 +#: ../../operation/snmpconsole/snmp_browser.php:684 +#: ../../operation/snmpconsole/snmp_browser.php:699 #: ../../general/header.php:834 msgid "Cancel" msgstr "" -#: ../../views/consoles/list.php:164 +#: ../../views/consoles/list.php:165 #: ../../enterprise/godmode/services/services.elements.php:956 #: ../../enterprise/godmode/services/services.elements.php:967 #: ../../enterprise/godmode/setup/setup.php:595 @@ -648,7 +672,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1647 #: ../../enterprise/include/class/AgentRepository.class.php:944 #: ../../enterprise/include/class/Omnishell.class.php:1306 -#: ../../enterprise/include/class/LogSource.class.php:767 +#: ../../enterprise/include/class/LogSource.class.php:764 #: ../../enterprise/include/class/ManageBackups.class.php:482 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1079 #: ../../include/ajax/snmp_browser.ajax.php:260 @@ -656,17 +680,18 @@ msgstr "" #: ../../include/class/ConfigPEN.class.php:743 #: ../../include/class/SatelliteAgent.class.php:1046 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2115 -#: ../../include/class/CredentialStore.class.php:1590 -#: ../../include/class/ModuleTemplates.class.php:1395 +#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/CredentialStore.class.php:1599 +#: ../../include/class/ModuleTemplates.class.php:1399 +#: ../../include/class/AgentDeployWizard.class.php:604 #: ../../include/class/SatelliteCollection.class.php:616 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6027 -#: ../../operation/visual_console/view.php:937 +#: ../../include/class/AgentWizard.class.php:6023 +#: ../../operation/visual_console/view.php:939 msgid "Success" msgstr "" -#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 #: ../../enterprise/include/functions_HA_cluster.php:542 #: ../../enterprise/include/functions_HA_cluster.php:547 @@ -676,8 +701,8 @@ msgstr "" #: ../../enterprise/include/class/AgentRepository.class.php:951 #: ../../enterprise/include/class/AgentRepository.class.php:956 #: ../../enterprise/include/class/Omnishell.class.php:1302 -#: ../../enterprise/include/class/LogSource.class.php:774 -#: ../../enterprise/include/class/LogSource.class.php:779 +#: ../../enterprise/include/class/LogSource.class.php:771 +#: ../../enterprise/include/class/LogSource.class.php:776 #: ../../enterprise/include/class/ManageBackups.class.php:493 #: ../../enterprise/include/class/ManageBackups.class.php:498 #: ../../enterprise/include/functions_ux_console.php:483 @@ -691,19 +716,21 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1055 #: ../../include/class/SatelliteAgent.class.php:1060 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2114 -#: ../../include/class/CredentialStore.class.php:1597 -#: ../../include/class/CredentialStore.class.php:1602 -#: ../../include/class/ModuleTemplates.class.php:1402 -#: ../../include/class/ModuleTemplates.class.php:1407 +#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/CredentialStore.class.php:1606 +#: ../../include/class/CredentialStore.class.php:1611 +#: ../../include/class/ModuleTemplates.class.php:1406 +#: ../../include/class/ModuleTemplates.class.php:1411 +#: ../../include/class/AgentDeployWizard.class.php:611 +#: ../../include/class/AgentDeployWizard.class.php:616 #: ../../include/class/SatelliteCollection.class.php:626 #: ../../include/class/SatelliteCollection.class.php:631 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6034 -#: ../../include/class/AgentWizard.class.php:6039 -#: ../../operation/visual_console/view.php:944 -#: ../../operation/visual_console/view.php:949 +#: ../../include/class/AgentWizard.class.php:6030 +#: ../../include/class/AgentWizard.class.php:6035 +#: ../../operation/visual_console/view.php:946 +#: ../../operation/visual_console/view.php:951 msgid "Failed" msgstr "" @@ -730,22 +757,22 @@ msgstr "" #: ../../enterprise/include/functions_policies.php:3734 #: ../../enterprise/operation/agentes/tag_view.php:702 #: ../../enterprise/operation/services/massive/services.create.php:897 -#: ../../godmode/groups/configure_group.php:224 -#: ../../godmode/groups/group_list.php:880 +#: ../../godmode/groups/configure_group.php:243 +#: ../../godmode/groups/group_list.php:881 #: ../../godmode/groups/tactical.php:181 #: ../../godmode/agentes/configurar_agente.php:441 #: ../../godmode/agentes/configurar_agente.php:745 -#: ../../godmode/agentes/modificar_agente.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265 +#: ../../godmode/agentes/modificar_agente.php:841 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:58 #: ../../godmode/alerts/alert_actions.php:70 #: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:126 -#: ../../godmode/alerts/alert_templates.php:135 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:129 +#: ../../godmode/alerts/alert_templates.php:138 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 #: ../../godmode/alerts/configure_alert_action.php:72 #: ../../godmode/alerts/configure_alert_action.php:92 #: ../../godmode/alerts/configure_alert_template.php:95 @@ -755,21 +782,21 @@ msgstr "" #: ../../godmode/alerts/alert_list.php:504 #: ../../godmode/alerts/alert_list.php:523 #: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:407 -#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:355 +#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:408 +#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:358 #: ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:5671 -#: ../../include/functions_treeview.php:392 +#: ../../include/functions_reporting_html.php:2615 +#: ../../include/functions_reporting_html.php:5699 +#: ../../include/functions_treeview.php:396 #: ../../include/functions_reports.php:855 #: ../../include/functions_reports.php:859 #: ../../include/functions_reports.php:865 #: ../../include/functions_reports.php:871 #: ../../include/class/AgentsAlerts.class.php:567 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:1052 +#: ../../operation/agentes/estado_agente.php:1060 #: ../../operation/agentes/ver_agente.php:1436 -#: ../../operation/agentes/ver_agente.php:1848 +#: ../../operation/agentes/ver_agente.php:1844 msgid "Alerts" msgstr "" @@ -793,7 +820,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:68 #: ../../enterprise/godmode/policies/configure_policy.php:85 #: ../../enterprise/godmode/policies/policy_modules.php:481 -#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:268 #: ../../enterprise/godmode/policies/policy_linking.php:120 #: ../../enterprise/godmode/policies/policy_external_alerts.php:322 @@ -813,11 +840,11 @@ msgstr "" #: ../../extensions/resource_registration.php:1105 #: ../../godmode/modules/manage_nc_groups.php:315 #: ../../godmode/modules/manage_inventory_modules.php:67 -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:315 #: ../../godmode/groups/group_list.php:393 #: ../../godmode/groups/modu_group_list.php:95 #: ../../godmode/users/profile_list.php:117 -#: ../../godmode/users/user_list.php:537 +#: ../../godmode/users/user_list.php:538 #: ../../godmode/agentes/modificar_agente.php:118 #: ../../godmode/massive/massive_operations.php:433 #: ../../godmode/massive/massive_edit_users.php:47 @@ -826,7 +853,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_command.php:194 #: ../../godmode/alerts/alert_actions.php:218 #: ../../godmode/alerts/alert_commands.php:730 -#: ../../godmode/alerts/alert_templates.php:266 +#: ../../godmode/alerts/alert_templates.php:270 #: ../../godmode/alerts/configure_alert_action.php:125 #: ../../godmode/alerts/configure_alert_template.php:429 #: ../../godmode/setup/os.list.php:49 @@ -847,7 +874,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:70 #: ../../enterprise/godmode/policies/configure_policy.php:87 #: ../../enterprise/godmode/policies/policy_modules.php:483 -#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:215 #: ../../enterprise/godmode/policies/policies.php:270 #: ../../enterprise/godmode/policies/policy_linking.php:122 #: ../../enterprise/godmode/policies/policy_external_alerts.php:324 @@ -865,11 +892,11 @@ msgstr "" #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:317 #: ../../godmode/modules/manage_inventory_modules.php:69 -#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/modules/manage_network_components.php:317 #: ../../godmode/groups/group_list.php:395 #: ../../godmode/groups/modu_group_list.php:97 #: ../../godmode/users/profile_list.php:119 -#: ../../godmode/users/user_list.php:539 +#: ../../godmode/users/user_list.php:540 #: ../../godmode/agentes/modificar_agente.php:120 #: ../../godmode/massive/massive_operations.php:435 #: ../../godmode/massive/massive_edit_users.php:49 @@ -878,7 +905,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_command.php:196 #: ../../godmode/alerts/alert_actions.php:220 #: ../../godmode/alerts/alert_commands.php:732 -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:272 #: ../../godmode/alerts/configure_alert_action.php:127 #: ../../godmode/alerts/configure_alert_template.php:431 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 @@ -904,7 +931,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:778 #: ../../extensions/api_checker.php:286 #: ../../godmode/modules/module_list.php:97 -#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 #: ../../godmode/groups/modu_group_list.php:260 #: ../../godmode/agentes/fields_manager.php:152 #: ../../godmode/agentes/agent_manager.php:364 @@ -932,7 +959,7 @@ msgstr "" #: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:77 #: ../../enterprise/meta/advanced/collections.data.php:350 #: ../../enterprise/meta/include/functions_autoprovision.php:495 #: ../../enterprise/meta/include/functions_autoprovision.php:603 @@ -955,7 +982,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 #: ../../enterprise/godmode/policies/policies.php:437 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 #: ../../enterprise/godmode/policies/policy_collections.php:240 @@ -1018,25 +1045,25 @@ msgstr "" #: ../../godmode/modules/manage_inventory_modules_form.php:115 #: ../../godmode/modules/module_list.php:99 #: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/groups/group_list.php:876 +#: ../../godmode/groups/configure_group.php:142 +#: ../../godmode/groups/group_list.php:877 #: ../../godmode/groups/configure_modu_group.php:82 #: ../../godmode/groups/modu_group_list.php:261 -#: ../../godmode/users/user_list.php:574 +#: ../../godmode/users/user_list.php:575 #: ../../godmode/agentes/inventory_manager.php:233 #: ../../godmode/agentes/planned_downtime.editor.php:882 #: ../../godmode/agentes/planned_downtime.editor.php:1356 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128 #: ../../godmode/agentes/configure_field.php:115 #: ../../godmode/agentes/module_manager_editor_common.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:1430 +#: ../../godmode/agentes/module_manager_editor_common.php:1440 #: ../../godmode/agentes/module_manager.php:605 #: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit_form.php:242 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 -#: ../../godmode/alerts/alert_templates.php:409 +#: ../../godmode/alerts/alert_templates.php:413 #: ../../godmode/alerts/configure_alert_action.php:183 #: ../../godmode/alerts/configure_alert_template.php:1080 #: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 @@ -1046,44 +1073,49 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:151 #: ../../godmode/reporting/create_container.php:247 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1087 #: ../../godmode/reporting/reporting_builder.main.php:91 #: ../../godmode/reporting/reporting_builder.main.php:95 #: ../../godmode/reporting/graph_builder.main.php:128 #: ../../godmode/events/event_filter.php:144 #: ../../godmode/events/event_responses.editor.php:97 #: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:91 -#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992 -#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190 +#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984 +#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194 #: ../../godmode/category/edit_category.php:189 +#: ../../mobile/operation/module_data.php:264 +#: ../../mobile/operation/server_status.php:283 +#: ../../mobile/operation/server_status.php:321 +#: ../../mobile/operation/server_status.php:351 +#: ../../mobile/operation/server_status.php:447 #: ../../include/functions_reporting_html.php:1058 #: ../../include/functions_reporting_html.php:1066 -#: ../../include/functions_reporting_html.php:1760 -#: ../../include/functions_reporting_html.php:2643 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3709 -#: ../../include/functions_reporting_html.php:6370 +#: ../../include/functions_reporting_html.php:1769 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:3021 +#: ../../include/functions_reporting_html.php:3737 +#: ../../include/functions_reporting_html.php:6404 #: ../../include/functions_treeview.php:69 #: ../../include/class/EventSound.class.php:306 -#: ../../include/class/NetworkMap.class.php:3063 -#: ../../include/class/NetworkMap.class.php:3109 -#: ../../include/class/NetworkMap.class.php:3121 -#: ../../include/class/NetworkMap.class.php:3491 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3115 +#: ../../include/class/NetworkMap.class.php:3127 +#: ../../include/class/NetworkMap.class.php:3497 #: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../include/class/ManageNetScanScripts.class.php:549 #: ../../include/class/ModuleTemplates.class.php:848 #: ../../include/class/ModuleTemplates.class.php:1030 #: ../../include/class/CalendarManager.class.php:1026 #: ../../include/class/SatelliteCollection.class.php:132 -#: ../../include/functions_filemanager.php:644 -#: ../../include/functions_snmp_browser.php:1851 -#: ../../include/functions_events.php:4339 -#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44 +#: ../../include/functions_filemanager.php:659 +#: ../../include/functions_snmp_browser.php:1860 +#: ../../include/functions_events.php:4344 +#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:332 -#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.php:717 #: ../../operation/agentes/pandora_networkmap.view.php:137 #: ../../operation/gis_maps/gis_map.php:115 #: ../../operation/incidents/configure_integriaims_incident.php:232 @@ -1151,7 +1183,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/DB2.app.php:477 #: ../../enterprise/include/class/Aws.S3.php:441 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:566 #: ../../enterprise/include/class/Aws.cloud.php:1252 #: ../../enterprise/include/class/MySQL.app.php:482 @@ -1167,31 +1199,31 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:698 #: ../../enterprise/operation/agentes/ver_agente.php:70 #: ../../enterprise/operation/agentes/ver_agente.php:91 -#: ../../enterprise/operation/log/log_viewer.php:616 +#: ../../enterprise/operation/log/log_viewer.php:614 #: ../../enterprise/operation/services/services.service.php:112 #: ../../enterprise/operation/services/massive/services.create.php:678 #: ../../enterprise/operation/services/services.list.php:268 #: ../../enterprise/operation/services/services.list.php:540 #: ../../enterprise/operation/services/services.table_services.php:218 #: ../../enterprise/tools/ipam/ipam_editor.php:335 -#: ../../extensions/agents_modules.php:419 +#: ../../extensions/agents_modules.php:427 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:659 -#: ../../godmode/modules/manage_network_components.php:778 -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/modules/manage_network_components.php:662 +#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/users/user_list.php:470 #: ../../godmode/agentes/configurar_agente.php:518 #: ../../godmode/agentes/modificar_agente.php:314 -#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../godmode/agentes/modificar_agente.php:707 #: ../../godmode/agentes/planned_downtime.list.php:735 #: ../../godmode/agentes/planned_downtime.editor.php:895 #: ../../godmode/agentes/planned_downtime.editor.php:1357 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:211 +#: ../../godmode/netflow/nf_edit_form.php:256 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1201,7 +1233,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 #: ../../godmode/massive/massive_enable_disable_alerts.php:170 -#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:711 #: ../../godmode/massive/massive_delete_profiles.php:153 #: ../../godmode/massive/massive_delete_alerts.php:290 #: ../../godmode/massive/massive_add_action_alerts.php:198 @@ -1211,10 +1243,10 @@ msgstr "" #: ../../godmode/alerts/alert_actions.php:353 #: ../../godmode/alerts/alert_list.list.php:220 #: ../../godmode/alerts/alert_commands.php:751 -#: ../../godmode/alerts/alert_templates.php:410 +#: ../../godmode/alerts/alert_templates.php:414 #: ../../godmode/alerts/configure_alert_action.php:220 #: ../../godmode/alerts/configure_alert_template.php:1116 -#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70 #: ../../godmode/setup/gis_step_2.php:237 #: ../../godmode/setup/setup_integria.php:426 #: ../../godmode/setup/setup_integria.php:560 @@ -1230,10 +1262,10 @@ msgstr "" #: ../../godmode/reporting/visual_console_favorite.php:182 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:893 #: ../../godmode/reporting/reporting_builder.item_editor.php:1641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:343 #: ../../godmode/reporting/reporting_builder.main.php:119 @@ -1243,13 +1275,13 @@ msgstr "" #: ../../godmode/reporting/graph_builder.main.php:176 #: ../../godmode/events/event_filter.php:145 #: ../../godmode/events/event_responses.editor.php:120 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:336 #: ../../godmode/events/event_responses.list.php:68 #: ../../godmode/events/custom_events.php:98 -#: ../../godmode/wizards/HostDevices.class.php:933 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../godmode/wizards/HostDevices.class.php:935 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171 #: ../../mobile/operation/modules.php:176 #: ../../mobile/operation/modules.php:266 #: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 @@ -1257,30 +1289,32 @@ msgstr "" #: ../../mobile/operation/alerts.php:232 #: ../../mobile/operation/visualmaps.php:113 #: ../../mobile/operation/visualmaps.php:118 -#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 -#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 -#: ../../mobile/operation/events.php:955 +#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700 +#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998 +#: ../../mobile/operation/events.php:999 +#: ../../mobile/operation/server_status.php:162 +#: ../../mobile/operation/server_status.php:167 #: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:2355 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:6458 -#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113 -#: ../../include/ajax/heatmap.ajax.php:358 +#: ../../include/functions_visual_map_editor.php:588 +#: ../../include/functions_visual_map_editor.php:1453 +#: ../../include/functions_reporting_html.php:1613 +#: ../../include/functions_reporting_html.php:2376 +#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:6492 +#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142 +#: ../../include/ajax/heatmap.ajax.php:523 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:204 -#: ../../include/functions_visual_map.php:4215 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2140 -#: ../../include/functions_html.php:1561 +#: ../../include/functions_visual_map.php:4224 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../include/functions_html.php:1566 #: ../../include/functions_massive_operations.php:124 -#: ../../include/class/NetworkMap.class.php:2985 -#: ../../include/class/NetworkMap.class.php:3046 -#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3418 #: ../../include/class/AgentsAlerts.class.php:774 #: ../../include/class/CredentialStore.class.php:814 #: ../../include/class/CredentialStore.class.php:846 @@ -1288,39 +1322,39 @@ msgstr "" #: ../../include/class/CustomNetScan.class.php:506 #: ../../include/class/ModuleTemplates.class.php:728 #: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/class/AgentDeployWizard.class.php:342 #: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:826 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 #: ../../include/lib/Group.php:566 -#: ../../include/functions_snmp_browser.php:1863 +#: ../../include/functions_snmp_browser.php:1872 #: ../../include/functions_events.php:203 #: ../../include/functions_events.php:256 -#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122 +#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122 #: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996 +#: ../../operation/visual_console/view.php:373 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/estado_agente.php:1039 +#: ../../operation/agentes/estado_agente.php:1047 #: ../../operation/agentes/pandora_networkmap.editor.php:344 #: ../../operation/agentes/pandora_networkmap.editor.php:428 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:328 -#: ../../operation/agentes/status_monitor.php:816 -#: ../../operation/agentes/group_view.php:240 +#: ../../operation/agentes/status_monitor.php:815 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:176 #: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:492 +#: ../../operation/agentes/estado_generalagente.php:463 #: ../../operation/agentes/alerts_status.functions.php:73 #: ../../operation/gis_maps/gis_map.php:116 #: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 #: ../../operation/incidents/configure_integriaims_incident.php:269 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340 #: ../../operation/incidents/list_integriaims_incidents.php:347 -#: ../../operation/inventory/inventory.php:510 -#: ../../operation/inventory/inventory.php:1002 -#: ../../operation/inventory/inventory.php:1296 -#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:512 +#: ../../operation/inventory/inventory.php:1248 +#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "" @@ -1335,7 +1369,7 @@ msgstr "" #: ../../enterprise/views/ipam/sites/list.php:73 #: ../../enterprise/meta/advanced/metasetup.consoles.php:965 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 #: ../../enterprise/include/class/LogSource.class.php:634 @@ -1346,17 +1380,17 @@ msgstr "" #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/agentes/modificar_agente.php:381 #: ../../godmode/snmpconsole/snmp_alert.php:1742 -#: ../../godmode/events/event_edit_filter.php:409 -#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 -#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 -#: ../../include/ajax/module.php:312 +#: ../../godmode/events/event_edit_filter.php:411 +#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036 +#: ../../include/ajax/module.php:335 #: ../../include/class/ConfigPEN.class.php:630 #: ../../include/class/EventSound.class.php:337 #: ../../include/class/CredentialStore.class.php:858 #: ../../include/class/SnmpConsole.class.php:374 #: ../../include/class/AuditLog.class.php:197 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 -#: ../../operation/events/events.php:1820 +#: ../../operation/events/events.php:1874 msgid "Free search" msgstr "" @@ -1408,8 +1442,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.php:593 #: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policy_modules.php:1746 -#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policy_modules.php:1791 +#: ../../enterprise/godmode/policies/policy_modules.php:1916 #: ../../enterprise/godmode/policies/policies.php:728 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 @@ -1434,50 +1468,50 @@ msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:344 #: ../../godmode/modules/manage_inventory_modules.php:374 -#: ../../godmode/modules/manage_network_components_form.php:379 -#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_network_components_form.php:382 +#: ../../godmode/modules/manage_network_components.php:899 #: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_group.php:296 #: ../../godmode/groups/configure_modu_group.php:102 -#: ../../godmode/users/configure_user.php:1665 +#: ../../godmode/users/configure_user.php:1717 #: ../../godmode/agentes/module_manager_editor.php:817 #: ../../godmode/agentes/planned_downtime.list.php:680 #: ../../godmode/agentes/planned_downtime.list.php:989 -#: ../../godmode/agentes/agent_manager.php:1081 +#: ../../godmode/agentes/agent_manager.php:1087 #: ../../godmode/agentes/configure_field.php:203 -#: ../../godmode/agentes/module_manager.php:1119 -#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../godmode/agentes/module_manager.php:1134 +#: ../../godmode/netflow/nf_edit_form.php:454 #: ../../godmode/snmpconsole/snmp_alert.php:1711 #: ../../godmode/snmpconsole/snmp_alert.php:2177 #: ../../godmode/snmpconsole/snmp_filters.php:275 #: ../../godmode/snmpconsole/snmp_filters.php:366 #: ../../godmode/alerts/configure_alert_command.php:395 #: ../../godmode/alerts/alert_actions.php:502 -#: ../../godmode/alerts/alert_list.list.php:1096 +#: ../../godmode/alerts/alert_list.list.php:1095 #: ../../godmode/alerts/alert_commands.php:839 -#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/alert_templates.php:518 #: ../../godmode/alerts/configure_alert_action.php:446 -#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325 #: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165 #: ../../godmode/reporting/create_container.php:383 #: ../../godmode/reporting/map_builder.php:586 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339 #: ../../godmode/reporting/reporting_builder.main.php:45 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:328 -#: ../../godmode/events/event_edit_filter.php:957 -#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258 +#: ../../godmode/events/event_edit_filter.php:959 +#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262 #: ../../godmode/category/edit_category.php:201 -#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/functions_visual_map_editor.php:930 #: ../../include/class/EventSound.class.php:199 #: ../../include/class/EventSound.class.php:282 -#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ManageNetScanScripts.class.php:765 #: ../../include/class/ModuleTemplates.class.php:933 #: ../../include/class/ModuleTemplates.class.php:987 -#: ../../include/functions_filemanager.php:859 -#: ../../include/functions_filemanager.php:920 +#: ../../include/functions_filemanager.php:878 +#: ../../include/functions_filemanager.php:940 #: ../../operation/gis_maps/gis_map.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:406 #: ../../operation/incidents/list_integriaims_incidents.php:654 @@ -1503,28 +1537,28 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2234 #: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 -#: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:2018 -#: ../../include/functions_reporting_html.php:2835 -#: ../../include/functions_reporting_html.php:2844 -#: ../../include/functions_reporting_html.php:2849 -#: ../../include/functions_reporting_html.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2209 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:2034 #: ../../include/functions_reporting_html.php:2863 -#: ../../include/functions_reporting_html.php:2870 -#: ../../include/functions_reporting_html.php:2920 -#: ../../include/functions_reporting_html.php:2994 -#: ../../include/functions_reporting_html.php:6014 -#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:2877 +#: ../../include/functions_reporting_html.php:2886 +#: ../../include/functions_reporting_html.php:2891 +#: ../../include/functions_reporting_html.php:2898 +#: ../../include/functions_reporting_html.php:2948 +#: ../../include/functions_reporting_html.php:3022 +#: ../../include/functions_reporting_html.php:6048 +#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175 #: ../../include/class/AuditLog.class.php:112 -#: ../../include/functions_reporting.php:4728 -#: ../../include/functions_reporting.php:4769 +#: ../../include/functions_reporting.php:4737 +#: ../../include/functions_reporting.php:4778 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 -#: ../../operation/agentes/agent_inventory.php:127 +#: ../../operation/agentes/agent_inventory.php:135 #: ../../operation/incidents/list_integriaims_incidents.php:441 -#: ../../operation/inventory/inventory.php:681 +#: ../../operation/inventory/inventory.php:682 #: ../../operation/reporting/graph_viewer.php:321 -#: ../../general/logon_ok.php:257 +#: ../../general/logon_ok.php:302 msgid "Date" msgstr "" @@ -1540,7 +1574,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4403 #: ../../godmode/alerts/alert_templates.php:62 #: ../../godmode/reporting/reporting_builder.item_editor.php:1530 -#: ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2315 msgid "Monday" msgstr "" @@ -1556,7 +1590,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4404 #: ../../godmode/alerts/alert_templates.php:63 #: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../include/functions_html.php:2301 +#: ../../include/functions_html.php:2316 msgid "Tuesday" msgstr "" @@ -1572,7 +1606,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4405 #: ../../godmode/alerts/alert_templates.php:64 #: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../include/functions_html.php:2302 +#: ../../include/functions_html.php:2317 msgid "Wednesday" msgstr "" @@ -1588,7 +1622,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4406 #: ../../godmode/alerts/alert_templates.php:65 #: ../../godmode/reporting/reporting_builder.item_editor.php:1554 -#: ../../include/functions_html.php:2303 +#: ../../include/functions_html.php:2318 msgid "Thursday" msgstr "" @@ -1604,7 +1638,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4407 #: ../../godmode/alerts/alert_templates.php:66 #: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../include/functions_html.php:2304 +#: ../../include/functions_html.php:2319 msgid "Friday" msgstr "" @@ -1620,7 +1654,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4408 #: ../../godmode/alerts/alert_templates.php:67 #: ../../godmode/reporting/reporting_builder.item_editor.php:1570 -#: ../../include/functions_html.php:2305 +#: ../../include/functions_html.php:2320 msgid "Saturday" msgstr "" @@ -1636,7 +1670,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4409 #: ../../godmode/alerts/alert_templates.php:68 #: ../../godmode/reporting/reporting_builder.item_editor.php:1578 -#: ../../include/functions_html.php:2299 +#: ../../include/functions_html.php:2314 msgid "Sunday" msgstr "" @@ -1708,7 +1742,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_collections.php:352 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 @@ -1743,7 +1777,7 @@ msgstr "" #: ../../enterprise/include/class/DatabaseHA.class.php:892 #: ../../enterprise/include/class/AgentRepository.class.php:1004 #: ../../enterprise/include/class/Omnishell.class.php:829 -#: ../../enterprise/include/class/LogSource.class.php:828 +#: ../../enterprise/include/class/LogSource.class.php:825 #: ../../enterprise/include/class/SAPView.class.php:325 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 @@ -1758,24 +1792,24 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_inventory_modules_form.php:245 -#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/groups/configure_group.php:287 #: ../../godmode/groups/configure_modu_group.php:99 #: ../../godmode/update_manager/update_manager.setup.php:406 #: ../../godmode/users/configure_profile.php:418 -#: ../../godmode/users/configure_user.php:1669 -#: ../../godmode/agentes/status_monitor_custom_fields.php:211 +#: ../../godmode/users/configure_user.php:1721 +#: ../../godmode/agentes/status_monitor_custom_fields.php:231 #: ../../godmode/agentes/module_manager_editor.php:795 #: ../../godmode/agentes/inventory_manager.php:184 -#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../godmode/agentes/inventory_manager.php:267 #: ../../godmode/agentes/agent_conf_gis.php:161 #: ../../godmode/agentes/planned_downtime.list.php:891 #: ../../godmode/agentes/planned_downtime.list.php:936 #: ../../godmode/agentes/planned_downtime.editor.php:1305 -#: ../../godmode/agentes/agent_manager.php:1056 +#: ../../godmode/agentes/agent_manager.php:1062 #: ../../godmode/agentes/configure_field.php:199 -#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/netflow/nf_edit_form.php:450 #: ../../godmode/snmpconsole/snmp_alert.php:1700 #: ../../godmode/snmpconsole/snmp_alert.php:2002 #: ../../godmode/snmpconsole/snmp_filters.php:264 @@ -1783,18 +1817,18 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_filters.php:337 #: ../../godmode/alerts/configure_alert_command.php:386 #: ../../godmode/alerts/alert_list.list.php:227 -#: ../../godmode/alerts/alert_list.list.php:1041 +#: ../../godmode/alerts/alert_list.list.php:1040 #: ../../godmode/alerts/configure_alert_action.php:424 -#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 +#: ../../godmode/setup/setup_websocket_engine.php:117 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 #: ../../godmode/setup/setup_auth.php:515 #: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168 #: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/setup_netflow.php:95 -#: ../../godmode/setup/setup_visuals.php:2130 -#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/setup_netflow.php:91 +#: ../../godmode/setup/setup_visuals.php:2145 +#: ../../godmode/setup/setup_general.php:867 #: ../../godmode/setup/performance.php:880 #: ../../godmode/reporting/visual_console_builder.data.php:313 #: ../../godmode/reporting/create_container.php:365 @@ -1802,24 +1836,24 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:298 #: ../../godmode/events/event_responses.editor.php:332 -#: ../../godmode/events/event_edit_filter.php:954 +#: ../../godmode/events/event_edit_filter.php:956 #: ../../godmode/events/custom_events.php:192 #: ../../godmode/servers/modificar_server.php:134 -#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721 -#: ../../godmode/tag/edit_tag.php:247 +#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713 +#: ../../godmode/tag/edit_tag.php:251 #: ../../godmode/category/edit_category.php:196 -#: ../../include/functions_visual_map_editor.php:878 +#: ../../include/functions_visual_map_editor.php:926 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 #: ../../include/class/ConfigPEN.class.php:704 -#: ../../include/class/ManageNetScanScripts.class.php:773 -#: ../../include/class/CredentialStore.class.php:1651 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/CredentialStore.class.php:1660 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 -#: ../../operation/users/user_edit.php:951 -#: ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3517 +#: ../../include/functions_events.php:3599 +#: ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/datos_agente.php:220 #: ../../operation/incidents/configure_integriaims_incident.php:415 #: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" @@ -1831,7 +1865,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420 #: ../../godmode/agentes/planned_downtime.list.php:819 #: ../../godmode/alerts/configure_alert_template.php:1600 -#: ../../include/class/AgentWizard.class.php:6186 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Loading, this operation might take several minutes..." msgstr "" @@ -1857,7 +1891,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 #: ../../extensions/extension_uploader.php:134 #: ../../extensions/resource_registration.php:1145 -#: ../../godmode/servers/plugin_registration.php:123 +#: ../../godmode/servers/plugin_registration.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "" @@ -1881,26 +1915,27 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/operation/agentes/policy_view.php:333 -#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/configure_user.php:58 +#: ../../godmode/users/configure_user.php:1166 #: ../../godmode/users/user_management.php:37 -#: ../../godmode/users/user_management.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/users/user_management.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:686 #: ../../godmode/massive/massive_edit_users.php:242 #: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/massive/massive_edit_agents.php:1051 #: ../../godmode/alerts/alert_list.list.php:702 #: ../../godmode/alerts/alert_view.php:58 #: ../../godmode/setup/gis_step_2.php:599 #: ../../godmode/setup/gis_step_2.php:685 -#: ../../godmode/setup/setup_visuals.php:402 -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../godmode/setup/setup_visuals.php:573 -#: ../../godmode/setup/setup_visuals.php:689 -#: ../../godmode/setup/setup_visuals.php:729 -#: ../../godmode/setup/setup_visuals.php:1543 -#: ../../godmode/events/event_edit_filter.php:463 -#: ../../include/functions_ui.php:1404 -#: ../../include/class/AgentsAlerts.class.php:947 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:437 +#: ../../godmode/setup/setup_visuals.php:577 +#: ../../godmode/setup/setup_visuals.php:693 +#: ../../godmode/setup/setup_visuals.php:733 +#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/events/event_edit_filter.php:465 +#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447 +#: ../../include/class/AgentsAlerts.class.php:948 #: ../../include/class/SnmpConsole.class.php:299 #: ../../operation/users/user_edit.php:429 #: ../../operation/users/user_edit.php:432 @@ -1915,7 +1950,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1059 #: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14913 +#: ../../include/functions_reporting.php:14986 msgid "Sun" msgstr "" @@ -1924,7 +1959,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1053 #: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14883 +#: ../../include/functions_reporting.php:14956 msgid "Mon" msgstr "" @@ -1933,7 +1968,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1054 #: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14888 +#: ../../include/functions_reporting.php:14961 msgid "Tue" msgstr "" @@ -1942,7 +1977,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1055 #: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14893 +#: ../../include/functions_reporting.php:14966 msgid "Wed" msgstr "" @@ -1951,7 +1986,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1056 #: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14898 +#: ../../include/functions_reporting.php:14971 msgid "Thu" msgstr "" @@ -1960,7 +1995,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1057 #: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14903 +#: ../../include/functions_reporting.php:14976 msgid "Fri" msgstr "" @@ -1969,7 +2004,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1058 #: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14908 +#: ../../include/functions_reporting.php:14981 msgid "Sat" msgstr "" @@ -2086,7 +2121,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.data.php:300 #: ../../enterprise/godmode/agentes/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.editor.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1944 +#: ../../enterprise/godmode/policies/policy_modules.php:1989 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383 @@ -2107,34 +2142,34 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:530 #: ../../extensions/files_repo/files_repo_list.php:139 -#: ../../godmode/groups/group_list.php:951 -#: ../../godmode/groups/group_list.php:952 +#: ../../godmode/groups/group_list.php:963 +#: ../../godmode/groups/group_list.php:964 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 -#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/modificar_agente.php:822 #: ../../godmode/agentes/planned_downtime.list.php:747 #: ../../godmode/agentes/planned_downtime.editor.php:1416 #: ../../godmode/agentes/fields_manager.php:191 #: ../../godmode/agentes/configure_field.php:83 #: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/reporting/reporting_builder.list_items.php:626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../godmode/reporting/reporting_builder.list_items.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2347 #: ../../godmode/reporting/reporting_builder.php:1164 #: ../../godmode/events/event_responses.list.php:105 -#: ../../godmode/servers/servers.build_table.php:237 -#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050 +#: ../../godmode/servers/servers.build_table.php:250 +#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042 #: ../../godmode/category/category.php:182 #: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 #: ../../include/functions_cron.php:944 -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 #: ../../include/class/CredentialStore.class.php:1263 -#: ../../include/class/TipsWindow.class.php:457 +#: ../../include/class/TipsWindow.class.php:469 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:465 -#: ../../operation/agentes/estado_agente.php:1262 -#: ../../operation/agentes/pandora_networkmap.php:815 -#: ../../operation/agentes/status_monitor.php:2248 +#: ../../operation/visual_console/view.php:467 +#: ../../operation/agentes/estado_agente.php:1271 +#: ../../operation/agentes/pandora_networkmap.php:816 +#: ../../operation/agentes/status_monitor.php:2250 #: ../../operation/gis_maps/gis_map.php:203 #: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 @@ -2151,12 +2186,12 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:743 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78 #: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1626 -#: ../../enterprise/godmode/policies/policy_modules.php:1642 -#: ../../enterprise/godmode/policies/policy_modules.php:1703 -#: ../../enterprise/godmode/policies/policy_queue.php:810 -#: ../../enterprise/godmode/policies/policy_queue.php:852 -#: ../../enterprise/godmode/policies/policy_queue.php:875 +#: ../../enterprise/godmode/policies/policy_modules.php:1671 +#: ../../enterprise/godmode/policies/policy_modules.php:1687 +#: ../../enterprise/godmode/policies/policy_modules.php:1748 +#: ../../enterprise/godmode/policies/policy_queue.php:814 +#: ../../enterprise/godmode/policies/policy_queue.php:856 +#: ../../enterprise/godmode/policies/policy_queue.php:879 #: ../../enterprise/godmode/policies/policies.php:633 #: ../../enterprise/godmode/policies/policies.php:652 #: ../../enterprise/godmode/policies/policies.php:687 @@ -2193,7 +2228,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:702 #: ../../enterprise/include/class/Omnishell.class.php:1390 #: ../../enterprise/include/class/Omnishell.class.php:1525 -#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/LogSource.class.php:868 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 #: ../../enterprise/include/class/ManageBackups.class.php:452 @@ -2207,28 +2242,30 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:844 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:975 #: ../../update_manager_client/views/offline.php:72 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 #: ../../extensions/files_repo/files_repo_list.php:149 #: ../../godmode/modules/manage_nc_groups.php:300 #: ../../godmode/modules/manage_inventory_modules.php:341 -#: ../../godmode/modules/manage_network_components.php:852 +#: ../../godmode/modules/manage_network_components.php:855 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:960 +#: ../../godmode/groups/group_list.php:972 #: ../../godmode/groups/modu_group_list.php:284 #: ../../godmode/groups/modu_group_list.php:287 #: ../../godmode/extensions.php:283 ../../godmode/extensions.php:301 #: ../../godmode/users/profile_list.php:452 -#: ../../godmode/users/configure_user.php:1935 -#: ../../godmode/users/configure_user.php:2171 +#: ../../godmode/users/user_list.php:984 +#: ../../godmode/users/configure_user.php:1987 +#: ../../godmode/users/configure_user.php:2223 #: ../../godmode/agentes/agent_template.php:298 -#: ../../godmode/agentes/inventory_manager.php:261 -#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../godmode/agentes/modificar_agente.php:953 #: ../../godmode/agentes/planned_downtime.editor.php:1453 #: ../../godmode/agentes/fields_manager.php:210 -#: ../../godmode/agentes/module_manager.php:1014 -#: ../../godmode/agentes/module_manager.php:1235 +#: ../../godmode/agentes/module_manager.php:1012 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/agentes/module_manager.php:1256 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 @@ -2240,11 +2277,11 @@ msgstr "" #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../godmode/alerts/alert_list.list.php:1255 #: ../../godmode/alerts/alert_commands.php:812 #: ../../godmode/alerts/alert_commands.php:815 -#: ../../godmode/alerts/alert_templates.php:465 -#: ../../godmode/setup/news.php:393 ../../godmode/setup/links.php:210 +#: ../../godmode/alerts/alert_templates.php:469 +#: ../../godmode/setup/news.php:392 ../../godmode/setup/links.php:210 #: ../../godmode/reporting/create_container.php:801 #: ../../godmode/reporting/map_builder.php:544 #: ../../godmode/reporting/map_builder.php:555 @@ -2259,7 +2296,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1019 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 +#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421 #: ../../godmode/category/category.php:186 #: ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 @@ -2268,25 +2305,26 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1193 #: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1693 +#: ../../include/class/CredentialStore.class.php:1702 #: ../../include/class/SnmpConsole.class.php:472 -#: ../../include/class/SnmpConsole.class.php:1266 -#: ../../include/class/SnmpConsole.class.php:1293 -#: ../../include/class/TipsWindow.class.php:618 +#: ../../include/class/SnmpConsole.class.php:1268 +#: ../../include/class/SnmpConsole.class.php:1295 +#: ../../include/class/TipsWindow.class.php:640 #: ../../include/class/ModuleTemplates.class.php:874 #: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 #: ../../include/class/SatelliteCollection.class.php:531 #: ../../include/class/SatelliteCollection.class.php:574 -#: ../../include/functions_filemanager.php:754 +#: ../../include/functions_filemanager.php:769 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3655 -#: ../../operation/users/user_edit.php:1345 +#: ../../include/functions_events.php:3660 +#: ../../operation/users/user_edit.php:1342 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/snmpconsole/snmp_browser.php:620 +#: ../../operation/snmpconsole/snmp_browser.php:696 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" @@ -2299,13 +2337,13 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418 #: ../../godmode/alerts/configure_alert_template.php:1598 -#: ../../godmode/events/event_edit_filter.php:681 -#: ../../godmode/events/event_edit_filter.php:746 -#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/event_edit_filter.php:748 +#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661 #: ../../include/rest-api/index.php:363 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546 -#: ../../operation/events/events.php:1284 -#: ../../operation/events/events.php:1356 +#: ../../operation/events/events.php:1311 +#: ../../operation/events/events.php:1401 msgid "Remove" msgstr "" @@ -2334,12 +2372,13 @@ msgstr "" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/operation/log/log_viewer.php:492 #: ../../enterprise/tools/ipam/ipam_editor.php:303 -#: ../../extensions/agents_modules.php:552 +#: ../../extensions/agents_modules.php:560 #: ../../extensions/module_groups.php:260 #: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 -#: ../../godmode/groups/tactical.php:126 +#: ../../godmode/groups/tactical.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:44 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 #: ../../include/class/AgentsAlerts.class.php:751 @@ -2348,17 +2387,17 @@ msgstr "" #: ../../operation/agentes/alerts_status.php:198 #: ../../operation/agentes/estado_agente.php:246 #: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/status_monitor.php:335 #: ../../operation/agentes/group_view.php:98 #: ../../operation/agentes/tactical.php:81 #: ../../operation/network/network_usage_map.php:48 -#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/nf_live_view.php:144 #: ../../operation/netflow/netflow_explorer.php:55 #: ../../operation/snmpconsole/snmp_statistics.php:100 -#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_browser.php:88 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 #: ../../operation/menu.php:159 ../../operation/menu.php:276 -#: ../../operation/inventory/inventory.php:310 +#: ../../operation/inventory/inventory.php:312 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "" @@ -2371,13 +2410,13 @@ msgid "Clusters" msgstr "" #: ../../views/cluster/list.php:72 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:79 #: ../../enterprise/meta/advanced/metasetup.relations.php:335 #: ../../enterprise/meta/advanced/metasetup.relations.php:413 #: ../../enterprise/meta/advanced/metasetup.relations.php:548 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 #: ../../enterprise/godmode/modules/configure_local_component.php:214 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 #: ../../enterprise/godmode/services/services.elements.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 @@ -2394,48 +2433,48 @@ msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../godmode/modules/manage_network_templates_form.php:232 #: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:779 #: ../../godmode/update_manager/update_manager.history.php:41 #: ../../godmode/agentes/agent_template.php:275 -#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../godmode/agentes/modificar_agente.php:706 #: ../../godmode/agentes/planned_downtime.list.php:736 #: ../../godmode/agentes/planned_downtime.editor.php:926 #: ../../godmode/agentes/module_manager_editor_common.php:293 -#: ../../godmode/agentes/module_manager_editor_common.php:1536 +#: ../../godmode/agentes/module_manager_editor_common.php:1546 #: ../../godmode/agentes/module_manager.php:630 #: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:307 -#: ../../godmode/alerts/alert_templates.php:412 -#: ../../godmode/setup/news.php:350 ../../godmode/setup/gis_step_2.php:256 +#: ../../godmode/alerts/alert_templates.php:311 +#: ../../godmode/alerts/alert_templates.php:416 +#: ../../godmode/setup/news.php:354 ../../godmode/setup/gis_step_2.php:256 #: ../../godmode/setup/setup_integria.php:479 #: ../../godmode/setup/setup_integria.php:613 #: ../../godmode/reporting/reporting_builder.list_items.php:245 #: ../../godmode/reporting/reporting_builder.list_items.php:374 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1055 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1057 #: ../../godmode/reporting/visual_console_builder.wizard.php:131 #: ../../godmode/reporting/visual_console_builder.wizard.php:315 #: ../../godmode/events/event_responses.editor.php:234 -#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/servers.build_table.php:81 #: ../../godmode/servers/modificar_server.php:105 -#: ../../godmode/servers/plugin.php:993 +#: ../../godmode/servers/plugin.php:985 #: ../../mobile/operation/visualmaps.php:125 #: ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:700 -#: ../../include/functions_visual_map_editor.php:718 -#: ../../include/functions_visual_map_editor.php:846 +#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688 +#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016 +#: ../../mobile/operation/events.php:1017 +#: ../../include/functions_visual_map_editor.php:750 +#: ../../include/functions_visual_map_editor.php:768 +#: ../../include/functions_visual_map_editor.php:894 #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1306 #: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:2638 -#: ../../include/functions_reporting_html.php:5490 -#: ../../include/ajax/heatmap.ajax.php:77 +#: ../../include/functions_reporting_html.php:2657 +#: ../../include/functions_reporting_html.php:5518 +#: ../../include/ajax/heatmap.ajax.php:96 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 #: ../../include/functions_reports.php:1086 -#: ../../include/functions_html.php:5952 +#: ../../include/functions_html.php:5976 #: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 @@ -2448,27 +2487,27 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 -#: ../../operation/agentes/estado_agente.php:1043 +#: ../../include/functions_events.php:4963 +#: ../../operation/agentes/estado_agente.php:1051 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/netflow/nf_live_view.php:568 #: ../../operation/incidents/configure_integriaims_incident.php:251 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 -#: ../../operation/search_modules.php:34 +#: ../../operation/search_modules.php:37 #: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "" #: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions_reporting_html.php:5953 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 -#: ../../operation/agentes/pandora_networkmap.php:717 +#: ../../operation/agentes/pandora_networkmap.php:718 msgid "Nodes" msgstr "" #: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/servers.build_table.php:78 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 @@ -2479,8 +2518,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:164 #: ../../enterprise/godmode/agentes/collection_manager.php:264 #: ../../enterprise/godmode/policies/policy_alerts.php:368 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 -#: ../../enterprise/godmode/policies/policy_queue.php:335 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_queue.php:337 #: ../../enterprise/godmode/policies/policies.php:436 #: ../../enterprise/godmode/policies/policy_collections.php:243 #: ../../enterprise/godmode/policies/policy_collections.php:324 @@ -2516,15 +2555,15 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:183 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490 #: ../../godmode/groups/tactical.php:180 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:166 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager.php:645 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 #: ../../godmode/massive/massive_edit_users.php:501 -#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/massive/massive_edit_agents.php:943 #: ../../godmode/alerts/alert_list.list.php:174 #: ../../godmode/alerts/alert_list.list.php:569 #: ../../godmode/alerts/alert_view.php:120 @@ -2533,71 +2572,81 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:77 #: ../../godmode/events/custom_events.php:99 #: ../../godmode/wizards/DiscoveryTaskList.class.php:605 -#: ../../godmode/servers/servers.build_table.php:78 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163 #: ../../mobile/operation/modules.php:164 #: ../../mobile/operation/modules.php:275 #: ../../mobile/operation/modules.php:276 -#: ../../mobile/operation/modules.php:603 -#: ../../mobile/operation/modules.php:609 -#: ../../mobile/operation/modules.php:615 -#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/modules.php:620 +#: ../../mobile/operation/modules.php:626 #: ../../mobile/operation/modules.php:632 -#: ../../mobile/operation/modules.php:640 -#: ../../mobile/operation/modules.php:648 -#: ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:643 +#: ../../mobile/operation/modules.php:651 +#: ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:751 +#: ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105 #: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 -#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 -#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 -#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 -#: ../../mobile/operation/events.php:964 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334 +#: ../../mobile/operation/module_data.php:262 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007 +#: ../../mobile/operation/events.php:1008 +#: ../../mobile/operation/server_status.php:154 +#: ../../mobile/operation/server_status.php:155 +#: ../../mobile/operation/server_status.php:281 +#: ../../mobile/operation/server_status.php:319 +#: ../../mobile/operation/server_status.php:349 +#: ../../mobile/operation/server_status.php:445 #: ../../include/functions_reporting_html.php:553 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1064 #: ../../include/functions_reporting_html.php:1305 #: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reporting_html.php:2356 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2996 -#: ../../include/functions_reporting_html.php:3664 -#: ../../include/functions_reporting_html.php:3714 -#: ../../include/functions_reporting_html.php:5303 +#: ../../include/functions_reporting_html.php:1633 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2656 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3692 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:5331 +#: ../../include/ajax/heatmap.ajax.php:391 #: ../../include/ajax/alert_list.ajax.php:296 #: ../../include/ajax/alert_list.ajax.php:321 -#: ../../include/ajax/module.php:1003 ../../include/ajax/custom_fields.php:416 +#: ../../include/ajax/module.php:1026 ../../include/ajax/custom_fields.php:416 #: ../../include/functions_snmp.php:369 #: ../../include/functions_massive_operations.php:152 -#: ../../include/class/NetworkMap.class.php:3064 -#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/AgentsAlerts.class.php:914 #: ../../include/class/SnmpConsole.class.php:273 #: ../../include/class/SnmpConsole.class.php:382 #: ../../include/class/SnmpConsole.class.php:500 #: ../../include/class/ExternalTools.class.php:877 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562 #: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 #: ../../include/functions_events.php:259 #: ../../include/functions_events.php:2543 -#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 -#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/estado_agente.php:1057 #: ../../operation/agentes/interface_view.functions.php:516 -#: ../../operation/agentes/status_monitor.php:1566 +#: ../../operation/agentes/status_monitor.php:1568 #: ../../operation/agentes/alerts_status.functions.php:108 #: ../../operation/messages/message_list.php:188 #: ../../operation/incidents/integriaims_export_csv.php:83 #: ../../operation/incidents/configure_integriaims_incident.php:305 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338 #: ../../operation/incidents/list_integriaims_incidents.php:334 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38 msgid "Status" msgstr "" @@ -2621,10 +2670,10 @@ msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:352 #: ../../enterprise/include/class/Omnishell.class.php:1016 #: ../../enterprise/include/class/Omnishell.class.php:1095 -#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598 -#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276 -#: ../../include/functions_html.php:1427 -#: ../../include/functions_snmp_browser.php:1617 +#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598 +#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281 +#: ../../include/functions_html.php:1432 +#: ../../include/functions_snmp_browser.php:1626 msgid "Filter group" msgstr "" @@ -2670,27 +2719,27 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/modificar_agente.php:791 #: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/agentes/module_manager_editor_common.php:696 -#: ../../godmode/agentes/module_manager_editor_common.php:1311 -#: ../../godmode/agentes/module_manager.php:974 -#: ../../godmode/agentes/module_manager.php:987 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:702 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:988 +#: ../../godmode/agentes/module_manager.php:1001 +#: ../../godmode/massive/massive_edit_agents.php:955 +#: ../../godmode/massive/massive_edit_agents.php:1154 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/alerts/alert_list.list.php:172 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167 +#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_visual_map_editor.php:872 +#: ../../include/functions_reporting_html.php:3704 #: ../../include/functions_agents.php:1472 #: ../../include/functions_treeview.php:66 -#: ../../include/functions_treeview.php:602 +#: ../../include/functions_treeview.php:606 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 +#: ../../include/functions_reporting.php:7001 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 @@ -2701,24 +2750,24 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:773 #: ../../enterprise/operation/services/massive/services.create.php:839 -#: ../../godmode/agentes/modificar_agente.php:788 +#: ../../godmode/agentes/modificar_agente.php:800 #: ../../godmode/agentes/planned_downtime.list.php:778 #: ../../godmode/agentes/planned_downtime.editor.php:929 -#: ../../godmode/agentes/agent_manager.php:826 -#: ../../godmode/agentes/module_manager_editor_common.php:1394 +#: ../../godmode/agentes/agent_manager.php:834 +#: ../../godmode/agentes/module_manager_editor_common.php:1404 #: ../../godmode/agentes/module_manager.php:765 -#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_agents.php:1125 #: ../../godmode/massive/massive_edit_modules.php:1119 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114 -#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:1145 +#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137 +#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:1153 #: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:1153 +#: ../../operation/agentes/estado_agente.php:1161 msgid "Agent in scheduled downtime" msgstr "" @@ -2743,25 +2792,24 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network.php:426 #: ../../godmode/modules/manage_inventory_modules.php:291 #: ../../godmode/modules/manage_inventory_modules_form.php:140 -#: ../../godmode/agentes/modificar_agente.php:694 +#: ../../godmode/agentes/modificar_agente.php:704 #: ../../godmode/agentes/planned_downtime.editor.php:1358 #: ../../godmode/agentes/agent_manager.php:523 -#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_agents.php:750 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1600 -#: ../../include/functions_reporting_html.php:3661 -#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405 +#: ../../include/functions_reporting_html.php:1609 +#: ../../include/functions_reporting_html.php:3689 +#: ../../include/ajax/heatmap.ajax.php:467 #: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 -#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:348 +#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:79 -#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031 +#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038 #: ../../operation/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 -#: ../../operation/inventory/inventory.php:1005 -#: ../../operation/inventory/inventory.php:1299 +#: ../../operation/inventory/inventory.php:1251 msgid "OS" msgstr "" @@ -2771,12 +2819,12 @@ msgid "IP address" msgstr "" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:102 -#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/servers.build_table.php:125 +#: ../../enterprise/meta/advanced/servers.build_table.php:126 +#: ../../enterprise/meta/advanced/servers.build_table.php:132 #: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_servicemap.php:483 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 #: ../../enterprise/include/functions_reporting.php:6178 @@ -2789,92 +2837,92 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network.php:543 #: ../../enterprise/tools/ipam/ipam_ajax.php:369 #: ../../enterprise/tools/ipam/ipam_ajax.php:390 -#: ../../godmode/modules/manage_network_components.php:802 -#: ../../godmode/modules/manage_network_components.php:803 +#: ../../godmode/modules/manage_network_components.php:805 +#: ../../godmode/modules/manage_network_components.php:806 #: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222 #: ../../godmode/agentes/planned_downtime.list.php:942 #: ../../godmode/alerts/alert_view.php:141 -#: ../../godmode/servers/servers.build_table.php:151 -#: ../../godmode/servers/servers.build_table.php:152 -#: ../../godmode/servers/servers.build_table.php:158 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1275 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203 +#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435 +#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501 +#: ../../include/functions_servers.php:1298 #: ../../include/functions_reporting_html.php:659 #: ../../include/functions_reporting_html.php:662 -#: ../../include/functions_reporting_html.php:5564 -#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_reporting_html.php:5592 +#: ../../include/functions_reporting_html.php:5645 #: ../../include/functions.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183 #: ../../include/functions_treeview.php:153 #: ../../include/functions_treeview.php:311 -#: ../../include/functions_treeview.php:410 -#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874 -#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/class/SnmpConsole.class.php:812 -#: ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3818 -#: ../../include/functions_events.php:3838 -#: ../../include/functions_events.php:3847 -#: ../../include/functions_events.php:3856 -#: ../../include/functions_events.php:3857 -#: ../../include/functions_events.php:3869 -#: ../../include/functions_events.php:3929 -#: ../../include/functions_events.php:3962 -#: ../../include/functions_events.php:4028 -#: ../../include/functions_events.php:4045 -#: ../../include/functions_events.php:4052 -#: ../../include/functions_events.php:4118 -#: ../../include/functions_events.php:4210 -#: ../../include/functions_events.php:4334 -#: ../../include/functions_events.php:4373 -#: ../../include/functions_events.php:4413 -#: ../../include/functions_events.php:4436 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4630 -#: ../../include/functions_events.php:4640 -#: ../../include/functions_events.php:4857 -#: ../../include/functions_events.php:4938 -#: ../../include/functions_events.php:5043 -#: ../../include/functions_events.php:5072 -#: ../../include/functions_events.php:5087 -#: ../../include/functions_events.php:5097 -#: ../../include/functions_events.php:5107 -#: ../../include/functions_events.php:5590 -#: ../../include/functions_events.php:5604 +#: ../../include/functions_treeview.php:414 +#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917 +#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:796 +#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/functions_events.php:3689 +#: ../../include/functions_events.php:3823 +#: ../../include/functions_events.php:3843 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_events.php:3861 +#: ../../include/functions_events.php:3862 +#: ../../include/functions_events.php:3874 +#: ../../include/functions_events.php:3934 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php:4033 +#: ../../include/functions_events.php:4050 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4123 +#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4339 +#: ../../include/functions_events.php:4378 +#: ../../include/functions_events.php:4418 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4471 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php:4645 +#: ../../include/functions_events.php:4862 +#: ../../include/functions_events.php:4943 +#: ../../include/functions_events.php:5048 +#: ../../include/functions_events.php:5077 +#: ../../include/functions_events.php:5092 +#: ../../include/functions_events.php:5102 +#: ../../include/functions_events.php:5112 +#: ../../include/functions_events.php:5595 #: ../../include/functions_events.php:5609 -#: ../../include/functions_events.php:5612 -#: ../../include/functions_events.php:5620 -#: ../../include/functions_events.php:5629 -#: ../../include/functions_events.php:5641 -#: ../../include/functions_events.php:5694 -#: ../../include/functions_events.php:5721 -#: ../../include/functions_events.php:5746 -#: ../../include/functions_events.php:5790 -#: ../../operation/agentes/estado_agente.php:1222 +#: ../../include/functions_events.php:5614 +#: ../../include/functions_events.php:5617 +#: ../../include/functions_events.php:5625 +#: ../../include/functions_events.php:5634 +#: ../../include/functions_events.php:5646 +#: ../../include/functions_events.php:5699 +#: ../../include/functions_events.php:5726 +#: ../../include/functions_events.php:5751 +#: ../../include/functions_events.php:5795 +#: ../../operation/agentes/estado_agente.php:1231 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 #: ../../operation/agentes/interface_view.functions.php:744 #: ../../operation/agentes/interface_view.functions.php:745 #: ../../operation/agentes/interface_view.functions.php:746 -#: ../../operation/agentes/status_monitor.php:1945 +#: ../../operation/agentes/status_monitor.php:1947 #: ../../operation/agentes/estado_generalagente.php:234 #: ../../operation/agentes/estado_generalagente.php:251 #: ../../operation/agentes/estado_generalagente.php:254 -#: ../../operation/agentes/estado_generalagente.php:440 -#: ../../operation/agentes/estado_generalagente.php:454 -#: ../../operation/agentes/estado_generalagente.php:513 -#: ../../operation/inventory/inventory.php:153 -#: ../../operation/inventory/inventory.php:173 -#: ../../operation/inventory/inventory.php:200 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:484 +#: ../../operation/inventory/inventory.php:155 +#: ../../operation/inventory/inventory.php:175 +#: ../../operation/inventory/inventory.php:202 msgid "N/A" msgstr "" -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843 #: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" @@ -2885,12 +2933,12 @@ msgid "Cluster agent" msgstr "" #: ../../views/cluster/view.php:364 -#: ../../operation/agentes/estado_generalagente.php:1012 +#: ../../operation/agentes/estado_generalagente.php:919 msgid "Events (Last 24h)" msgstr "" -#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 -#: ../../operation/agentes/interface_traffic_graph_win.php:278 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469 +#: ../../operation/agentes/interface_traffic_graph_win.php:294 msgid "Reload" msgstr "" @@ -2908,24 +2956,24 @@ msgstr "" #: ../../views/dashboard/header.php:43 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 -#: ../../extensions/agents_modules.php:387 -#: ../../extensions/agents_modules.php:390 -#: ../../operation/visual_console/view.php:231 -#: ../../operation/visual_console/legacy_view.php:201 +#: ../../extensions/agents_modules.php:388 +#: ../../extensions/agents_modules.php:395 +#: ../../extensions/agents_modules.php:398 +#: ../../operation/visual_console/view.php:233 +#: ../../operation/visual_console/legacy_view.php:200 #: ../../operation/gis_maps/render_view.php:137 #: ../../operation/reporting/reporting_viewer.php:185 #: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "" -#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603 -#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500 -#: ../../operation/visual_console/legacy_view.php:249 +#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611 +#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502 +#: ../../operation/visual_console/legacy_view.php:260 #: ../../operation/gis_maps/render_view.php:139 #: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1410 +#: ../../operation/events/events.php:1464 msgid "Back to normal mode" msgstr "" @@ -2953,11 +3001,11 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:590 #: ../../godmode/snmpconsole/snmp_alert.php:2227 #: ../../godmode/snmpconsole/snmp_alert.php:2242 -#: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../godmode/reporting/graph_builder.graph_editor.php:241 -#: ../../godmode/reporting/graph_builder.graph_editor.php:262 -#: ../../include/functions_config.php:1333 -#: ../../include/functions_config.php:3537 +#: ../../godmode/massive/massive_edit_agents.php:1060 +#: ../../godmode/reporting/graph_builder.graph_editor.php:374 +#: ../../godmode/reporting/graph_builder.graph_editor.php:395 +#: ../../include/functions_config.php:1349 +#: ../../include/functions_config.php:3561 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -2982,23 +3030,23 @@ msgstr "" #: ../../views/dashboard/header.php:163 #: ../../enterprise/views/ncm/devices/list.php:172 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../enterprise/godmode/policies/policy_queue.php:853 #: ../../enterprise/godmode/servers/HA_cluster.php:437 #: ../../enterprise/include/class/Omnishell.class.php:559 #: ../../enterprise/include/class/Omnishell.class.php:1712 #: ../../enterprise/include/functions_ipam.php:1400 -#: ../../extensions/agents_modules.php:615 +#: ../../extensions/agents_modules.php:623 #: ../../godmode/wizards/DiscoveryTaskList.class.php:196 -#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285 -#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720 -#: ../../include/class/NetworkMap.class.php:2946 -#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:513 +#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313 +#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815 +#: ../../include/class/NetworkMap.class.php:2952 +#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:515 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/legacy_view.php:274 #: ../../operation/visual_console/public_view.php:129 #: ../../operation/agentes/pandora_networkmap.editor.php:553 #: ../../operation/gis_maps/render_view.php:161 -#: ../../operation/events/events.php:1422 ../../general/login_page.php:97 +#: ../../operation/events/events.php:1476 ../../general/login_page.php:97 #: ../../general/login_page.php:408 msgid "Refresh" msgstr "" @@ -3010,9 +3058,10 @@ msgstr "" #: ../../views/dashboard/header.php:298 #: ../../enterprise/extensions/vmware/vmware_view.php:1377 #: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/configure_user.php:66 #: ../../godmode/users/user_management.php:45 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../mobile/include/functions_web.php:22 +#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814 #: ../../include/class/OrderInterpreter.class.php:219 #: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 msgid "Dashboard" @@ -3023,7 +3072,7 @@ msgid "Hello! These are the tips of the day." msgstr "" #: ../../views/dashboard/tipsWindow.php:44 -#: ../../godmode/users/user_management.php:378 +#: ../../godmode/users/user_management.php:384 msgid "Show usage tips at startup" msgstr "" @@ -3063,11 +3112,11 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 #: ../../extensions/files_repo.php:206 #: ../../godmode/modules/manage_nc_groups.php:176 -#: ../../godmode/modules/manage_network_components.php:562 +#: ../../godmode/modules/manage_network_components.php:565 #: ../../godmode/users/profile_list.php:142 #: ../../godmode/users/user_list.php:357 ../../godmode/users/user_list.php:411 -#: ../../godmode/users/configure_user.php:101 -#: ../../godmode/users/configure_user.php:121 +#: ../../godmode/users/configure_user.php:871 +#: ../../godmode/users/configure_user.php:891 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -3079,7 +3128,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 -#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 @@ -3104,7 +3153,7 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:432 #: ../../enterprise/godmode/policies/policy_alerts.php:267 #: ../../enterprise/godmode/policies/policy_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1374 #: ../../enterprise/godmode/policies/policy_external_alerts.php:159 #: ../../enterprise/godmode/policies/policy_external_alerts.php:186 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 @@ -3121,18 +3170,18 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:206 -#: ../../godmode/modules/manage_network_components.php:563 -#: ../../godmode/users/configure_user.php:102 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/users/configure_user.php:872 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 -#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_templates.php:262 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 #: ../../godmode/reporting/reporting_builder.php:632 -#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/agentes/pandora_networkmap.php:564 #: ../../operation/messages/message_list.php:110 #: ../../operation/gis_maps/gis_map.php:100 #: ../../operation/incidents/list_integriaims_incidents.php:306 @@ -3161,15 +3210,15 @@ msgstr "" #: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2364 +#: ../../operation/agentes/pandora_networkmap.view.php:2365 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1514 msgid "Full screen" msgstr "" #: ../../views/dashboard/list.php:106 -#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 #: ../../enterprise/godmode/policies/policies.php:643 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 #: ../../godmode/agentes/planned_downtime.list.php:746 @@ -3177,8 +3226,8 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.list.php:925 #: ../../godmode/alerts/alert_actions.php:355 #: ../../godmode/reporting/map_builder.php:420 -#: ../../include/functions_filemanager.php:985 -#: ../../operation/agentes/pandora_networkmap.php:806 +#: ../../include/functions_filemanager.php:1007 +#: ../../operation/agentes/pandora_networkmap.php:807 msgid "Copy" msgstr "" @@ -3204,8 +3253,8 @@ msgid "Please select widget" msgstr "" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1550 -#: ../../operation/events/events.php:3160 +#: ../../include/class/SnmpConsole.class.php:1552 +#: ../../operation/events/events.php:3219 msgid "Until next" msgstr "" @@ -3226,7 +3275,7 @@ msgstr "" msgid "Configure widget" msgstr "" -#: ../../views/dashboard/cell.php:68 +#: ../../views/dashboard/cell.php:69 msgid "Delete widget" msgstr "" @@ -3243,13 +3292,13 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 +#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424 msgid "Previous" msgstr "" #: ../../views/dashboard/slides.php:218 #: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 -#: ../../operation/events/events.php:1518 +#: ../../operation/events/events.php:1572 msgid "Stop" msgstr "" @@ -3277,9 +3326,9 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1227 #: ../../godmode/alerts/configure_alert_template.php:1239 #: ../../godmode/wizards/HostDevices.class.php:779 -#: ../../include/functions_ui.php:2462 -#: ../../include/class/CustomNetScan.class.php:556 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238 +#: ../../include/functions_ui.php:2505 +#: ../../include/class/CustomNetScan.class.php:555 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239 msgid "Next" msgstr "" @@ -3315,7 +3364,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3183 msgid "Network configuration manager" msgstr "" @@ -3388,7 +3437,7 @@ msgid "Device model" msgstr "" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:502 +#: ../../godmode/agentes/module_manager_editor_network.php:507 msgid "Connection method" msgstr "" @@ -3410,11 +3459,11 @@ msgstr "" #: ../../enterprise/include/class/Aws.S3.php:580 #: ../../enterprise/include/class/Aws.cloud.php:544 #: ../../extensions/quick_shell.php:183 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/modules/manage_network_components_form_network.php:83 +#: ../../godmode/agentes/module_manager_editor_network.php:84 #: ../../godmode/massive/massive_edit_modules.php:1160 #: ../../godmode/servers/modificar_server.php:117 -#: ../../include/functions_config.php:1651 +#: ../../include/functions_config.php:1663 #: ../../include/class/AgentWizard.class.php:648 #: ../../include/functions_snmp_browser.php:724 msgid "Port" @@ -3465,7 +3514,7 @@ msgstr "" #: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:310 -#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 +#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "" @@ -3492,10 +3541,10 @@ msgstr "" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:470 #: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371 -#: ../../include/functions_reporting_html.php:4310 -#: ../../include/functions_reporting_html.php:4457 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4811 +#: ../../include/functions_reporting_html.php:4338 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:4828 +#: ../../include/functions_reporting_html.php:4839 #: ../../include/functions_db.php:1959 msgid "Result" msgstr "" @@ -3558,9 +3607,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1757 #: ../../enterprise/meta/include/functions_wizard_meta.php:1832 -#: ../../godmode/setup/setup_visuals.php:1549 -#: ../../include/class/TipsWindow.class.php:777 -#: ../../include/class/TipsWindow.class.php:944 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../include/class/TipsWindow.class.php:797 +#: ../../include/class/TipsWindow.class.php:964 msgid "Preview" msgstr "" @@ -3590,7 +3639,7 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:609 #: ../../enterprise/operation/services/services.table_services.php:144 #: ../../extensions/module_groups.php:52 -#: ../../godmode/groups/group_list.php:1104 +#: ../../godmode/groups/group_list.php:1116 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3598,42 +3647,42 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3842 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_reporting_html.php:3966 -#: ../../include/functions.php:1281 ../../include/functions.php:4181 -#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946 +#: ../../include/graphs/functions_flot.php:311 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:2597 +#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3994 +#: ../../include/functions.php:1281 ../../include/functions.php:4207 +#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974 #: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607 #: ../../include/functions_visual_map.php:2457 #: ../../include/functions_visual_map.php:2485 #: ../../include/functions_visual_map.php:2503 #: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585 #: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:149 #: ../../include/functions_netflow.php:1884 -#: ../../include/functions_reporting.php:6772 -#: ../../include/functions_filemanager.php:708 +#: ../../include/functions_reporting.php:6781 +#: ../../include/functions_filemanager.php:723 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:719 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:404 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 #: ../../include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 -#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../include/functions_events.php:3131 ../../operation/tree.php:211 +#: ../../operation/tree.php:302 ../../operation/tree.php:525 #: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:567 -#: ../../operation/agentes/group_view.php:242 -#: ../../operation/agentes/group_view.php:247 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/pandora_networkmap.view.php:1804 +#: ../../operation/agentes/status_monitor.php:566 +#: ../../operation/agentes/group_view.php:245 +#: ../../operation/agentes/group_view.php:250 +#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 #: ../../operation/agentes/tactical.php:200 -#: ../../operation/events/events.php:815 ../../general/logon_ok.php:151 +#: ../../operation/events/events.php:820 ../../general/logon_ok.php:160 msgid "Unknown" msgstr "" @@ -3717,32 +3766,33 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208 #: ../../enterprise/tools/ipam/ipam_ajax.php:535 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../godmode/groups/group_list.php:887 -#: ../../godmode/users/user_list.php:583 +#: ../../godmode/groups/group_list.php:888 +#: ../../godmode/users/user_list.php:584 #: ../../godmode/agentes/inventory_manager.php:237 -#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/modificar_agente.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:1369 -#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_list.list.php:571 #: ../../godmode/alerts/alert_commands.php:753 #: ../../godmode/alerts/alert_view.php:307 #: ../../godmode/alerts/alert_list.builder.php:112 +#: ../../godmode/setup/os.list.php:69 #: ../../godmode/reporting/reporting_builder.item_editor.php:2092 #: ../../godmode/events/event_responses.list.php:69 -#: ../../godmode/tag/tag.php:309 ../../godmode/category/category.php:161 -#: ../../include/functions_reporting_html.php:3450 -#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008 -#: ../../include/functions_treeview.php:400 +#: ../../godmode/tag/tag.php:310 ../../godmode/category/category.php:161 +#: ../../include/functions_reporting_html.php:3478 +#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031 +#: ../../include/functions_treeview.php:404 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:332 #: ../../include/class/SnmpConsole.class.php:281 #: ../../include/class/SatelliteCollection.class.php:135 -#: ../../include/functions_reporting.php:3233 -#: ../../include/functions_filemanager.php:647 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/status_monitor.php:1605 +#: ../../include/functions_reporting.php:3242 +#: ../../include/functions_filemanager.php:662 +#: ../../operation/agentes/pandora_networkmap.php:722 +#: ../../operation/agentes/status_monitor.php:1607 msgid "Actions" msgstr "" @@ -3796,16 +3846,17 @@ msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390 #: ../../enterprise/include/class/AgentRepository.class.php:692 #: ../../godmode/modules/manage_inventory_modules.php:54 -#: ../../godmode/modules/manage_network_components.php:298 +#: ../../godmode/modules/manage_network_components.php:299 #: ../../godmode/modules/manage_inventory_modules_form.php:45 #: ../../godmode/agentes/planned_downtime.list.php:738 -#: ../../godmode/menu.php:255 ../../godmode/massive/massive_operations.php:332 +#: ../../godmode/menu.php:254 ../../godmode/massive/massive_operations.php:332 #: ../../godmode/massive/massive_operations.php:354 #: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917 #: ../../include/functions_reports.php:921 #: ../../include/class/ConfigPEN.class.php:329 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 +#: ../../include/class/AgentDeployWizard.class.php:727 msgid "Configuration" msgstr "" @@ -3864,11 +3915,11 @@ msgid "Customize script execution" msgstr "" #: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../include/ajax/events.php:2199 +#: ../../include/ajax/events.php:2200 #: ../../include/class/ExternalTools.class.php:646 #: ../../include/functions_snmp_browser.php:974 -#: ../../include/functions_snmp_browser.php:1134 -#: ../../include/functions_events.php:3710 +#: ../../include/functions_snmp_browser.php:1142 +#: ../../include/functions_events.php:3715 msgid "Execute" msgstr "" @@ -3883,13 +3934,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_template.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8029 -#: ../../enterprise/include/functions_reporting.php:8100 -#: ../../godmode/modules/manage_network_components.php:302 -#: ../../godmode/menu.php:172 ../../godmode/menu.php:275 +#: ../../enterprise/include/functions_reporting.php:8010 +#: ../../enterprise/include/functions_reporting.php:8038 +#: ../../enterprise/include/functions_reporting.php:8109 +#: ../../godmode/modules/manage_network_components.php:303 +#: ../../godmode/menu.php:172 ../../godmode/menu.php:273 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 +#: ../../include/functions_menu.php:587 #: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 @@ -4030,7 +4081,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:362 #: ../../enterprise/tools/ipam/ipam_calculator.php:69 -#: ../../godmode/setup/setup_general.php:878 +#: ../../godmode/setup/setup_general.php:904 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "" @@ -4054,14 +4105,14 @@ msgstr "" #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:548 #: ../../enterprise/tools/ipam/ipam_list.php:738 -#: ../../extensions/agents_modules.php:317 +#: ../../extensions/agents_modules.php:325 #: ../../operation/agentes/group_view.php:80 #: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154 #: ../../enterprise/godmode/policies/policy_alerts.php:368 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 @@ -4069,7 +4120,7 @@ msgstr "" #: ../../godmode/massive/massive_copy_modules.php:185 #: ../../godmode/alerts/alert_list.list.php:572 #: ../../godmode/wizards/DiscoveryTaskList.class.php:617 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/plugin.php:988 #: ../../operation/agentes/alerts_status.php:234 #: ../../operation/agentes/alerts_status.php:235 msgid "Operations" @@ -4118,7 +4169,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328 #: ../../enterprise/godmode/agentes/manage_config_remote.php:344 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 @@ -4144,52 +4195,52 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1099 -#: ../../godmode/users/configure_user.php:1013 -#: ../../godmode/users/configure_user.php:1974 +#: ../../godmode/groups/group_list.php:1111 +#: ../../godmode/users/configure_user.php:1061 +#: ../../godmode/users/configure_user.php:2026 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 #: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_agents.php:1078 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 +#: ../../include/functions_reporting_html.php:2596 #: ../../include/functions.php:1091 ../../include/functions.php:1329 #: ../../include/functions.php:1332 ../../include/functions.php:1371 -#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341 -#: ../../include/functions_graph.php:3343 -#: ../../include/functions_graph.php:4846 ../../include/functions_ui.php:314 -#: ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 +#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351 +#: ../../include/functions_graph.php:3353 +#: ../../include/functions_graph.php:4856 ../../include/functions_ui.php:314 +#: ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571 #: ../../include/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 #: ../../include/class/SatelliteAgent.class.php:1362 -#: ../../include/class/Diagnostics.class.php:1837 +#: ../../include/class/Diagnostics.class.php:1841 #: ../../include/class/AgentWizard.class.php:1401 #: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:399 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:433 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../include/functions_events.php:3222 ../../index.php:1243 -#: ../../operation/tree.php:209 ../../operation/tree.php:299 -#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 +#: ../../include/functions_events.php:3227 ../../index.php:1244 +#: ../../operation/tree.php:209 ../../operation/tree.php:300 +#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305 #: ../../operation/agentes/estado_agente.php:274 -#: ../../operation/agentes/status_monitor.php:565 -#: ../../operation/agentes/group_view.php:245 -#: ../../operation/agentes/group_view.php:250 -#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/status_monitor.php:564 +#: ../../operation/agentes/group_view.php:248 +#: ../../operation/agentes/group_view.php:253 +#: ../../operation/agentes/estado_monitores.php:517 #: ../../operation/agentes/tactical.php:198 -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 +#: ../../operation/netflow/nf_live_view.php:348 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158 msgid "Warning" msgstr "" @@ -4208,15 +4259,15 @@ msgstr "" #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:54 #: ../../godmode/modules/manage_nc_groups_form.php:73 -#: ../../godmode/groups/configure_group.php:206 -#: ../../godmode/groups/group_list.php:882 -#: ../../godmode/agentes/agent_manager.php:645 -#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/groups/group_list.php:883 +#: ../../godmode/agentes/agent_manager.php:649 +#: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/reporting/visual_console_builder.elements.php:124 -#: ../../include/functions_visual_map_editor.php:954 -#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../include/functions_visual_map_editor.php:1002 +#: ../../include/rest-api/models/VisualConsole/Item.php:2179 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:511 +#: ../../operation/agentes/estado_generalagente.php:482 msgid "Parent" msgstr "" @@ -4242,9 +4293,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:727 #: ../../enterprise/godmode/modules/configure_local_component.php:733 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 @@ -4265,12 +4316,12 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 @@ -4363,8 +4414,8 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:1062 #: ../../enterprise/include/class/Omnishell.class.php:1063 #: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:818 #: ../../enterprise/include/class/SAP.app.php:819 +#: ../../enterprise/include/class/SAP.app.php:820 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 @@ -4375,7 +4426,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594 #: ../../enterprise/operation/agentes/ver_agente.php:56 -#: ../../enterprise/operation/log/log_viewer.php:881 +#: ../../enterprise/operation/log/log_viewer.php:879 #: ../../enterprise/tools/ipam/ipam_network.php:622 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 @@ -4388,40 +4439,40 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:80 #: ../../godmode/modules/manage_network_components_form_plugin.php:41 #: ../../godmode/modules/manage_network_components_form_common.php:354 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:669 -#: ../../godmode/modules/manage_network_components_form.php:675 -#: ../../godmode/modules/manage_network_components_form.php:684 -#: ../../godmode/modules/manage_network_components_form.php:690 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/configure_group.php:192 -#: ../../godmode/users/configure_user.php:1270 -#: ../../godmode/users/configure_user.php:1286 -#: ../../godmode/users/configure_user.php:1437 -#: ../../godmode/users/configure_user.php:1449 -#: ../../godmode/users/configure_user.php:1573 -#: ../../godmode/users/configure_user.php:1588 -#: ../../godmode/users/configure_user.php:1750 -#: ../../godmode/users/configure_user.php:1758 -#: ../../godmode/users/configure_user.php:1767 -#: ../../godmode/users/configure_user.php:1774 -#: ../../godmode/users/user_management.php:577 -#: ../../godmode/users/user_management.php:600 -#: ../../godmode/agentes/status_monitor_custom_fields.php:230 -#: ../../godmode/agentes/status_monitor_custom_fields.php:278 +#: ../../godmode/modules/manage_network_components_form_network.php:266 +#: ../../godmode/modules/manage_network_components_form.php:672 +#: ../../godmode/modules/manage_network_components_form.php:678 +#: ../../godmode/modules/manage_network_components_form.php:687 +#: ../../godmode/modules/manage_network_components_form.php:693 +#: ../../godmode/groups/configure_group.php:189 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/users/configure_user.php:1334 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/users/configure_user.php:1486 +#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1627 +#: ../../godmode/users/configure_user.php:1642 +#: ../../godmode/users/configure_user.php:1802 +#: ../../godmode/users/configure_user.php:1810 +#: ../../godmode/users/configure_user.php:1819 +#: ../../godmode/users/configure_user.php:1826 +#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/user_management.php:610 +#: ../../godmode/agentes/status_monitor_custom_fields.php:250 +#: ../../godmode/agentes/status_monitor_custom_fields.php:298 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:181 -#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:519 #: ../../godmode/agentes/agent_manager.php:558 -#: ../../godmode/agentes/agent_manager.php:750 -#: ../../godmode/agentes/agent_manager.php:1008 -#: ../../godmode/agentes/module_manager_editor_common.php:766 -#: ../../godmode/agentes/module_manager_editor_common.php:1125 -#: ../../godmode/agentes/module_manager_editor_common.php:1360 -#: ../../godmode/agentes/module_manager_editor_common.php:1654 -#: ../../godmode/agentes/module_manager_editor_common.php:1661 -#: ../../godmode/agentes/module_manager_editor_common.php:1672 -#: ../../godmode/agentes/module_manager_editor_common.php:1680 +#: ../../godmode/agentes/agent_manager.php:754 +#: ../../godmode/agentes/agent_manager.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1370 +#: ../../godmode/agentes/module_manager_editor_common.php:1664 +#: ../../godmode/agentes/module_manager_editor_common.php:1671 +#: ../../godmode/agentes/module_manager_editor_common.php:1682 +#: ../../godmode/agentes/module_manager_editor_common.php:1690 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -4438,13 +4489,13 @@ msgstr "" #: ../../godmode/massive/massive_delete_modules.php:835 #: ../../godmode/massive/massive_edit_users.php:338 #: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:617 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:618 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:637 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_edit_agents.php:771 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 @@ -4471,23 +4522,23 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:730 #: ../../godmode/alerts/configure_alert_template.php:824 #: ../../godmode/setup/os.builder.php:51 -#: ../../godmode/setup/setup_visuals.php:611 -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../godmode/setup/setup_visuals.php:1084 -#: ../../godmode/setup/setup_general.php:1051 -#: ../../godmode/setup/setup_general.php:1068 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:1088 #: ../../godmode/setup/setup_general.php:1077 #: ../../godmode/setup/setup_general.php:1094 +#: ../../godmode/setup/setup_general.php:1103 +#: ../../godmode/setup/setup_general.php:1120 #: ../../godmode/reporting/create_container.php:572 -#: ../../godmode/reporting/graph_builder.graph_editor.php:373 -#: ../../godmode/reporting/reporting_builder.item_editor.php:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:991 +#: ../../godmode/reporting/graph_builder.graph_editor.php:296 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:993 #: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2278 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3402 #: ../../godmode/reporting/visual_console_builder.elements.php:525 #: ../../godmode/reporting/visual_console_builder.elements.php:676 #: ../../godmode/reporting/visual_console_builder.elements.php:686 @@ -4501,25 +4552,25 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:783 #: ../../godmode/reporting/visual_console_builder.wizard.php:793 #: ../../godmode/reporting/visual_console_builder.wizard.php:825 -#: ../../godmode/events/event_edit_filter.php:977 +#: ../../godmode/events/event_edit_filter.php:979 #: ../../godmode/events/custom_events.php:210 #: ../../godmode/events/custom_events.php:258 -#: ../../godmode/wizards/HostDevices.class.php:1119 -#: ../../mobile/operation/events.php:930 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:955 -#: ../../include/functions_visual_map_editor.php:1008 -#: ../../include/functions_visual_map_editor.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1115 +#: ../../mobile/operation/events.php:974 +#: ../../include/functions_visual_map_editor.php:398 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:1003 +#: ../../include/functions_visual_map_editor.php:1056 +#: ../../include/functions_visual_map_editor.php:1122 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 #: ../../include/functions_networkmap.php:1524 #: ../../include/ajax/audit_log.php:156 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643 #: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838 #: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 #: ../../include/functions_profile.php:349 #: ../../include/functions_profile.php:367 @@ -4529,24 +4580,24 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 -#: ../../include/rest-api/models/VisualConsole/Item.php:2088 -#: ../../include/rest-api/models/VisualConsole/Item.php:2207 -#: ../../include/rest-api/models/VisualConsole/Item.php:2325 -#: ../../include/rest-api/models/VisualConsole/Item.php:2447 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../include/rest-api/models/VisualConsole/Item.php:2210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2328 +#: ../../include/rest-api/models/VisualConsole/Item.php:2450 #: ../../include/functions_html.php:397 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323 -#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371 -#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472 -#: ../../include/functions_html.php:6508 -#: ../../include/class/NetworkMap.class.php:2934 -#: ../../include/class/NetworkMap.class.php:3203 -#: ../../include/class/NetworkMap.class.php:3226 -#: ../../include/class/NetworkMap.class.php:3299 -#: ../../include/class/NetworkMap.class.php:3309 -#: ../../include/class/NetworkMap.class.php:3420 -#: ../../include/class/NetworkMap.class.php:3441 +#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328 +#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376 +#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477 +#: ../../include/functions_html.php:6536 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:3209 +#: ../../include/class/NetworkMap.class.php:3232 +#: ../../include/class/NetworkMap.class.php:3305 +#: ../../include/class/NetworkMap.class.php:3315 +#: ../../include/class/NetworkMap.class.php:3426 +#: ../../include/class/NetworkMap.class.php:3447 #: ../../include/class/SnmpConsole.class.php:314 -#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/SnmpConsole.class.php:1377 #: ../../include/class/AgentWizard.class.php:729 #: ../../include/class/AgentWizard.class.php:785 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 @@ -4558,6 +4609,8 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413 #: ../../include/lib/Dashboard/Widgets/module_icon.php:388 #: ../../include/lib/Dashboard/Widgets/module_value.php:363 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 @@ -4573,29 +4626,28 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3501 -#: ../../operation/users/user_edit.php:520 -#: ../../operation/users/user_edit.php:532 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:616 -#: ../../operation/users/user_edit.php:631 -#: ../../operation/users/user_edit.php:1081 -#: ../../operation/users/user_edit.php:1088 -#: ../../operation/users/user_edit.php:1097 -#: ../../operation/users/user_edit.php:1104 +#: ../../include/functions_events.php:3506 +#: ../../operation/users/user_edit.php:525 +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:613 +#: ../../operation/users/user_edit.php:628 +#: ../../operation/users/user_edit.php:1078 +#: ../../operation/users/user_edit.php:1085 +#: ../../operation/users/user_edit.php:1094 +#: ../../operation/users/user_edit.php:1101 #: ../../operation/agentes/pandora_networkmap.editor.php:488 #: ../../operation/agentes/pandora_networkmap.view.php:227 #: ../../operation/agentes/ver_agente.php:1182 #: ../../operation/agentes/ver_agente.php:1238 #: ../../operation/agentes/ver_agente.php:1253 -#: ../../operation/snmpconsole/snmp_browser.php:383 -#: ../../operation/snmpconsole/snmp_browser.php:398 -#: ../../operation/snmpconsole/snmp_browser.php:408 -#: ../../operation/snmpconsole/snmp_browser.php:527 +#: ../../operation/snmpconsole/snmp_browser.php:388 +#: ../../operation/snmpconsole/snmp_browser.php:403 +#: ../../operation/snmpconsole/snmp_browser.php:413 +#: ../../operation/snmpconsole/snmp_browser.php:532 #: ../../operation/gis_maps/render_view.php:164 #: ../../operation/incidents/list_integriaims_incidents.php:601 #: ../../operation/incidents/list_integriaims_incidents.php:605 -#: ../../operation/events/events.php:2647 +#: ../../operation/events/events.php:2701 msgid "None" msgstr "" @@ -4603,12 +4655,21 @@ msgstr "" msgid "Create visualmap" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:223 +#: ../../godmode/servers/modificar_server.php:242 +#: ../../godmode/servers/modificar_server.php:284 +#, php-format +msgid "%s servers" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:50 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/advanced/servers.build_table.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 @@ -4619,7 +4680,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 #: ../../enterprise/meta/agentsearch.php:138 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 #: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policies.php:581 @@ -4635,10 +4696,10 @@ msgstr "" #: ../../enterprise/operation/services/massive/services.create.php:986 #: ../../enterprise/operation/services/massive/service.create.elements.php:380 #: ../../enterprise/operation/services/services.service_map.php:153 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/agentes/configurar_agente.php:423 #: ../../godmode/agentes/configurar_agente.php:735 -#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/agentes/modificar_agente.php:832 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:116 #: ../../godmode/agentes/planned_downtime.editor.php:1360 @@ -4651,12 +4712,12 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1946 #: ../../godmode/reporting/reporting_builder.item_editor.php:2167 #: ../../godmode/reporting/visual_console_builder.wizard.php:447 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:5662 +#: ../../mobile/operation/agent.php:330 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:5690 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 @@ -4666,52 +4727,52 @@ msgstr "" #: ../../include/functions_reports.php:769 #: ../../include/functions_reports.php:773 #: ../../include/functions_reports.php:777 -#: ../../include/functions_html.php:1745 ../../include/functions_html.php:5982 +#: ../../include/functions_html.php:1755 ../../include/functions_html.php:6006 #: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:424 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:430 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:347 #: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/estado_agente.php:1054 #: ../../operation/agentes/graphs.php:203 #: ../../operation/agentes/exportdata.php:354 #: ../../operation/agentes/group_view.php:185 -#: ../../operation/agentes/group_view.php:235 +#: ../../operation/agentes/group_view.php:238 msgid "Modules" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Lag" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:82 +#: ../../enterprise/meta/advanced/servers.build_table.php:82 +#: ../../godmode/servers/servers.build_table.php:84 msgid "Avg. Delay(sec)/Modules delayed" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "T/Q" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../enterprise/meta/advanced/servers.build_table.php:83 +#: ../../godmode/servers/servers.build_table.php:85 msgid "Threads / Queued modules currently" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:85 #: ../../enterprise/include/class/DatabaseHA.class.php:800 #: ../../enterprise/tools/ipam/ipam_ajax.php:497 #: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../godmode/servers/servers.build_table.php:87 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 #: ../../enterprise/meta/include/functions_autoprovision.php:701 #: ../../enterprise/godmode/modules/local_components.php:648 #: ../../enterprise/godmode/policies/policy_alerts.php:368 @@ -4720,46 +4781,52 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../godmode/users/profile_list.php:359 #: ../../godmode/alerts/alert_list.list.php:572 -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:417 #: ../../godmode/reporting/reporting_builder.list_items.php:429 #: ../../godmode/reporting/graphs.php:375 #: ../../godmode/reporting/reporting_builder.php:931 #: ../../godmode/reporting/reporting_builder.php:1151 -#: ../../godmode/servers/servers.build_table.php:89 -#: ../../godmode/servers/plugin.php:996 +#: ../../godmode/servers/servers.build_table.php:91 #: ../../include/functions_container.php:157 #: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../enterprise/meta/advanced/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:140 msgid "This is a master server" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/servers.build_table.php:113 -#: ../../godmode/servers/servers.build_table.php:157 -#: ../../godmode/servers/servers.build_table.php:163 +#: ../../enterprise/meta/advanced/servers.build_table.php:131 +#: ../../enterprise/meta/advanced/servers.build_table.php:137 +#: ../../godmode/servers/servers.build_table.php:159 +#: ../../godmode/servers/servers.build_table.php:165 msgid "of" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:143 -#: ../../godmode/servers/servers.build_table.php:274 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:262 +msgid "Manage server conf" +msgstr "" + +#: ../../enterprise/meta/advanced/servers.build_table.php:186 +#: ../../godmode/servers/servers.build_table.php:287 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:170 -#: ../../godmode/servers/servers.build_table.php:301 +#: ../../enterprise/meta/advanced/servers.build_table.php:213 +#: ../../godmode/servers/servers.build_table.php:314 msgid "Tactical server information" msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../enterprise/meta/advanced/servers.build_table.php:223 +#: ../../godmode/servers/servers.build_table.php:327 #: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:181 +#: ../../enterprise/meta/advanced/servers.build_table.php:224 +#: ../../godmode/servers/servers.build_table.php:328 msgid "" "You have too many items in the processing queue. This can happen if your " "server is overloaded and/or improperly configured. This could be something " @@ -4767,7 +4834,7 @@ msgid "" "with modules going to unknown, try increasing the number of threads." msgstr "" -#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/servers.build_table.php:225 #: ../../enterprise/meta/advanced/cron_main.php:408 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 @@ -4775,39 +4842,41 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:47 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416 -#: ../../enterprise/operation/log/log_viewer.php:1201 -#: ../../enterprise/operation/log/log_viewer.php:1216 +#: ../../enterprise/operation/log/log_viewer.php:1199 +#: ../../enterprise/operation/log/log_viewer.php:1214 #: ../../enterprise/operation/services/services.treeview_services.php:416 #: ../../extensions/insert_data.php:285 -#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 #: ../../godmode/alerts/configure_alert_template.php:1512 #: ../../godmode/alerts/configure_alert_template.php:1596 -#: ../../godmode/setup/news.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5168 +#: ../../godmode/setup/news.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5177 #: ../../godmode/wizards/HostDevices.class.php:797 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:941 +#: ../../godmode/servers/servers.build_table.php:329 +#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775 +#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323 #: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:743 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631 -#: ../../operation/agentes/stat_win.php:591 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:470 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:451 +#: ../../operation/agentes/datos_agente.php:320 +#: ../../operation/agentes/estado_monitores.php:467 #: ../../operation/network/network_report.php:463 #: ../../operation/network/network_usage_map.php:300 -#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/netflow/nf_live_view.php:982 +#: ../../operation/search_modules.php:359 #: ../../operation/reporting/reporting_viewer.php:366 #: ../../operation/reporting/reporting_viewer.php:385 #: ../../operation/reporting/graph_viewer.php:472 -#: ../../operation/events/events.php:3229 +#: ../../operation/events/events.php:3288 msgid "Close" msgstr "" #: ../../enterprise/meta/advanced/massive_operations.php:55 #: ../../enterprise/meta/monitoring/wizard/wizard.php:71 #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64 -#: ../../general/node_deactivated.php:59 +#: ../../general/node_deactivated.php:64 msgid "command center" msgstr "" @@ -4820,7 +4889,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/component_management.php:35 -#: ../../include/functions_menu.php:614 +#: ../../include/functions_menu.php:618 msgid "Tags management" msgstr "" @@ -4837,7 +4906,7 @@ msgstr "" #: ../../godmode/groups/configure_modu_group.php:43 #: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:343 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:103 msgid "Module groups" msgstr "" @@ -4881,56 +4950,56 @@ msgid "Successfully update" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:100 -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:106 #: ../../enterprise/meta/include/functions_meta.php:1364 -#: ../../godmode/setup/setup_visuals.php:1757 -#: ../../include/functions_config.php:973 +#: ../../godmode/setup/setup_visuals.php:1772 +#: ../../include/functions_config.php:985 msgid "Date format string" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:108 #: ../../enterprise/tools/ipam/ipam_editor.php:147 -#: ../../godmode/setup/setup_visuals.php:1766 +#: ../../godmode/setup/setup_visuals.php:1781 msgid "Example" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../godmode/setup/setup_visuals.php:1801 +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Timestamp, time comparison, or compact mode" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:140 -#: ../../godmode/setup/setup_visuals.php:1611 +#: ../../godmode/setup/setup_visuals.php:1626 msgid "Comparation in rollover" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../godmode/setup/setup_visuals.php:1618 +#: ../../godmode/setup/setup_visuals.php:1633 msgid "Timestamp in rollover" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../godmode/setup/setup_visuals.php:1625 +#: ../../godmode/setup/setup_visuals.php:1640 msgid "Compact mode" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:164 -#: ../../include/functions_config.php:985 +#: ../../include/functions_config.php:997 msgid "Graph color #1" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:989 +#: ../../include/functions_config.php:1001 msgid "Graph color #2" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../include/functions_config.php:993 +#: ../../include/functions_config.php:1005 msgid "Graph color #3" msgstr "" @@ -4944,10 +5013,10 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:215 #: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/setup/setup_visuals.php:1260 #: ../../godmode/reporting/visual_console_builder.elements.php:233 #: ../../godmode/reporting/visual_console_builder.wizard.php:288 -#: ../../include/functions_visual_map_editor.php:684 +#: ../../include/functions_visual_map_editor.php:734 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "" @@ -4958,46 +5027,46 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:231 #: ../../enterprise/meta/include/functions_meta.php:1499 -#: ../../godmode/setup/setup_visuals.php:1160 -#: ../../include/functions_config.php:1025 +#: ../../godmode/setup/setup_visuals.php:1164 +#: ../../include/functions_config.php:1037 msgid "Value to interface graphics" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:247 #: ../../enterprise/meta/include/functions_meta.php:1512 -#: ../../godmode/users/configure_user.php:1380 -#: ../../godmode/users/user_management.php:583 +#: ../../godmode/users/configure_user.php:1429 +#: ../../godmode/users/user_management.php:589 #: ../../godmode/massive/massive_edit_users.php:263 -#: ../../godmode/setup/setup_visuals.php:92 -#: ../../godmode/events/event_edit_filter.php:457 -#: ../../include/functions_config.php:1042 +#: ../../godmode/setup/setup_visuals.php:96 +#: ../../godmode/events/event_edit_filter.php:459 +#: ../../include/functions_config.php:1054 #: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:263 #: ../../enterprise/meta/include/functions_meta.php:1428 -#: ../../godmode/setup/setup_visuals.php:1185 +#: ../../godmode/setup/setup_visuals.php:1189 msgid "Number of elements in Custom Graph" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:278 #: ../../enterprise/meta/include/functions_meta.php:1522 -#: ../../godmode/setup/setup_visuals.php:1199 -#: ../../include/functions_config.php:1046 +#: ../../godmode/setup/setup_visuals.php:1203 +#: ../../include/functions_config.php:1058 msgid "Use round corners" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:288 #: ../../enterprise/meta/include/functions_meta.php:1533 -#: ../../godmode/setup/setup_visuals.php:1210 -#: ../../include/functions_config.php:1050 +#: ../../godmode/setup/setup_visuals.php:1214 +#: ../../include/functions_config.php:1062 msgid "Chart fit to content" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:298 #: ../../enterprise/meta/include/functions_meta.php:1544 -#: ../../include/functions_config.php:1278 +#: ../../include/functions_config.php:1294 msgid "Disable help" msgstr "" @@ -5024,10 +5093,10 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:555 #: ../../enterprise/godmode/modules/local_components.php:588 #: ../../enterprise/godmode/agentes/collections.data.php:485 -#: ../../enterprise/godmode/policies/policy_queue.php:292 -#: ../../enterprise/godmode/policies/policy_queue.php:304 -#: ../../enterprise/godmode/policies/policy_queue.php:329 -#: ../../enterprise/godmode/policies/policy_queue.php:732 +#: ../../enterprise/godmode/policies/policy_queue.php:294 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:734 #: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../enterprise/godmode/policies/policy_agents.php:453 #: ../../enterprise/godmode/policies/policy_agents.php:588 @@ -5064,15 +5133,15 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:316 #: ../../enterprise/operation/agentes/tag_view.php:328 #: ../../enterprise/operation/agentes/tag_view.php:430 -#: ../../enterprise/operation/log/log_viewer.php:755 -#: ../../enterprise/operation/log/log_viewer.php:776 -#: ../../enterprise/operation/log/log_viewer.php:830 +#: ../../enterprise/operation/log/log_viewer.php:753 +#: ../../enterprise/operation/log/log_viewer.php:774 +#: ../../enterprise/operation/log/log_viewer.php:828 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 #: ../../extensions/resource_registration.php:1137 -#: ../../extensions/agents_modules.php:454 +#: ../../extensions/agents_modules.php:462 #: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:665 +#: ../../godmode/modules/manage_network_components.php:668 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -5087,12 +5156,12 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:152 #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 -#: ../../godmode/alerts/alert_templates.php:313 +#: ../../godmode/alerts/alert_templates.php:317 #: ../../godmode/alerts/alert_list.php:553 #: ../../godmode/alerts/alert_list.php:574 #: ../../godmode/alerts/alert_list.php:588 #: ../../godmode/setup/gis_step_2.php:238 -#: ../../godmode/setup/setup_visuals.php:1085 +#: ../../godmode/setup/setup_visuals.php:1089 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:234 #: ../../godmode/reporting/reporting_builder.list_items.php:251 @@ -5100,29 +5169,30 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1710 #: ../../godmode/reporting/reporting_builder.item_editor.php:1728 #: ../../godmode/reporting/reporting_builder.item_editor.php:2153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3685 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3016 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3694 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3855 #: ../../godmode/reporting/visual_console_builder.wizard.php:359 -#: ../../godmode/events/event_edit_filter.php:358 -#: ../../godmode/events/event_edit_filter.php:378 -#: ../../godmode/events/event_edit_filter.php:762 +#: ../../godmode/events/event_edit_filter.php:360 +#: ../../godmode/events/event_edit_filter.php:380 +#: ../../godmode/events/event_edit_filter.php:764 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 #: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65 -#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974 -#: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460 -#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1127 -#: ../../include/functions.php:1387 ../../include/ajax/events.php:521 +#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:1018 +#: ../../mobile/operation/events.php:1028 +#: ../../mobile/operation/events.php:1585 +#: ../../mobile/operation/events.php:1614 ../../include/functions.php:1127 +#: ../../include/functions.php:1387 ../../include/ajax/events.php:522 #: ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3604 #: ../../include/functions_modules.php:3606 #: ../../include/functions_users.php:428 ../../include/functions_users.php:686 #: ../../include/functions_notifications.php:105 -#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614 #: ../../include/functions_massive_operations.php:158 #: ../../include/functions_massive_operations.php:172 #: ../../include/class/EventSound.class.php:347 @@ -5132,24 +5202,24 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:308 #: ../../include/class/AuditLog.class.php:232 #: ../../include/class/AuditLog.class.php:242 -#: ../../include/class/TipsWindow.class.php:719 -#: ../../include/class/TipsWindow.class.php:886 -#: ../../include/functions_reporting.php:3343 -#: ../../include/functions_reporting.php:3440 +#: ../../include/class/TipsWindow.class.php:739 +#: ../../include/class/TipsWindow.class.php:906 +#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3449 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:397 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:431 -#: ../../include/functions_groups.php:646 -#: ../../include/functions_groups.php:1959 ../../operation/heatmap.php:122 -#: ../../operation/tree.php:205 ../../operation/tree.php:296 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:435 +#: ../../include/functions_groups.php:671 +#: ../../include/functions_groups.php:1984 ../../operation/heatmap.php:122 +#: ../../operation/tree.php:205 ../../operation/tree.php:297 #: ../../operation/agentes/estado_agente.php:330 -#: ../../operation/agentes/status_monitor.php:599 -#: ../../operation/agentes/status_monitor.php:680 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/agentes/estado_monitores.php:515 -#: ../../operation/agentes/estado_monitores.php:536 -#: ../../operation/agentes/agent_inventory.php:122 +#: ../../operation/agentes/status_monitor.php:598 +#: ../../operation/agentes/status_monitor.php:679 +#: ../../operation/agentes/status_monitor.php:979 +#: ../../operation/agentes/estado_monitores.php:512 +#: ../../operation/agentes/estado_monitores.php:533 +#: ../../operation/agentes/agent_inventory.php:124 #: ../../operation/agentes/alerts_status.functions.php:98 #: ../../operation/agentes/alerts_status.functions.php:134 #: ../../operation/agentes/alerts_status.functions.php:165 @@ -5160,25 +5230,25 @@ msgstr "" #: ../../operation/incidents/list_integriaims_incidents.php:407 #: ../../operation/inventory/inventory.php:78 #: ../../operation/inventory/inventory.php:79 -#: ../../operation/inventory/inventory.php:319 -#: ../../operation/inventory/inventory.php:320 -#: ../../operation/inventory/inventory.php:496 -#: ../../operation/inventory/inventory.php:529 -#: ../../operation/inventory/inventory.php:564 -#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745 -#: ../../operation/events/events.php:1839 -#: ../../operation/events/events.php:2039 +#: ../../operation/inventory/inventory.php:321 +#: ../../operation/inventory/inventory.php:322 +#: ../../operation/inventory/inventory.php:498 +#: ../../operation/inventory/inventory.php:531 +#: ../../operation/inventory/inventory.php:566 +#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799 +#: ../../operation/events/events.php:1893 +#: ../../operation/events/events.php:2093 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:1086 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "On Boolean graphs" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../godmode/setup/setup_visuals.php:1268 +#: ../../godmode/setup/setup_visuals.php:1272 msgid "Graph TIP view" msgstr "" @@ -5187,17 +5257,17 @@ msgid "This option may cause performance issues" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:328 -#: ../../godmode/setup/setup_visuals.php:1089 +#: ../../godmode/setup/setup_visuals.php:1093 msgid "Show only average by default" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../godmode/setup/setup_visuals.php:1090 +#: ../../godmode/setup/setup_visuals.php:1094 msgid "Show MAX/AVG/MIN by default" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:1284 +#: ../../godmode/setup/setup_visuals.php:1288 msgid "Graph mode" msgstr "" @@ -5206,16 +5276,16 @@ msgid "Zoom graphs:" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:369 -#: ../../godmode/setup/setup_visuals.php:1220 +#: ../../godmode/setup/setup_visuals.php:1224 msgid "Type of module charts" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:371 #: ../../enterprise/godmode/reporting/graph_template_editor.php:260 -#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/setup/setup_visuals.php:1231 #: ../../godmode/reporting/create_container.php:430 #: ../../godmode/reporting/graph_builder.main.php:208 -#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/functions_visual_map_editor.php:552 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:251 @@ -5228,16 +5298,16 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:378 #: ../../enterprise/godmode/reporting/graph_template_editor.php:262 -#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../godmode/setup/setup_visuals.php:1243 #: ../../godmode/reporting/create_container.php:431 #: ../../godmode/reporting/visual_console_builder.elements.php:365 #: ../../godmode/reporting/graph_builder.main.php:210 #: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_visual_map_editor.php:551 +#: ../../include/functions_visual_map_editor.php:1455 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:381 +#: ../../operation/visual_console/view.php:383 #: ../../operation/agentes/graphs.php:253 #: ../../operation/agentes/graphs.php:259 #: ../../operation/agentes/graphs.php:451 @@ -5258,33 +5328,33 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:401 #: ../../enterprise/meta/advanced/metasetup.visual.php:919 #: ../../enterprise/meta/advanced/metasetup.visual.php:920 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 #: ../../enterprise/include/ajax/log_viewer.ajax.php:282 #: ../../godmode/snmpconsole/snmp_alert.php:1608 -#: ../../godmode/setup/setup_visuals.php:1319 -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1898 -#: ../../include/functions_visual_map_editor.php:1221 -#: ../../include/functions_visual_map_editor.php:1222 +#: ../../godmode/setup/setup_visuals.php:1323 +#: ../../godmode/setup/setup_visuals.php:1324 +#: ../../godmode/setup/setup_visuals.php:1913 +#: ../../include/functions_visual_map_editor.php:1279 +#: ../../include/functions_visual_map_editor.php:1280 #: ../../include/functions.php:509 ../../include/functions.php:640 -#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353 -#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355 -#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360 -#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362 -#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364 -#: ../../include/functions_html.php:2135 -#: ../../operation/events/sound_events.php:199 -#: ../../operation/events/sound_events.php:200 -#: ../../operation/events/sound_events.php:201 -#: ../../operation/events/sound_events.php:202 -#: ../../operation/events/sound_events.php:206 -#: ../../operation/events/sound_events.php:207 -#: ../../operation/events/sound_events.php:208 -#: ../../operation/events/sound_events.php:209 -#: ../../operation/events/sound_events.php:210 -#: ../../operation/events/sound_events.php:211 +#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354 +#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356 +#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361 +#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363 +#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365 +#: ../../include/functions_html.php:2143 +#: ../../operation/events/sound_events.php:229 +#: ../../operation/events/sound_events.php:230 +#: ../../operation/events/sound_events.php:231 +#: ../../operation/events/sound_events.php:232 +#: ../../operation/events/sound_events.php:236 +#: ../../operation/events/sound_events.php:237 +#: ../../operation/events/sound_events.php:238 +#: ../../operation/events/sound_events.php:239 +#: ../../operation/events/sound_events.php:240 +#: ../../operation/events/sound_events.php:241 msgid "seconds" msgstr "" @@ -5294,45 +5364,45 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/advanced/metasetup.visual.php:924 #: ../../enterprise/include/ajax/log_viewer.ajax.php:284 -#: ../../godmode/setup/setup_visuals.php:1321 -#: ../../godmode/setup/setup_visuals.php:1322 -#: ../../godmode/setup/setup_visuals.php:1323 -#: ../../godmode/setup/setup_visuals.php:1324 -#: ../../godmode/setup/setup_visuals.php:1899 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../godmode/setup/setup_visuals.php:1326 +#: ../../godmode/setup/setup_visuals.php:1327 +#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1914 +#: ../../include/functions_visual_map_editor.php:1281 +#: ../../include/functions_visual_map_editor.php:1282 +#: ../../include/functions_visual_map_editor.php:1283 +#: ../../include/functions_visual_map_editor.php:1284 #: ../../include/functions.php:513 ../../include/functions.php:644 -#: ../../include/functions_html.php:2136 +#: ../../include/functions_html.php:2144 msgid "minutes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:403 #: ../../enterprise/include/ajax/log_viewer.ajax.php:286 -#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514 +#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514 #: ../../include/functions.php:645 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2137 +#: ../../include/functions_html.php:2145 msgid "hours" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:404 #: ../../enterprise/include/ajax/log_viewer.ajax.php:288 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 -#: ../../include/functions.php:641 ../../include/functions_html.php:2138 +#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2146 msgid "days" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:405 -#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511 -#: ../../include/functions.php:642 ../../include/functions_html.php:2140 +#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511 +#: ../../include/functions.php:642 ../../include/functions_html.php:2148 msgid "months" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:406 -#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512 -#: ../../include/functions.php:643 ../../include/functions_html.php:2141 +#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512 +#: ../../include/functions.php:643 ../../include/functions_html.php:2149 msgid "years" msgstr "" @@ -5392,67 +5462,67 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:2135 #: ../../godmode/gis_maps/configure_gis_map.php:642 #: ../../godmode/alerts/alert_list.list.php:893 -#: ../../godmode/setup/news.php:402 ../../godmode/setup/links.php:226 -#: ../../godmode/setup/setup_visuals.php:1833 -#: ../../godmode/setup/setup_visuals.php:1923 -#: ../../godmode/setup/setup_visuals.php:2005 -#: ../../godmode/reporting/graph_builder.graph_editor.php:397 +#: ../../godmode/setup/news.php:401 ../../godmode/setup/links.php:226 +#: ../../godmode/setup/setup_visuals.php:1848 +#: ../../godmode/setup/setup_visuals.php:1938 +#: ../../godmode/setup/setup_visuals.php:2020 +#: ../../godmode/reporting/graph_builder.graph_editor.php:324 #: ../../godmode/reporting/visual_console_builder.wizard.php:575 -#: ../../godmode/events/event_edit_filter.php:647 -#: ../../godmode/events/event_edit_filter.php:712 +#: ../../godmode/events/event_edit_filter.php:649 +#: ../../godmode/events/event_edit_filter.php:714 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483 #: ../../include/functions_notifications.php:970 #: ../../include/class/SatelliteAgent.class.php:1147 -#: ../../include/class/ManageNetScanScripts.class.php:475 -#: ../../include/functions_snmp_browser.php:1713 +#: ../../include/class/ManageNetScanScripts.class.php:473 +#: ../../include/functions_snmp_browser.php:1722 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 -#: ../../operation/events/events.php:1267 -#: ../../operation/events/events.php:1341 +#: ../../operation/events/events.php:1294 +#: ../../operation/events/events.php:1386 msgid "Add" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:443 #: ../../enterprise/meta/include/functions_meta.php:1853 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1465 msgid "Delete interval" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 #: ../../enterprise/meta/include/functions_meta.php:1644 -#: ../../godmode/setup/setup_visuals.php:1736 +#: ../../godmode/setup/setup_visuals.php:1751 msgid "Show only the group name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:475 -#: ../../include/functions_config.php:1306 +#: ../../include/functions_config.php:1322 msgid "Show the group name instead the group icon." msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:485 #: ../../enterprise/meta/include/functions_meta.php:1945 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../include/functions_config.php:1330 +#: ../../godmode/setup/setup_visuals.php:133 +#: ../../include/functions_config.php:1346 msgid "Display data of proc modules in other format" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:495 #: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/setup_visuals.php:140 -#: ../../include/functions_config.php:1334 +#: ../../godmode/setup/setup_visuals.php:144 +#: ../../include/functions_config.php:1350 msgid "Display text proc modules have state is ok" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:507 #: ../../enterprise/meta/include/functions_meta.php:1965 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../include/functions_config.php:1338 +#: ../../godmode/setup/setup_visuals.php:148 +#: ../../include/functions_config.php:1354 msgid "Display text when proc modules have state critical" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:528 #: ../../enterprise/meta/include/functions_meta.php:1684 -#: ../../godmode/setup/setup_visuals.php:393 -#: ../../include/functions_config.php:1070 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../include/functions_config.php:1082 msgid "Custom favicon" msgstr "" @@ -5463,7 +5533,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:563 -#: ../../godmode/setup/setup_visuals.php:424 +#: ../../godmode/setup/setup_visuals.php:428 msgid "Custom background logo" msgstr "" @@ -5481,108 +5551,107 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:70 #: ../../godmode/agentes/configurar_agente.php:386 #: ../../godmode/agentes/modificar_agente.php:83 -#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596 -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../godmode/setup/setup_visuals.php:465 -#: ../../godmode/setup/setup_visuals.php:490 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../godmode/setup/setup_visuals.php:541 -#: ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:660 -#: ../../godmode/setup/setup_visuals.php:698 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/setup/setup_visuals.php:924 -#: ../../godmode/reporting/visual_console_builder.php:841 +#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594 +#: ../../godmode/setup/setup_visuals.php:379 +#: ../../godmode/setup/setup_visuals.php:446 +#: ../../godmode/setup/setup_visuals.php:469 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:624 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../godmode/setup/setup_visuals.php:702 +#: ../../godmode/setup/setup_visuals.php:742 +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../godmode/reporting/visual_console_builder.php:849 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312 #: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212 +#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214 #: ../../operation/visual_console/legacy_view.php:189 #: ../../operation/agentes/status_monitor.php:77 -#: ../../operation/agentes/status_monitor.php:306 +#: ../../operation/agentes/status_monitor.php:305 msgid "View" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:602 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/setup/setup_visuals.php:464 msgid "Custom logo (menu)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:633 -#: ../../godmode/setup/setup_visuals.php:485 +#: ../../godmode/setup/setup_visuals.php:489 msgid "Custom logo collapsed (menu)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:663 -#: ../../godmode/setup/setup_visuals.php:511 +#: ../../godmode/setup/setup_visuals.php:515 msgid "Custom logo (header white background)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:694 -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:540 msgid "Custom logo (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../godmode/setup/setup_visuals.php:568 msgid "Custom Splash (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:754 #: ../../enterprise/meta/advanced/metasetup.visual.php:847 #: ../../enterprise/meta/include/functions_meta.php:1714 -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:1146 +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:1158 msgid "Product name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:767 #: ../../enterprise/meta/advanced/metasetup.visual.php:859 #: ../../enterprise/meta/include/functions_meta.php:1724 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../include/functions_config.php:1150 +#: ../../godmode/setup/setup_visuals.php:807 +#: ../../include/functions_config.php:1162 msgid "Copyright notice" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:780 #: ../../enterprise/meta/include/functions_meta.php:1614 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1154 -#: ../../include/functions_config.php:1158 +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1170 msgid "Background opacity % (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:786 -#: ../../godmode/setup/setup_visuals.php:762 +#: ../../godmode/setup/setup_visuals.php:766 msgid "Title (header)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:792 -#: ../../godmode/setup/setup_visuals.php:768 +#: ../../godmode/setup/setup_visuals.php:772 msgid "Subtitle (header)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:798 -#: ../../godmode/setup/setup_visuals.php:776 +#: ../../godmode/setup/setup_visuals.php:780 msgid "Title 1 (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:811 -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:785 msgid "Title 2 (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:823 #: ../../enterprise/meta/include/functions_meta.php:1774 -#: ../../godmode/setup/setup_visuals.php:787 +#: ../../godmode/setup/setup_visuals.php:791 msgid "Docs URL (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:835 #: ../../enterprise/meta/include/functions_meta.php:1784 -#: ../../godmode/setup/setup_visuals.php:792 +#: ../../godmode/setup/setup_visuals.php:796 msgid "Support URL (login)" msgstr "" @@ -5592,17 +5661,17 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:884 #: ../../enterprise/meta/include/functions_meta.php:1594 -#: ../../godmode/setup/setup_visuals.php:864 +#: ../../godmode/setup/setup_visuals.php:868 msgid "Visual effects and animation" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:894 -#: ../../godmode/setup/setup_visuals.php:875 +#: ../../godmode/setup/setup_visuals.php:879 msgid "Random background (login)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:906 -#: ../../godmode/setup/setup_visuals.php:1340 +#: ../../godmode/setup/setup_visuals.php:1344 msgid "Legacy Visual Console View" msgstr "" @@ -5611,26 +5680,26 @@ msgid "To use the old view when using the Visual Console visor" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:925 -#: ../../godmode/setup/setup_visuals.php:1325 -#: ../../include/functions_visual_map_editor.php:1227 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../include/functions_visual_map_editor.php:1285 msgid "hour" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:928 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Default cache expiration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:933 -#: ../../godmode/setup/setup_visuals.php:1355 -#: ../../include/functions_visual_map_editor.php:1253 +#: ../../godmode/setup/setup_visuals.php:1359 +#: ../../include/functions_visual_map_editor.php:1311 msgid "No cache" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:955 #: ../../enterprise/meta/include/functions_meta.php:1992 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../include/functions_config.php:1202 +#: ../../godmode/setup/setup_visuals.php:1373 +#: ../../include/functions_config.php:1214 msgid "Default interval for refresh on Visual Console" msgstr "" @@ -5639,34 +5708,36 @@ msgid "This interval will affect to Visual Console pages" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:973 -#: ../../godmode/setup/setup_visuals.php:1710 +#: ../../godmode/setup/setup_visuals.php:1725 msgid "Use 1024 when module unit are bytes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../godmode/setup/setup_visuals.php:1711 +#: ../../godmode/setup/setup_visuals.php:1726 msgid "Use always 1000" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:975 -#: ../../godmode/setup/setup_visuals.php:1712 +#: ../../godmode/setup/setup_visuals.php:1727 msgid "Use always 1024" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:978 -#: ../../godmode/setup/setup_visuals.php:2072 +#: ../../godmode/setup/setup_visuals.php:2087 msgid "Data multiplier to use in graphs/data" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:993 #: ../../enterprise/meta/include/functions_meta.php:1997 -#: ../../godmode/setup/setup_visuals.php:1416 -#: ../../include/functions_config.php:1218 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../include/functions_config.php:1230 msgid "Mobile view not allow visual console orientation" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1003 #: ../../enterprise/meta/include/functions_meta.php:2002 +#: ../../godmode/setup/setup_visuals.php:1430 +#: ../../include/functions_config.php:1234 msgid "Display item frame on alert triggered" msgstr "" @@ -5675,7 +5746,7 @@ msgid "Reports configuration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1482 +#: ../../godmode/setup/setup_visuals.php:1497 msgid "Show report info with description" msgstr "" @@ -5686,7 +5757,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 -#: ../../godmode/setup/setup_visuals.php:1492 +#: ../../godmode/setup/setup_visuals.php:1507 msgid "Custom report front page" msgstr "" @@ -5698,21 +5769,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 -#: ../../godmode/setup/setup_visuals.php:1503 -#: ../../include/functions_config.php:1480 +#: ../../godmode/setup/setup_visuals.php:1518 +#: ../../include/functions_config.php:1496 msgid "PDF font size (px)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1060 #: ../../enterprise/meta/include/functions_meta.php:1449 -#: ../../godmode/setup/setup_visuals.php:1507 -#: ../../include/functions_config.php:1476 +#: ../../godmode/setup/setup_visuals.php:1522 +#: ../../include/functions_config.php:1492 msgid "HTML font size for SLA (em)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1065 #: ../../enterprise/meta/include/functions_meta.php:1574 -#: ../../godmode/setup/setup_visuals.php:1513 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Graph image height for HTML reports" msgstr "" @@ -5724,21 +5795,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1127 #: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:2061 -#: ../../include/functions_config.php:1508 +#: ../../godmode/setup/setup_visuals.php:2076 +#: ../../include/functions_config.php:1524 msgid "CSV divider" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1136 #: ../../enterprise/meta/include/functions_meta.php:1489 -#: ../../godmode/setup/setup_visuals.php:2066 -#: ../../include/functions_config.php:1512 +#: ../../godmode/setup/setup_visuals.php:2081 +#: ../../include/functions_config.php:1528 msgid "CSV decimal separator" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1146 #: ../../enterprise/meta/include/functions_meta.php:1469 -#: ../../godmode/setup/setup_visuals.php:1517 +#: ../../godmode/setup/setup_visuals.php:1532 msgid "Interval description" msgstr "" @@ -5753,9 +5824,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1905 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125 -#: ../../godmode/setup/setup_visuals.php:1534 -#: ../../include/functions_config.php:1074 -#: ../../include/functions_config.php:1492 +#: ../../godmode/setup/setup_visuals.php:1549 +#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1508 msgid "Custom logo" msgstr "" @@ -5778,17 +5849,17 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/meta/include/functions_meta.php:1935 -#: ../../godmode/setup/setup_visuals.php:1534 #: ../../godmode/setup/setup_visuals.php:1549 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1484 -#: ../../include/functions_config.php:1488 -#: ../../include/functions_config.php:1492 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../godmode/setup/setup_visuals.php:1597 #: ../../include/functions_config.php:1500 #: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1508 +#: ../../include/functions_config.php:1512 +#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1520 msgid "Custom report front" msgstr "" @@ -5796,8 +5867,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../godmode/setup/setup_visuals.php:1555 -#: ../../include/functions_config.php:1496 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../include/functions_config.php:1512 msgid "Header" msgstr "" @@ -5806,23 +5877,91 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1925 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147 -#: ../../godmode/setup/setup_visuals.php:1568 -#: ../../include/functions_config.php:1500 +#: ../../godmode/setup/setup_visuals.php:1583 +#: ../../include/functions_config.php:1516 msgid "First page" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 -#: ../../godmode/setup/setup_visuals.php:2356 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1266 +#: ../../godmode/setup/setup_visuals.php:73 +msgid "Legacy visual console Information" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1267 +#: ../../godmode/setup/setup_visuals.php:74 +msgid "Visual console in legacy mode will no longer be supported as of LTS 772" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1400 +#: ../../enterprise/godmode/services/services.service.php:1025 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:1000 +#: ../../enterprise/include/class/LogSource.class.php:820 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 +#: ../../enterprise/include/class/ManageBackups.class.php:298 +#: ../../enterprise/include/class/ManageBackups.class.php:454 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:2949 +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../enterprise/include/functions_reporting.php:6176 +#: ../../enterprise/include/functions_reporting.php:6214 +#: ../../enterprise/include/functions_services.php:2091 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:415 +#: ../../godmode/setup/setup_visuals.php:2257 +#: ../../godmode/setup/setup_general.php:1044 +#: ../../godmode/setup/setup_general.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2743 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_reporting_html.php:862 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:4894 +#: ../../include/functions_db.php:1974 +#: ../../include/class/ConfigPEN.class.php:674 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/SatelliteAgent.class.php:1105 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1655 +#: ../../include/class/ModuleTemplates.class.php:1363 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6229 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:622 +#: ../../operation/snmpconsole/snmp_browser.php:698 +msgid "OK" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1437 +#: ../../godmode/setup/setup_visuals.php:2376 msgid "Logo preview" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 -#: ../../godmode/setup/setup_visuals.php:2386 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1459 +#: ../../godmode/setup/setup_visuals.php:2406 msgid "Splash Preview" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 -#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1464 +#: ../../godmode/setup/setup_visuals.php:2430 #: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "" @@ -5953,12 +6092,12 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:312 #: ../../godmode/massive/massive_add_action_alerts.php:210 #: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445 #: ../../include/functions_massive_operations.php:136 #: ../../include/lib/Dashboard/Widgets/groups_status.php:243 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 #: ../../include/lib/Dashboard/Widgets/events_list.php:447 -#: ../../operation/events/events.php:1704 +#: ../../operation/events/events.php:1758 msgid "Group recursion" msgstr "" @@ -6003,7 +6142,7 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474 #: ../../enterprise/include/class/Omnishell.class.php:1119 -#: ../../enterprise/operation/services/massive/services.create.php:1305 +#: ../../enterprise/operation/services/massive/services.create.php:1317 #: ../../enterprise/operation/services/massive/service.delete.elements.php:262 #: ../../enterprise/operation/services/massive/service.create.elements.php:610 #: ../../enterprise/operation/services/massive/service.edit.elements.php:369 @@ -6063,8 +6202,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../include/functions_inventory.php:142 -#: ../../include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "" @@ -6080,8 +6219,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 @@ -6095,9 +6234,9 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:130 #: ../../godmode/setup/setup_integria.php:444 #: ../../godmode/setup/setup_integria.php:578 -#: ../../include/functions_reporting_html.php:5374 -#: ../../include/functions_events.php:4593 -#: ../../operation/agentes/estado_generalagente.php:758 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_events.php:4598 +#: ../../operation/agentes/estado_generalagente.php:727 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:287 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 @@ -6128,7 +6267,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:287 #: ../../godmode/alerts/configure_alert_template.php:291 -#: ../../include/functions_config.php:1729 +#: ../../include/functions_config.php:1741 msgid "Step" msgstr "" @@ -6154,8 +6293,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:711 -#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_queue.php:713 +#: ../../enterprise/godmode/policies/policy_queue.php:716 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 #: ../../enterprise/include/class/Omnishell.class.php:369 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 @@ -6184,12 +6323,12 @@ msgid "checking migration requirements" msgstr "" #: ../../enterprise/meta/advanced/servers.php:37 -#: ../../godmode/servers/modificar_server.php:308 +#: ../../godmode/servers/modificar_server.php:330 msgid "Server deleted successfully" msgstr "" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:310 +#: ../../godmode/servers/modificar_server.php:332 msgid "There was a problem deleting the server" msgstr "" @@ -6215,12 +6354,12 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:308 -#: ../../godmode/users/configure_user.php:1096 -#: ../../godmode/users/user_management.php:558 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:564 #: ../../godmode/massive/massive_edit_users.php:248 -#: ../../include/class/TipsWindow.class.php:453 -#: ../../include/class/TipsWindow.class.php:702 -#: ../../include/class/TipsWindow.class.php:869 +#: ../../include/class/TipsWindow.class.php:465 +#: ../../include/class/TipsWindow.class.php:722 +#: ../../include/class/TipsWindow.class.php:889 #: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "" @@ -6250,7 +6389,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:334 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1511 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_agents.php:440 #: ../../enterprise/godmode/policies/policy_agents.php:462 @@ -6258,8 +6397,8 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:168 #: ../../enterprise/godmode/setup/setup_skins.php:131 #: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../enterprise/operation/log/log_viewer.php:610 -#: ../../enterprise/operation/log/log_viewer.php:957 +#: ../../enterprise/operation/log/log_viewer.php:608 +#: ../../enterprise/operation/log/log_viewer.php:955 #: ../../enterprise/operation/services/services.list.php:233 #: ../../enterprise/operation/services/services.list.php:338 #: ../../enterprise/operation/services/services.table_services.php:171 @@ -6276,23 +6415,23 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:335 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:375 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/users/user_list.php:484 ../../godmode/users/user_list.php:504 +#: ../../godmode/groups/group_list.php:786 +#: ../../godmode/users/user_list.php:485 ../../godmode/users/user_list.php:505 #: ../../godmode/agentes/planned_downtime.list.php:372 #: ../../godmode/agentes/planned_downtime.list.php:697 #: ../../godmode/alerts/alert_actions.php:250 #: ../../godmode/alerts/alert_actions.php:317 #: ../../godmode/alerts/alert_actions.php:332 #: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_templates.php:325 -#: ../../godmode/alerts/alert_templates.php:342 +#: ../../godmode/alerts/alert_templates.php:329 +#: ../../godmode/alerts/alert_templates.php:346 #: ../../godmode/reporting/map_builder.php:357 #: ../../godmode/reporting/graphs.php:238 #: ../../godmode/reporting/visual_console_favorite.php:177 #: ../../godmode/reporting/reporting_builder.item_editor.php:1313 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 -#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 +#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76 #: ../../include/functions_snmp.php:358 #: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 @@ -6300,14 +6439,13 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:2753 #: ../../include/lib/Dashboard/Widgets/heatmap.php:236 #: ../../include/functions_snmp_browser.php:1023 -#: ../../include/functions_snmp_browser.php:1641 +#: ../../include/functions_snmp_browser.php:1650 #: ../../operation/search_results.php:193 #: ../../operation/search_results.php:202 #: ../../operation/agentes/estado_agente.php:342 -#: ../../operation/agentes/status_monitor.php:915 -#: ../../operation/agentes/agent_inventory.php:138 -#: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 +#: ../../operation/agentes/status_monitor.php:917 +#: ../../operation/agentes/agent_inventory.php:153 +#: ../../operation/inventory/inventory.php:642 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "" @@ -6327,8 +6465,8 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/collections.php:473 #: ../../enterprise/godmode/agentes/collections.php:474 -#: ../../enterprise/godmode/policies/policy_modules.php:1512 -#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_modules.php:1557 +#: ../../enterprise/godmode/policies/policy_queue.php:380 #: ../../enterprise/godmode/policies/policies.php:364 #: ../../enterprise/godmode/policies/policy_linking.php:175 #: ../../enterprise/godmode/policies/policy_external_alerts.php:415 @@ -6338,14 +6476,14 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:511 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/operation/agentes/tag_view.php:533 -#: ../../enterprise/operation/log/log_viewer.php:1026 +#: ../../enterprise/operation/log/log_viewer.php:1024 #: ../../enterprise/operation/services/services.list.php:497 #: ../../enterprise/operation/services/services.table_services.php:472 #: ../../enterprise/operation/services/services.table_services.php:487 #: ../../extensions/module_groups.php:322 -#: ../../extensions/realtime_graphs.php:220 -#: ../../godmode/modules/manage_network_components.php:713 -#: ../../godmode/groups/group_list.php:820 +#: ../../extensions/realtime_graphs.php:216 +#: ../../godmode/modules/manage_network_components.php:716 +#: ../../godmode/groups/group_list.php:821 #: ../../godmode/agentes/planned_downtime.list.php:661 #: ../../godmode/agentes/planned_downtime.list.php:662 #: ../../godmode/agentes/planned_downtime.list.php:711 @@ -6356,16 +6494,17 @@ msgstr "" #: ../../godmode/reporting/visual_console_favorite.php:220 #: ../../godmode/reporting/reporting_builder.php:782 #: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124 -#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715 -#: ../../include/functions_ui.php:3728 -#: ../../include/class/AgentsAlerts.class.php:879 +#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763 +#: ../../include/functions_ui.php:3776 +#: ../../include/class/AgentsAlerts.class.php:880 #: ../../include/functions_snmp_browser.php:992 #: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/status_monitor.php:1081 +#: ../../operation/agentes/status_monitor.php:1083 +#: ../../operation/agentes/agent_inventory.php:188 #: ../../operation/network/network_report.php:219 #: ../../operation/network/network_report.php:220 #: ../../operation/incidents/list_integriaims_incidents.php:502 -#: ../../operation/inventory/inventory.php:721 +#: ../../operation/inventory/inventory.php:722 #: ../../operation/reporting/reporting_viewer.php:305 #: ../../operation/reporting/graph_viewer.php:415 msgid "Filters" @@ -6394,7 +6533,7 @@ msgstr "" #: ../../include/ajax/visual_console_builder.ajax.php:343 #: ../../include/functions_visual_map.php:2843 #: ../../operation/network/network_usage_map.php:275 -#: ../../operation/netflow/nf_live_view.php:647 +#: ../../operation/netflow/nf_live_view.php:720 msgid "No data to show" msgstr "" @@ -6408,14 +6547,14 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 #: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:106 #: ../../godmode/massive/massive_edit_modules.php:834 -#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918 -#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029 -#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182 -#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699 +#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929 +#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040 +#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190 +#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727 #: ../../include/class/CredentialStore.class.php:959 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:283 msgid "Custom" msgstr "" @@ -6442,8 +6581,8 @@ msgid "Imei" msgstr "" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3265 -#: ../../include/class/NetworkMap.class.php:3266 +#: ../../include/class/NetworkMap.class.php:3271 +#: ../../include/class/NetworkMap.class.php:3272 msgid "Relations" msgstr "" @@ -6479,21 +6618,21 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:115 #: ../../enterprise/operation/services/services.list.php:544 -#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../godmode/agentes/module_manager_editor_common.php:1442 #: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/massive/massive_edit_modules.php:899 #: ../../godmode/alerts/configure_alert_template.php:839 -#: ../../godmode/setup/setup_visuals.php:1823 -#: ../../godmode/setup/setup_visuals.php:1913 -#: ../../godmode/setup/setup_visuals.php:1995 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2708 +#: ../../godmode/setup/setup_visuals.php:1838 +#: ../../godmode/setup/setup_visuals.php:1928 +#: ../../godmode/setup/setup_visuals.php:2010 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 #: ../../godmode/reporting/visual_console_builder.wizard.php:330 -#: ../../include/functions_visual_map_editor.php:691 +#: ../../include/functions_visual_map_editor.php:741 #: ../../include/functions_reporting_html.php:949 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:4962 -#: ../../include/functions_reporting_html.php:5492 -#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_reporting_html.php:4990 +#: ../../include/functions_reporting_html.php:5520 +#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 @@ -6511,7 +6650,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 -#: ../../enterprise/godmode/policies/policy_modules.php:1546 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 @@ -6533,7 +6672,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:330 #: ../../godmode/modules/manage_nc_groups.php:266 #: ../../godmode/modules/manage_inventory_modules.php:295 -#: ../../godmode/modules/manage_network_components.php:781 +#: ../../godmode/modules/manage_network_components.php:784 #: ../../godmode/modules/manage_network_templates.php:250 #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 @@ -6543,26 +6682,26 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 -#: ../../godmode/massive/massive_operations.php:452 +#: ../../godmode/massive/massive_operations.php:454 #: ../../godmode/massive/massive_standby_alerts.php:251 #: ../../godmode/massive/massive_delete_action_alerts.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:223 #: ../../godmode/massive/massive_add_action_alerts.php:249 #: ../../godmode/alerts/alert_list.list.php:825 #: ../../godmode/alerts/alert_view.php:394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4138 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4659 #: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../godmode/events/event_filter.php:149 -#: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:6047 #: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:207 -#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/AgentsAlerts.class.php:912 #: ../../include/class/SnmpConsole.class.php:512 #: ../../include/class/AuditLog.class.php:111 #: ../../include/class/AuditLog.class.php:230 @@ -6571,7 +6710,7 @@ msgstr "" #: ../../operation/agentes/alerts_status.php:279 #: ../../operation/agentes/alerts_status.php:280 #: ../../operation/agentes/alerts_status.functions.php:178 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301 msgid "Action" msgstr "" @@ -6590,7 +6729,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:377 #: ../../enterprise/godmode/setup/setup.php:318 -#: ../../include/functions_config.php:494 +#: ../../include/functions_config.php:502 msgid "Enable password policy" msgstr "" @@ -6625,7 +6764,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:431 #: ../../enterprise/godmode/setup/setup_auth.php:479 -#: ../../enterprise/godmode/setup/setup_auth.php:1287 +#: ../../enterprise/godmode/setup/setup_auth.php:1504 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6634,11 +6773,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:395 -#: ../../godmode/users/configure_user.php:1301 +#: ../../godmode/users/configure_user.php:1365 #: ../../godmode/agentes/agent_conf_gis.php:133 -#: ../../godmode/massive/massive_edit_agents.php:671 -#: ../../godmode/massive/massive_edit_agents.php:1084 -#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:1101 +#: ../../godmode/massive/massive_edit_agents.php:1133 #: ../../godmode/massive/massive_edit_modules.php:631 #: ../../godmode/massive/massive_edit_modules.php:653 #: ../../godmode/massive/massive_edit_modules.php:722 @@ -6653,13 +6792,13 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 #: ../../godmode/servers/modificar_server.php:80 -#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 #: ../../include/class/EventSound.class.php:349 #: ../../include/class/SnmpConsole.class.php:403 #: ../../operation/users/user_edit.php:433 -#: ../../operation/netflow/nf_live_view.php:340 +#: ../../operation/netflow/nf_live_view.php:349 msgid "Yes" msgstr "" @@ -6695,7 +6834,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:434 #: ../../enterprise/godmode/setup/setup_auth.php:482 -#: ../../enterprise/godmode/setup/setup_auth.php:1290 +#: ../../enterprise/godmode/setup/setup_auth.php:1507 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:523 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 #: ../../enterprise/godmode/reporting/visual_console_template.php:304 @@ -6704,11 +6843,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2357 #: ../../godmode/update_manager/update_manager.setup.php:396 -#: ../../godmode/users/configure_user.php:1302 +#: ../../godmode/users/configure_user.php:1366 #: ../../godmode/agentes/agent_conf_gis.php:142 -#: ../../godmode/massive/massive_edit_agents.php:672 -#: ../../godmode/massive/massive_edit_agents.php:1095 -#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_agents.php:689 +#: ../../godmode/massive/massive_edit_agents.php:1112 +#: ../../godmode/massive/massive_edit_agents.php:1134 #: ../../godmode/massive/massive_edit_modules.php:632 #: ../../godmode/massive/massive_edit_modules.php:654 #: ../../godmode/massive/massive_edit_modules.php:723 @@ -6719,28 +6858,28 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:1125 #: ../../godmode/alerts/alert_view.php:135 #: ../../godmode/alerts/alert_view.php:265 -#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 +#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 #: ../../godmode/reporting/visual_console_builder.wizard.php:492 #: ../../godmode/servers/modificar_server.php:78 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 -#: ../../include/functions_reporting_html.php:1664 +#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366 +#: ../../include/functions_reporting_html.php:1673 #: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 #: ../../include/class/EventSound.class.php:348 #: ../../include/class/SnmpConsole.class.php:402 -#: ../../include/functions_events.php:4971 #: ../../include/functions_events.php:4976 +#: ../../include/functions_events.php:4981 #: ../../operation/users/user_edit.php:434 -#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:359 msgid "No" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:114 #: ../../enterprise/meta/include/functions_meta.php:387 #: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:498 +#: ../../include/functions_config.php:506 msgid "Min. size password" msgstr "" @@ -6752,7 +6891,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:126 #: ../../enterprise/meta/include/functions_meta.php:417 #: ../../enterprise/godmode/setup/setup.php:347 -#: ../../include/functions_config.php:502 +#: ../../include/functions_config.php:510 msgid "Password expiration" msgstr "" @@ -6768,7 +6907,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:138 #: ../../enterprise/meta/include/functions_meta.php:437 #: ../../enterprise/godmode/setup/setup.php:395 -#: ../../include/functions_config.php:510 +#: ../../include/functions_config.php:518 msgid "User blocked if login fails" msgstr "" @@ -6780,7 +6919,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:150 #: ../../enterprise/meta/include/functions_meta.php:447 #: ../../enterprise/godmode/setup/setup.php:413 -#: ../../include/functions_config.php:514 +#: ../../include/functions_config.php:522 msgid "Number of failed login attempts" msgstr "" @@ -6796,56 +6935,56 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/include/functions_meta.php:469 #: ../../enterprise/godmode/setup/setup.php:451 -#: ../../include/functions_config.php:534 +#: ../../include/functions_config.php:542 msgid "Compare previous password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:174 #: ../../enterprise/meta/include/functions_meta.php:457 #: ../../enterprise/godmode/setup/setup.php:441 -#: ../../include/functions_config.php:530 +#: ../../include/functions_config.php:538 msgid "Enable password history" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:192 #: ../../enterprise/meta/include/functions_meta.php:480 #: ../../enterprise/godmode/setup/setup.php:431 -#: ../../include/functions_config.php:526 +#: ../../include/functions_config.php:534 msgid "Apply password policy to admin users" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:199 #: ../../enterprise/meta/include/functions_meta.php:427 #: ../../enterprise/godmode/setup/setup.php:385 -#: ../../include/functions_config.php:506 +#: ../../include/functions_config.php:514 msgid "Force change password on first login" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:206 #: ../../enterprise/meta/include/functions_meta.php:397 #: ../../enterprise/godmode/setup/setup.php:365 -#: ../../include/functions_config.php:518 +#: ../../include/functions_config.php:526 msgid "Password must have numbers" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:213 #: ../../enterprise/meta/include/functions_meta.php:407 #: ../../enterprise/godmode/setup/setup.php:375 -#: ../../include/functions_config.php:522 +#: ../../include/functions_config.php:530 msgid "Password must have symbols" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:220 #: ../../enterprise/meta/include/functions_meta.php:491 #: ../../enterprise/godmode/setup/setup.php:463 -#: ../../include/functions_config.php:538 +#: ../../include/functions_config.php:546 msgid "Activate reset password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:228 #: ../../enterprise/meta/include/functions_meta.php:501 #: ../../enterprise/godmode/setup/setup.php:473 -#: ../../include/functions_config.php:542 +#: ../../include/functions_config.php:550 msgid "Exclusion word list for passwords" msgstr "" @@ -6908,56 +7047,56 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:725 +#: ../../godmode/setup/setup_general.php:751 msgid "Mail configuration" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:398 +#: ../../include/functions_config.php:406 msgid "From dir" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:782 +#: ../../include/functions_config.php:410 msgid "From name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:132 -#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:402 msgid "Server SMTP" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:137 -#: ../../include/functions_config.php:406 +#: ../../include/functions_config.php:414 msgid "Port SMTP" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:843 +#: ../../include/functions_config.php:418 msgid "Encryption" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 #: ../../godmode/gis_maps/configure_gis_map.php:586 -#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/setup/setup_general.php:849 #: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 -#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 +#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130 msgid "none" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:155 -#: ../../godmode/setup/setup_general.php:792 -#: ../../include/functions_config.php:414 +#: ../../godmode/setup/setup_general.php:818 +#: ../../include/functions_config.php:422 msgid "Email user" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:160 -#: ../../godmode/setup/setup_general.php:803 -#: ../../include/functions_config.php:418 +#: ../../godmode/setup/setup_general.php:829 +#: ../../include/functions_config.php:426 msgid "Email password" msgstr "" @@ -6981,11 +7120,11 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:260 #: ../../enterprise/operation/log/elasticsearch_interface.php:30 -#: ../../enterprise/operation/log/log_viewer.php:399 -#: ../../enterprise/operation/log/log_viewer.php:439 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/operation/log/log_viewer.php:397 +#: ../../enterprise/operation/log/log_viewer.php:437 +#: ../../enterprise/operation/log/log_viewer.php:496 #: ../../enterprise/operation/menu.php:162 -#: ../../operation/agentes/ver_agente.php:1893 +#: ../../operation/agentes/ver_agente.php:1889 msgid "Log viewer" msgstr "" @@ -6993,12 +7132,12 @@ msgstr "" #: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "History database" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "" @@ -7015,7 +7154,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 -#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -7032,7 +7171,7 @@ msgid "Mail" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:150 -#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387 #: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "" @@ -7104,8 +7243,8 @@ msgstr "" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338 -#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389 +#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336 +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389 #: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67 #: ../../godmode/setup/gis_step_2.php:100 #: ../../godmode/setup/gis_step_2.php:104 @@ -7159,39 +7298,20 @@ msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:254 #: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:349 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 -#: ../../operation/agentes/ver_agente.php:1860 +#: ../../operation/agentes/ver_agente.php:1856 #: ../../operation/search_main.php:73 msgid "Policies" msgstr "" -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/new_HA_cluster.php:86 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../enterprise/godmode/servers/manage_export.php:69 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:353 -#: ../../godmode/servers/modificar_server.php:59 -#: ../../godmode/servers/modificar_server.php:218 -#: ../../godmode/servers/modificar_server.php:271 -#: ../../godmode/servers/plugin_registration.php:73 -#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355 -#: ../../godmode/servers/plugin.php:802 -#: ../../mobile/include/functions_web.php:28 -#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370 -msgid "Servers" -msgstr "" - #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_queue.php:758 #: ../../enterprise/godmode/policies/policy_agents.php:964 #: ../../enterprise/godmode/policies/policy_agents.php:1348 -#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_visual_map_editor.php:637 msgid "Apply" msgstr "" @@ -7285,8 +7405,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:137 #: ../../enterprise/godmode/policies/policy_modules.php:529 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:448 -#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/users/user_list.php:449 +#: ../../godmode/agentes/configurar_agente.php:2251 #: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 @@ -7298,7 +7418,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:138 #: ../../enterprise/godmode/policies/policy_modules.php:530 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/configurar_agente.php:2252 #: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 @@ -7310,8 +7430,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:163 #: ../../enterprise/godmode/policies/policy_modules.php:546 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:442 -#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/users/user_list.php:443 +#: ../../godmode/agentes/configurar_agente.php:2276 #: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 @@ -7373,29 +7493,30 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:347 #: ../../godmode/reporting/reporting_builder.item_editor.php:1290 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.elements.php:310 #: ../../godmode/reporting/visual_console_builder.wizard.php:469 #: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:777 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4210 -#: ../../include/rest-api/models/VisualConsole/Item.php:1942 -#: ../../include/rest-api/models/VisualConsole/Item.php:2136 +#: ../../include/functions_visual_map_editor.php:189 +#: ../../include/functions_visual_map_editor.php:817 +#: ../../include/functions_visual_map_editor.php:1450 +#: ../../include/functions_visual_map.php:4219 +#: ../../include/rest-api/models/VisualConsole/Item.php:1947 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:329 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447 #: ../../include/lib/Dashboard/Widgets/module_icon.php:347 #: ../../include/lib/Dashboard/Widgets/module_value.php:322 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:338 -#: ../../operation/visual_console/view.php:356 +#: ../../operation/visual_console/view.php:358 msgid "Label" msgstr "" @@ -7483,12 +7604,12 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:227 #: ../../extensions/quick_shell.php:539 #: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/agent_manager.php:905 -#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/agentes/agent_manager.php:912 +#: ../../godmode/massive/massive_edit_agents.php:1175 #: ../../godmode/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:893 -#: ../../operation/agentes/status_monitor.php:1022 -#: ../../operation/events/events.php:2271 +#: ../../include/functions_visual_map_editor.php:941 +#: ../../operation/agentes/status_monitor.php:1024 +#: ../../operation/events/events.php:2325 msgid "Advanced options" msgstr "" @@ -7588,7 +7709,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam.php:426 #: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 #: ../../operation/agentes/ver_agente.php:1375 -#: ../../operation/agentes/ver_agente.php:1831 +#: ../../operation/agentes/ver_agente.php:1827 msgid "Manage" msgstr "" @@ -7631,7 +7752,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:108 #: ../../godmode/users/profile_list.php:278 -#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/users/configure_user.php:479 #: ../../godmode/agentes/configurar_agente.php:888 #: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 @@ -7640,7 +7761,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:553 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57 -#: ../../include/functions_alerts.php:2754 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/EventSound.class.php:103 #: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 @@ -7660,7 +7781,7 @@ msgstr "" #: ../../enterprise/meta/advanced/links.php:69 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/policies/policy_modules.php:1310 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 @@ -7677,21 +7798,21 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:142 #: ../../godmode/users/profile_list.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/configurar_agente.php:1214 #: ../../godmode/agentes/planned_downtime.editor.php:662 -#: ../../godmode/netflow/nf_edit_form.php:140 +#: ../../godmode/netflow/nf_edit_form.php:172 #: ../../godmode/snmpconsole/snmp_alert.php:444 #: ../../godmode/snmpconsole/snmp_filters.php:110 #: ../../godmode/massive/massive_edit_modules.php:184 #: ../../godmode/alerts/configure_alert_command.php:149 -#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/alert_templates.php:165 #: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 #: ../../godmode/alerts/alert_list.php:319 ../../godmode/setup/news.php:124 #: ../../godmode/setup/gis.php:39 ../../godmode/setup/links.php:76 -#: ../../godmode/events/event_edit_filter.php:242 -#: ../../include/functions_alerts.php:2754 +#: ../../godmode/events/event_edit_filter.php:244 +#: ../../include/functions_alerts.php:2755 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 #: ../../include/functions_planned_downtimes.php:125 @@ -7750,7 +7871,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:145 #: ../../godmode/netflow/nf_item_list.php:49 #: ../../operation/agentes/ver_agente.php:1390 -#: ../../operation/agentes/ver_agente.php:1835 +#: ../../operation/agentes/ver_agente.php:1831 msgid "Main" msgstr "" @@ -7826,52 +7947,67 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:787 #: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230 #: ../../extensions/insert_data.php:235 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:133 +#: ../../godmode/agentes/status_monitor_custom_fields.php:170 #: ../../godmode/events/custom_events.php:113 -#: ../../mobile/operation/modules.php:715 -#: ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 -#: ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 -#: ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 -#: ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 -#: ../../mobile/operation/modules.php:727 +#: ../../mobile/operation/modules.php:726 #: ../../mobile/operation/modules.php:730 #: ../../mobile/operation/modules.php:731 #: ../../mobile/operation/modules.php:732 #: ../../mobile/operation/modules.php:733 #: ../../mobile/operation/modules.php:734 #: ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 #: ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:2836 -#: ../../include/functions_reporting_html.php:2840 -#: ../../include/functions_reporting_html.php:2841 -#: ../../include/functions_reporting_html.php:2845 -#: ../../include/functions_reporting_html.php:2850 -#: ../../include/functions_reporting_html.php:2855 -#: ../../include/functions_reporting_html.php:2859 +#: ../../mobile/operation/modules.php:740 +#: ../../mobile/operation/modules.php:741 +#: ../../mobile/operation/modules.php:742 +#: ../../mobile/operation/modules.php:743 +#: ../../mobile/operation/modules.php:744 +#: ../../mobile/operation/modules.php:745 +#: ../../mobile/operation/modules.php:749 +#: ../../mobile/operation/modules.php:750 +#: ../../mobile/operation/modules.php:751 +#: ../../mobile/operation/modules.php:752 +#: ../../mobile/operation/modules.php:753 +#: ../../mobile/operation/modules.php:754 +#: ../../mobile/operation/modules.php:755 +#: ../../mobile/operation/modules.php:756 +#: ../../mobile/operation/modules.php:758 +#: ../../mobile/operation/modules.php:761 +#: ../../mobile/operation/modules.php:762 +#: ../../mobile/operation/modules.php:763 +#: ../../mobile/operation/modules.php:764 +#: ../../mobile/operation/modules.php:765 +#: ../../mobile/operation/modules.php:766 +#: ../../mobile/operation/modules.php:767 +#: ../../mobile/operation/modules.php:768 +#: ../../mobile/operation/modules.php:912 +#: ../../mobile/operation/module_data.php:164 +#: ../../include/functions_reporting_html.php:2378 #: ../../include/functions_reporting_html.php:2864 -#: ../../include/functions_reporting_html.php:2871 -#: ../../include/functions_reporting_html.php:2921 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3504 +#: ../../include/functions_reporting_html.php:2868 +#: ../../include/functions_reporting_html.php:2869 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_reporting_html.php:2878 +#: ../../include/functions_reporting_html.php:2883 +#: ../../include/functions_reporting_html.php:2887 +#: ../../include/functions_reporting_html.php:2892 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:2949 +#: ../../include/functions_reporting_html.php:3023 +#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028 +#: ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3514 #: ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4729 -#: ../../include/functions_reporting.php:4770 +#: ../../include/functions_reporting.php:4738 +#: ../../include/functions_reporting.php:4779 #: ../../include/functions_events.php:218 #: ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1590 +#: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_modules.php:38 +#: ../../operation/search_modules.php:41 msgid "Data" msgstr "" @@ -7929,7 +8065,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:74 #: ../../enterprise/godmode/agentes/collections.editor.php:463 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1679 +#: ../../operation/agentes/ver_agente.php:1675 msgid "Files" msgstr "" @@ -8030,7 +8166,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 #: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../include/functions_filemanager.php:791 msgid "Edit file" msgstr "" @@ -8116,27 +8252,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 -#: ../../enterprise/operation/log/log_viewer.php:1195 -#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/log/log_viewer.php:1193 +#: ../../enterprise/operation/log/log_viewer.php:1208 #: ../../enterprise/operation/services/services.treeview_services.php:410 #: ../../extensions/insert_data.php:279 -#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../godmode/agentes/planned_downtime.editor.php:2007 #: ../../godmode/alerts/configure_alert_template.php:1506 #: ../../godmode/alerts/configure_alert_template.php:1590 -#: ../../godmode/setup/news.php:431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:737 -#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../godmode/setup/news.php:430 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:730 +#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601 +#: ../../operation/agentes/interface_traffic_graph_win.php:445 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:461 #: ../../operation/network/network_report.php:457 #: ../../operation/network/network_usage_map.php:294 -#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/netflow/nf_live_view.php:976 +#: ../../operation/search_modules.php:353 #: ../../operation/reporting/reporting_viewer.php:360 #: ../../operation/reporting/reporting_viewer.php:379 #: ../../operation/reporting/graph_viewer.php:466 -#: ../../operation/events/events.php:3223 +#: ../../operation/events/events.php:3282 msgid "Choose time" msgstr "" @@ -8148,28 +8285,29 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:1196 -#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/log/log_viewer.php:1194 +#: ../../enterprise/operation/log/log_viewer.php:1209 #: ../../enterprise/operation/services/services.treeview_services.php:411 #: ../../extensions/insert_data.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../godmode/agentes/planned_downtime.editor.php:2008 #: ../../godmode/alerts/configure_alert_template.php:1507 #: ../../godmode/alerts/configure_alert_template.php:1591 -#: ../../godmode/setup/news.php:432 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5163 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:738 -#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/estado_monitores.php:465 +#: ../../godmode/setup/news.php:431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5172 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:731 +#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602 +#: ../../operation/agentes/interface_traffic_graph_win.php:446 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:462 #: ../../operation/network/network_report.php:458 #: ../../operation/network/network_usage_map.php:295 -#: ../../operation/netflow/nf_live_view.php:866 +#: ../../operation/netflow/nf_live_view.php:977 +#: ../../operation/search_modules.php:354 #: ../../operation/reporting/reporting_viewer.php:361 #: ../../operation/reporting/reporting_viewer.php:380 #: ../../operation/reporting/graph_viewer.php:333 #: ../../operation/reporting/graph_viewer.php:467 -#: ../../operation/events/events.php:3224 +#: ../../operation/events/events.php:3283 msgid "Time" msgstr "" @@ -8180,28 +8318,29 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:43 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412 -#: ../../enterprise/operation/log/log_viewer.php:1197 -#: ../../enterprise/operation/log/log_viewer.php:1212 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 #: ../../enterprise/operation/services/services.treeview_services.php:412 #: ../../extensions/insert_data.php:281 -#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../godmode/agentes/planned_downtime.editor.php:2009 #: ../../godmode/alerts/configure_alert_template.php:1508 #: ../../godmode/alerts/configure_alert_template.php:1592 -#: ../../godmode/setup/news.php:433 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5164 -#: ../../include/functions_html.php:2319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:739 -#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/estado_monitores.php:466 +#: ../../godmode/setup/news.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5173 +#: ../../include/functions_html.php:2334 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603 +#: ../../operation/agentes/interface_traffic_graph_win.php:447 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:463 #: ../../operation/network/network_report.php:459 #: ../../operation/network/network_usage_map.php:296 -#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/netflow/nf_live_view.php:978 +#: ../../operation/search_modules.php:355 #: ../../operation/reporting/reporting_viewer.php:362 #: ../../operation/reporting/reporting_viewer.php:381 #: ../../operation/reporting/graph_viewer.php:468 -#: ../../operation/events/events.php:3225 +#: ../../operation/events/events.php:3284 msgid "Hour" msgstr "" @@ -8212,28 +8351,29 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:44 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413 -#: ../../enterprise/operation/log/log_viewer.php:1198 -#: ../../enterprise/operation/log/log_viewer.php:1213 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 #: ../../enterprise/operation/services/services.treeview_services.php:413 #: ../../extensions/insert_data.php:282 -#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../godmode/agentes/planned_downtime.editor.php:2010 #: ../../godmode/alerts/configure_alert_template.php:1509 #: ../../godmode/alerts/configure_alert_template.php:1593 -#: ../../godmode/setup/news.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5165 -#: ../../include/functions_html.php:2320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:740 -#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/estado_monitores.php:467 +#: ../../godmode/setup/news.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5174 +#: ../../include/functions_html.php:2335 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:448 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:464 #: ../../operation/network/network_report.php:460 #: ../../operation/network/network_usage_map.php:297 -#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/netflow/nf_live_view.php:979 +#: ../../operation/search_modules.php:356 #: ../../operation/reporting/reporting_viewer.php:363 #: ../../operation/reporting/reporting_viewer.php:382 #: ../../operation/reporting/graph_viewer.php:469 -#: ../../operation/events/events.php:3226 +#: ../../operation/events/events.php:3285 msgid "Minute" msgstr "" @@ -8244,27 +8384,28 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:45 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414 -#: ../../enterprise/operation/log/log_viewer.php:1199 -#: ../../enterprise/operation/log/log_viewer.php:1214 +#: ../../enterprise/operation/log/log_viewer.php:1197 +#: ../../enterprise/operation/log/log_viewer.php:1212 #: ../../enterprise/operation/services/services.treeview_services.php:414 #: ../../extensions/insert_data.php:283 -#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 #: ../../godmode/alerts/configure_alert_template.php:1510 #: ../../godmode/alerts/configure_alert_template.php:1594 -#: ../../godmode/setup/news.php:435 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5166 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:741 -#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/estado_monitores.php:468 +#: ../../godmode/setup/news.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5175 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 +#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:449 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:465 #: ../../operation/network/network_report.php:461 #: ../../operation/network/network_usage_map.php:298 -#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/netflow/nf_live_view.php:980 +#: ../../operation/search_modules.php:357 #: ../../operation/reporting/reporting_viewer.php:364 #: ../../operation/reporting/reporting_viewer.php:383 #: ../../operation/reporting/graph_viewer.php:470 -#: ../../operation/events/events.php:3227 +#: ../../operation/events/events.php:3286 msgid "Second" msgstr "" @@ -8275,36 +8416,37 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415 -#: ../../enterprise/operation/log/log_viewer.php:1200 -#: ../../enterprise/operation/log/log_viewer.php:1215 +#: ../../enterprise/operation/log/log_viewer.php:1198 +#: ../../enterprise/operation/log/log_viewer.php:1213 #: ../../enterprise/operation/services/services.treeview_services.php:415 #: ../../extensions/insert_data.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 #: ../../godmode/alerts/configure_alert_template.php:1511 #: ../../godmode/alerts/configure_alert_template.php:1595 -#: ../../godmode/setup/news.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5167 +#: ../../godmode/setup/news.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5176 #: ../../include/functions.php:515 ../../include/functions.php:646 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:742 -#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590 -#: ../../operation/agentes/interface_traffic_graph_win.php:441 -#: ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/estado_monitores.php:469 -#: ../../operation/agentes/agent_inventory.php:133 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:735 +#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:450 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/agent_inventory.php:141 #: ../../operation/network/network_report.php:462 #: ../../operation/network/network_usage_map.php:299 -#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/netflow/nf_live_view.php:981 +#: ../../operation/search_modules.php:358 #: ../../operation/reporting/reporting_viewer.php:365 #: ../../operation/reporting/reporting_viewer.php:384 #: ../../operation/reporting/graph_viewer.php:471 -#: ../../operation/events/events.php:3228 +#: ../../operation/events/events.php:3287 msgid "Now" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:78 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1405 +#: ../../godmode/users/configure_user.php:1454 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:953 @@ -8330,19 +8472,19 @@ msgstr "" #: ../../godmode/setup/setup_general.php:58 #: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1142 -#: ../../include/functions_reporting_html.php:2701 +#: ../../include/functions_reporting_html.php:2720 #: ../../include/functions.php:1291 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3162 -#: ../../operation/events/events.php:833 +#: ../../include/functions_events.php:3167 +#: ../../operation/events/events.php:838 msgid "System" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:111 #: ../../godmode/setup/setup_general.php:59 -#: ../../include/functions_menu.php:937 +#: ../../include/functions_menu.php:942 msgid "Database" msgstr "" @@ -8398,7 +8540,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:192 #: ../../enterprise/godmode/setup/setup_auth.php:353 #: ../../godmode/setup/setup_general.php:80 -#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/functions_visual_map_editor.php:286 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" @@ -8407,7 +8549,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:193 #: ../../enterprise/godmode/setup/setup_auth.php:354 #: ../../godmode/setup/setup_general.php:81 -#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/functions_visual_map_editor.php:287 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" @@ -8416,7 +8558,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:355 #: ../../godmode/setup/setup_general.php:82 -#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/functions_visual_map_editor.php:288 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" @@ -8425,7 +8567,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:356 #: ../../godmode/setup/setup_general.php:83 -#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/functions_visual_map_editor.php:289 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" @@ -8434,7 +8576,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:357 #: ../../godmode/setup/setup_general.php:84 -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:290 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" @@ -8443,7 +8585,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/godmode/setup/setup_auth.php:358 #: ../../godmode/setup/setup_general.php:85 -#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/functions_visual_map_editor.php:291 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" @@ -8452,7 +8594,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #: ../../enterprise/godmode/setup/setup_auth.php:359 #: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/functions_visual_map_editor.php:292 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" @@ -8461,7 +8603,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:199 #: ../../enterprise/godmode/setup/setup_auth.php:360 #: ../../godmode/setup/setup_general.php:87 -#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/functions_visual_map_editor.php:293 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" @@ -8470,7 +8612,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:200 #: ../../enterprise/godmode/setup/setup_auth.php:361 #: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/functions_visual_map_editor.php:294 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" @@ -8479,7 +8621,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/godmode/setup/setup_auth.php:362 #: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/functions_visual_map_editor.php:295 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" @@ -8488,7 +8630,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 #: ../../enterprise/godmode/setup/setup_auth.php:363 #: ../../godmode/setup/setup_general.php:90 -#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/functions_visual_map_editor.php:296 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" @@ -8501,7 +8643,6 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:232 #: ../../enterprise/meta/include/functions_meta.php:161 -#: ../../godmode/setup/setup_general.php:434 #: ../../include/functions_register.php:164 #: ../../include/functions_config.php:283 msgid "Timezone setup" @@ -8541,9 +8682,9 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:306 #: ../../godmode/setup/setup_sflow.php:75 -#: ../../godmode/setup/setup_netflow.php:75 -#: ../../include/functions_config.php:1560 -#: ../../include/functions_config.php:1603 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1615 msgid "Disable custom live view filters" msgstr "" @@ -8602,7 +8743,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:437 #: ../../enterprise/meta/include/functions_meta.php:276 #: ../../enterprise/godmode/setup/setup.php:106 -#: ../../include/functions_config.php:442 +#: ../../include/functions_config.php:450 msgid "Size of collection" msgstr "" @@ -8658,16 +8799,19 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:598 #: ../../enterprise/meta/include/functions_meta.php:326 #: ../../godmode/setup/setup_general.php:698 -#: ../../include/functions_config.php:386 +#: ../../include/functions_config.php:390 msgid "Enable console report" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:605 #: ../../enterprise/meta/include/functions_meta.php:346 +#: ../../godmode/setup/setup_general.php:708 +#: ../../include/functions_config.php:394 msgid "Check conexion interval" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:616 +#: ../../godmode/setup/setup_general.php:719 msgid "" "If there are any "In process" events with a specific Extra ID and " "a New event with that Extra ID is received, it will be created as "In " @@ -8676,12 +8820,13 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 +#: ../../godmode/setup/setup_general.php:724 msgid "Keep In process status for new events with extra ID" msgstr "" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:664 +#: ../../godmode/groups/group_list.php:665 #, php-format msgid "Error connecting to %s" msgstr "" @@ -8742,25 +8887,25 @@ msgstr "" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:602 -#: ../../enterprise/operation/log/log_viewer.php:793 +#: ../../enterprise/operation/log/log_viewer.php:791 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1677 -#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 #: ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4554 -#: ../../include/functions_events.php:4636 +#: ../../include/functions_events.php:4559 +#: ../../include/functions_events.php:4641 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1886 +#: ../../operation/events/events.php:1940 msgid "Source" msgstr "" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 #: ../../extensions/dbmanager.php:191 -#: ../../include/lib/Dashboard/Widget.php:610 +#: ../../include/lib/Dashboard/Widget.php:611 msgid "This metaconsole" msgstr "" @@ -8770,26 +8915,27 @@ msgstr "" #: ../../enterprise/extensions/resource_exportation/functions.php:35 #: ../../enterprise/godmode/agentes/collection_manager.php:260 #: ../../enterprise/godmode/agentes/plugins_manager.php:213 -#: ../../enterprise/godmode/policies/policy_queue.php:286 -#: ../../enterprise/godmode/policies/policy_queue.php:685 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../enterprise/godmode/policies/policy_queue.php:687 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 #: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 #: ../../enterprise/operation/agentes/collection_view.php:83 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:160 #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/agentes/module_manager.php:619 #: ../../godmode/alerts/alert_view.php:154 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999 -#: ../../operation/agentes/alerts_status.php:249 +#: ../../include/ajax/alert_list.ajax.php:285 +#: ../../include/ajax/module.php:1022 #: ../../operation/agentes/alerts_status.php:250 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/alerts_status.php:251 +#: ../../operation/agentes/status_monitor.php:1533 msgid "Policy" msgstr "" @@ -8834,12 +8980,12 @@ msgstr "" #: ../../enterprise/operation/agentes/wux_console_view.php:342 #: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:193 -#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199 +#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208 msgid "ago" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:112 -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "" @@ -8858,14 +9004,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:139 #: ../../enterprise/meta/include/functions_meta.php:2030 #: ../../godmode/setup/performance.php:293 -#: ../../include/functions_config.php:842 +#: ../../include/functions_config.php:854 msgid "Max. days before delete audit events" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:154 #: ../../enterprise/meta/include/functions_meta.php:2040 #: ../../godmode/setup/performance.php:637 -#: ../../include/functions_config.php:882 +#: ../../include/functions_config.php:894 msgid "Default hours for event view" msgstr "" @@ -8893,21 +9039,21 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:211 #: ../../godmode/setup/performance.php:761 -#: ../../include/functions_config.php:944 +#: ../../include/functions_config.php:956 msgid "Row limit in csv log" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:226 #: ../../enterprise/meta/include/functions_meta.php:2103 #: ../../godmode/setup/performance.php:425 -#: ../../include/functions_config.php:918 +#: ../../include/functions_config.php:930 msgid "Max. macro data fields" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:241 #: ../../enterprise/meta/include/functions_meta.php:2113 #: ../../godmode/setup/performance.php:601 -#: ../../include/functions_config.php:874 +#: ../../include/functions_config.php:886 msgid "Limit of events per query" msgstr "" @@ -8915,7 +9061,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2123 #: ../../godmode/setup/performance.php:338 #: ../../godmode/setup/performance.php:470 -#: ../../include/functions_config.php:850 +#: ../../include/functions_config.php:862 msgid "Max. days before purge" msgstr "" @@ -8973,7 +9119,7 @@ msgid "To manage collections you must activate centralized management" msgstr "" #: ../../enterprise/meta/advanced/collections.php:227 -#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 +#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494 msgid "Search by username, fullname or email" msgstr "" @@ -8988,7 +9134,7 @@ msgstr "" #: ../../enterprise/include/functions_groups.php:81 #: ../../enterprise/operation/agentes/ver_agente.php:210 #: ../../godmode/agentes/configurar_agente.php:716 -#: ../../operation/agentes/ver_agente.php:1856 +#: ../../operation/agentes/ver_agente.php:1852 msgid "Collection" msgstr "" @@ -9002,7 +9148,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.php:442 #: ../../enterprise/godmode/agentes/collections.php:537 -#: ../../operation/agentes/status_monitor.php:2257 +#: ../../operation/agentes/status_monitor.php:2259 msgid "Are you sure to delete?" msgstr "" @@ -9056,12 +9202,12 @@ msgid "There are no collections defined yet." msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 +#: ../../enterprise/godmode/policies/policy_queue.php:98 msgid "Operation successfully deleted from the queue" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 +#: ../../enterprise/godmode/policies/policy_queue.php:99 msgid "Operation cannot be deleted from the queue" msgstr "" @@ -9069,42 +9215,42 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:259 #: ../../enterprise/meta/include/functions_autoprovision.php:698 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501 -#: ../../enterprise/godmode/policies/policy_queue.php:311 -#: ../../enterprise/godmode/policies/policy_queue.php:687 +#: ../../enterprise/godmode/policies/policy_queue.php:313 +#: ../../enterprise/godmode/policies/policy_queue.php:689 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:453 #: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4642 -#: ../../include/functions_reporting_html.php:2460 -#: ../../include/functions_reporting_html.php:4959 -#: ../../include/functions_menu.php:675 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4651 +#: ../../include/functions_reporting_html.php:2481 +#: ../../include/functions_reporting_html.php:4987 +#: ../../include/functions_menu.php:679 #: ../../include/class/ExternalTools.class.php:571 -#: ../../general/main_menu.php:78 ../../general/main_menu.php:85 +#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 msgid "Operation" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:305 +#: ../../enterprise/godmode/policies/policy_queue.php:307 msgid "Apply (database and files)" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:219 #: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:758 +#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:762 msgid "Apply (only database)" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:332 msgid "Complete" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:331 +#: ../../enterprise/godmode/policies/policy_queue.php:333 msgid "Incomplete" msgstr "" @@ -9115,13 +9261,13 @@ msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:94 #: ../../enterprise/godmode/agentes/collection_manager.php:95 #: ../../enterprise/godmode/agentes/collections.php:458 -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -#: ../../enterprise/godmode/policies/policy_queue.php:356 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../enterprise/godmode/policies/policy_queue.php:358 #: ../../enterprise/godmode/policies/policies.php:341 #: ../../enterprise/godmode/policies/policy_linking.php:152 #: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274 #: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 @@ -9131,19 +9277,19 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:187 #: ../../enterprise/operation/services/services.list.php:482 -#: ../../extensions/agents_modules.php:665 +#: ../../extensions/agents_modules.php:673 #: ../../extensions/module_groups.php:305 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/modules/manage_network_components.php:697 -#: ../../godmode/groups/group_list.php:799 -#: ../../godmode/users/user_list.php:521 ../../godmode/users/user_list.php:522 +#: ../../godmode/modules/manage_network_components.php:700 +#: ../../godmode/groups/group_list.php:800 +#: ../../godmode/users/user_list.php:522 ../../godmode/users/user_list.php:523 #: ../../godmode/agentes/modificar_agente.php:397 #: ../../godmode/agentes/modificar_agente.php:412 #: ../../godmode/agentes/modificar_agente.php:413 #: ../../godmode/agentes/planned_downtime.list.php:647 #: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/netflow/nf_edit_form.php:283 #: ../../godmode/snmpconsole/snmp_alert.php:1797 #: ../../godmode/snmpconsole/snmp_filters.php:216 #: ../../godmode/snmpconsole/snmp_filters.php:314 @@ -9151,32 +9297,33 @@ msgstr "" #: ../../godmode/reporting/map_builder.php:384 #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1120 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 #: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 +#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652 +#: ../../include/functions_ui.php:3745 #: ../../include/class/ModuleTemplates.class.php:713 -#: ../../operation/tree.php:339 ../../operation/agentes/estado_agente.php:444 +#: ../../operation/tree.php:341 ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 #: ../../operation/agentes/interface_view.functions.php:134 -#: ../../operation/agentes/status_monitor.php:1034 -#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/status_monitor.php:1036 +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../operation/agentes/agent_inventory.php:165 #: ../../operation/network/network_report.php:205 #: ../../operation/network/network_usage_map.php:249 #: ../../operation/network/network_usage_map.php:250 -#: ../../operation/netflow/nf_live_view.php:273 -#: ../../operation/netflow/nf_live_view.php:605 -#: ../../operation/netflow/nf_live_view.php:606 +#: ../../operation/netflow/nf_live_view.php:282 +#: ../../operation/netflow/nf_live_view.php:678 +#: ../../operation/netflow/nf_live_view.php:679 #: ../../operation/incidents/list_integriaims_incidents.php:470 -#: ../../operation/inventory/inventory.php:704 +#: ../../operation/inventory/inventory.php:705 #: ../../operation/reporting/graph_viewer.php:399 msgid "Filter" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/agentsearch.php:111 -#: ../../godmode/alerts/alert_templates.php:357 -#: ../../godmode/alerts/alert_templates.php:358 +#: ../../godmode/alerts/alert_templates.php:361 +#: ../../godmode/alerts/alert_templates.php:362 msgid "Show Options" msgstr "" @@ -9194,21 +9341,21 @@ msgstr "" #: ../../enterprise/include/class/CSVImportAgents.class.php:157 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:749 -#: ../../godmode/modules/manage_network_components.php:775 +#: ../../enterprise/operation/log/log_viewer.php:747 +#: ../../godmode/modules/manage_network_components.php:778 #: ../../godmode/agentes/agent_manager.php:551 #: ../../godmode/agentes/module_manager.php:623 -#: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1217 #: ../../godmode/reporting/reporting_builder.item_editor.php:1238 #: ../../godmode/reporting/reporting_builder.item_editor.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3695 -#: ../../godmode/events/event_edit_filter.php:930 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3704 +#: ../../godmode/events/event_edit_filter.php:932 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 -#: ../../include/functions_reporting_html.php:2350 +#: ../../include/functions_reporting_html.php:2371 #: ../../include/class/AgentWizard.class.php:1282 -#: ../../operation/inventory/inventory.php:490 -#: ../../operation/events/events.php:1953 +#: ../../operation/inventory/inventory.php:492 +#: ../../operation/events/events.php:2007 msgid "Server" msgstr "" @@ -9218,11 +9365,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:212 #: ../../enterprise/meta/include/functions_autoprovision.php:497 #: ../../enterprise/godmode/agentes/collections.agents.php:62 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 #: ../../enterprise/godmode/agentes/collections.data.php:155 #: ../../enterprise/godmode/agentes/collections.data.php:321 #: ../../enterprise/godmode/agentes/collections.editor.php:83 -#: ../../enterprise/godmode/policies/policy_queue.php:686 +#: ../../enterprise/godmode/policies/policy_queue.php:688 #: ../../enterprise/godmode/policies/policies.php:438 #: ../../enterprise/godmode/policies/policies.php:603 #: ../../enterprise/godmode/policies/policy_agents.php:719 @@ -9239,8 +9386,8 @@ msgstr "" #: ../../enterprise/operation/services/massive/services.create.php:985 #: ../../enterprise/operation/services/massive/service.create.elements.php:379 #: ../../enterprise/operation/services/services.service_map.php:148 -#: ../../extensions/agents_modules.php:470 -#: ../../extensions/agents_modules.php:841 +#: ../../extensions/agents_modules.php:478 +#: ../../extensions/agents_modules.php:865 #: ../../godmode/groups/tactical.php:213 #: ../../godmode/agentes/planned_downtime.list.php:84 #: ../../godmode/agentes/planned_downtime.list.php:109 @@ -9258,34 +9405,34 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:2126 #: ../../godmode/reporting/visual_console_builder.wizard.php:430 #: ../../mobile/include/functions_web.php:23 -#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2566 -#: ../../include/functions_reporting_html.php:3349 -#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685 -#: ../../include/functions_html.php:5914 +#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:161 +#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_reporting_html.php:3377 +#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693 +#: ../../include/functions_html.php:5938 #: ../../include/functions_massive_operations.php:217 -#: ../../include/class/Diagnostics.class.php:1184 #: ../../include/class/Diagnostics.class.php:1188 #: ../../include/class/Diagnostics.class.php:1192 #: ../../include/class/Diagnostics.class.php:1196 -#: ../../include/class/NetworkMap.class.php:3439 +#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/NetworkMap.class.php:3445 #: ../../include/class/AgentsAlerts.class.php:252 #: ../../include/class/AgentsAlerts.class.php:567 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:347 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:352 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:445 #: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 #: ../../operation/agentes/interface_view.functions.php:78 #: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:234 +#: ../../operation/agentes/group_view.php:237 msgid "Agents" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:690 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 #: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 @@ -9295,18 +9442,18 @@ msgid "Progress" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:728 +#: ../../enterprise/godmode/policies/policy_queue.php:730 msgid "Policy " msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:788 -#: ../../enterprise/godmode/policies/policy_queue.php:797 +#: ../../enterprise/godmode/policies/policy_queue.php:792 +#: ../../enterprise/godmode/policies/policy_queue.php:801 msgid "Policy applying timeout" msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:816 +#: ../../enterprise/godmode/policies/policy_queue.php:820 msgid "Delete from queue" msgstr "" @@ -9384,17 +9531,17 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:693 -#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../enterprise/operation/log/log_viewer.php:768 #: ../../enterprise/tools/ipam/ipam_network.php:425 #: ../../enterprise/tools/ipam/ipam_ajax.php:382 #: ../../extensions/insert_data.php:194 #: ../../godmode/modules/manage_inventory_modules.php:317 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:161 #: ../../godmode/agentes/module_manager_editor_prediction.php:134 #: ../../godmode/agentes/planned_downtime.list.php:420 -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/agentes/module_manager_editor_common.php:1534 +#: ../../godmode/agentes/module_manager_editor_common.php:1485 +#: ../../godmode/agentes/module_manager_editor_common.php:1544 #: ../../godmode/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 @@ -9410,55 +9557,55 @@ msgstr "" #: ../../godmode/reporting/create_container.php:473 #: ../../godmode/reporting/create_container.php:657 #: ../../godmode/reporting/create_container.php:744 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1168 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1170 #: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4611 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4635 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4102 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 #: ../../godmode/reporting/visual_console_builder.elements.php:120 #: ../../godmode/reporting/visual_console_builder.wizard.php:463 #: ../../godmode/reporting/visual_console_builder.wizard.php:789 #: ../../godmode/reporting/visual_console_builder.wizard.php:812 #: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:841 -#: ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 +#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225 +#: ../../mobile/operation/events.php:870 +#: ../../include/functions_visual_map_editor.php:416 +#: ../../include/functions_visual_map_editor.php:449 #: ../../include/functions_reporting_html.php:548 #: ../../include/functions_reporting_html.php:947 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1067 -#: ../../include/functions_reporting_html.php:2016 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2458 -#: ../../include/functions_reporting_html.php:3312 -#: ../../include/functions_reporting_html.php:3447 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3830 -#: ../../include/functions_reporting_html.php:3839 -#: ../../include/functions_reporting_html.php:3851 -#: ../../include/functions_reporting_html.php:4011 -#: ../../include/functions_reporting_html.php:4135 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5004 -#: ../../include/functions_reporting_html.php:5043 -#: ../../include/functions_reporting_html.php:5371 -#: ../../include/functions_reporting_html.php:5411 -#: ../../include/functions_reporting_html.php:5661 -#: ../../include/ajax/heatmap.ajax.php:252 -#: ../../include/ajax/heatmap.ajax.php:291 -#: ../../include/ajax/heatmap.ajax.php:326 +#: ../../include/functions_reporting_html.php:2032 +#: ../../include/functions_reporting_html.php:2374 +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3475 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3850 +#: ../../include/functions_reporting_html.php:3858 +#: ../../include/functions_reporting_html.php:3867 +#: ../../include/functions_reporting_html.php:3879 +#: ../../include/functions_reporting_html.php:4039 +#: ../../include/functions_reporting_html.php:4163 +#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4984 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_reporting_html.php:5071 +#: ../../include/functions_reporting_html.php:5399 +#: ../../include/functions_reporting_html.php:5439 +#: ../../include/functions_reporting_html.php:5689 +#: ../../include/ajax/heatmap.ajax.php:294 +#: ../../include/ajax/heatmap.ajax.php:419 +#: ../../include/ajax/heatmap.ajax.php:454 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:1063 -#: ../../include/functions_inventory.php:1119 -#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:402 +#: ../../include/functions_inventory.php:1173 +#: ../../include/functions_inventory.php:1229 +#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 @@ -9467,22 +9614,24 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1332 -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:3031 -#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3369 #: ../../include/class/AgentsAlerts.class.php:430 -#: ../../include/class/AgentsAlerts.class.php:981 -#: ../../include/functions_reporting.php:7332 +#: ../../include/class/AgentsAlerts.class.php:982 +#: ../../include/functions_reporting.php:7341 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:341 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:359 #: ../../include/lib/Dashboard/Widgets/module_value.php:334 @@ -9493,20 +9642,20 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/module_status.php:350 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1809 +#: ../../include/functions_snmp_browser.php:1818 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/estado_agente.php:1030 #: ../../operation/agentes/interface_view.functions.php:499 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1536 +#: ../../operation/agentes/status_monitor.php:1538 #: ../../operation/agentes/estado_monitores.php:123 #: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 #: ../../operation/search_alerts.php:34 -#: ../../operation/inventory/inventory.php:628 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 +#: ../../operation/inventory/inventory.php:630 +#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742 msgid "Agent" msgstr "" @@ -9529,14 +9678,13 @@ msgstr "" #: ../../extensions/users_connected.php:178 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:847 -#: ../../include/functions_visual_map_editor.php:1455 -#: ../../include/functions_reporting_html.php:3329 -#: ../../include/functions_reporting_html.php:3662 -#: ../../include/ajax/heatmap.ajax.php:333 +#: ../../include/functions_visual_map_editor.php:1513 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3690 +#: ../../include/ajax/heatmap.ajax.php:461 #: ../../include/class/AuditLog.class.php:223 #: ../../operation/network/network_report.php:272 -#: ../../operation/inventory/inventory.php:1000 -#: ../../operation/inventory/inventory.php:1294 +#: ../../operation/inventory/inventory.php:1246 msgid "IP" msgstr "" @@ -9558,44 +9706,44 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:321 #: ../../enterprise/operation/services/services.list.php:205 #: ../../enterprise/operation/services/services.table_services.php:141 -#: ../../godmode/groups/group_list.php:1114 +#: ../../godmode/groups/group_list.php:1126 #: ../../godmode/agentes/module_manager_editor_common.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:559 -#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/agentes/module_manager_editor_common.php:564 +#: ../../godmode/netflow/nf_edit_form.php:290 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/setup/setup_visuals.php:1013 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 +#: ../../include/functions_reporting_html.php:2594 #: ../../include/functions.php:1087 ../../include/functions.php:1327 #: ../../include/functions.php:1334 ../../include/functions.php:1367 -#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329 -#: ../../include/functions_graph.php:3331 -#: ../../include/functions_graph.php:4842 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 +#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339 +#: ../../include/functions_graph.php:3341 +#: ../../include/functions_graph.php:4852 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578 #: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:398 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 -#: ../../include/functions_events.php:3218 ../../operation/tree.php:208 -#: ../../operation/tree.php:298 ../../operation/tree.php:533 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 +#: ../../include/functions_events.php:3223 ../../operation/tree.php:208 +#: ../../operation/tree.php:299 ../../operation/tree.php:535 #: ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/group_view.php:244 -#: ../../operation/agentes/group_view.php:249 -#: ../../operation/agentes/estado_monitores.php:518 +#: ../../operation/agentes/status_monitor.php:563 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/agentes/group_view.php:252 +#: ../../operation/agentes/estado_monitores.php:515 #: ../../operation/agentes/tactical.php:199 -#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 +#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159 msgid "Normal" msgstr "" @@ -9632,25 +9780,25 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:143 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1094 +#: ../../godmode/groups/group_list.php:1106 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 #: ../../include/functions_reporting_html.php:867 -#: ../../include/functions_reporting_html.php:2574 -#: ../../include/functions_reporting_html.php:4871 +#: ../../include/functions_reporting_html.php:2595 +#: ../../include/functions_reporting_html.php:4899 #: ../../include/functions.php:1095 ../../include/functions.php:1331 #: ../../include/functions.php:1332 ../../include/functions.php:1334 -#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938 -#: ../../include/functions_graph.php:3353 -#: ../../include/functions_graph.php:3355 -#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 +#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966 +#: ../../include/functions_graph.php:3363 +#: ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 #: ../../include/functions_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 #: ../../include/class/AgentWizard.class.php:4161 @@ -9659,18 +9807,18 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:400 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:709 -#: ../../include/functions_events.php:3226 ../../operation/tree.php:210 -#: ../../operation/tree.php:300 ../../operation/tree.php:513 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:438 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 +#: ../../include/functions_events.php:3231 ../../operation/tree.php:210 +#: ../../operation/tree.php:301 ../../operation/tree.php:515 #: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/status_monitor.php:566 -#: ../../operation/agentes/group_view.php:246 -#: ../../operation/agentes/group_view.php:251 -#: ../../operation/agentes/estado_monitores.php:516 +#: ../../operation/agentes/status_monitor.php:565 +#: ../../operation/agentes/group_view.php:249 +#: ../../operation/agentes/group_view.php:254 +#: ../../operation/agentes/estado_monitores.php:513 #: ../../operation/agentes/tactical.php:197 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157 msgid "Critical" msgstr "" @@ -9695,15 +9843,16 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:170 #: ../../enterprise/godmode/policies/policies.php:314 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:736 -#: ../../extensions/agents_modules.php:439 +#: ../../extensions/agents_modules.php:447 #: ../../godmode/agentes/modificar_agente.php:333 #: ../../godmode/agentes/planned_downtime.editor.php:1197 #: ../../godmode/reporting/reporting_builder.item_editor.php:1667 -#: ../../include/functions_html.php:1575 -#: ../../include/class/NetworkMap.class.php:3427 +#: ../../include/functions_html.php:1581 +#: ../../include/class/NetworkMap.class.php:3433 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254 #: ../../operation/agentes/estado_agente.php:310 #: ../../operation/agentes/interface_view.functions.php:61 -#: ../../operation/agentes/status_monitor.php:845 +#: ../../operation/agentes/status_monitor.php:844 msgid "Recursion" msgstr "" @@ -9716,21 +9865,21 @@ msgstr "" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 -#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3843 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333 #: ../../include/functions_massive_operations.php:150 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:403 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:734 -#: ../../include/functions_events.php:3174 ../../operation/tree.php:538 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:406 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:441 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 +#: ../../include/functions_events.php:3179 ../../operation/tree.php:540 #: ../../operation/agentes/estado_agente.php:277 -#: ../../operation/agentes/status_monitor.php:568 -#: ../../operation/events/events.php:1739 +#: ../../operation/agentes/status_monitor.php:567 +#: ../../operation/events/events.php:1793 msgid "Not normal" msgstr "" @@ -9741,30 +9890,30 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:136 #: ../../enterprise/operation/services/services.treeview_services.php:316 -#: ../../godmode/groups/group_list.php:1109 +#: ../../godmode/groups/group_list.php:1121 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3844 #: ../../mobile/operation/modules.php:75 #: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:2577 -#: ../../include/functions_reporting_html.php:4678 -#: ../../include/ajax/module.php:1950 +#: ../../include/functions_reporting_html.php:2598 +#: ../../include/functions_reporting_html.php:4706 +#: ../../include/ajax/module.php:1978 #: ../../include/functions_massive_operations.php:151 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:402 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:724 -#: ../../operation/tree.php:212 ../../operation/tree.php:302 -#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278 -#: ../../operation/agentes/status_monitor.php:570 -#: ../../operation/agentes/group_view.php:243 -#: ../../operation/agentes/group_view.php:248 -#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:440 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:212 ../../operation/tree.php:303 +#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278 +#: ../../operation/agentes/status_monitor.php:569 +#: ../../operation/agentes/group_view.php:246 +#: ../../operation/agentes/group_view.php:251 +#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161 msgid "Not init" msgstr "" @@ -9780,14 +9929,14 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:230 #: ../../enterprise/meta/monitoring/custom_fields_view.php:231 #: ../../enterprise/include/ajax/log_viewer.ajax.php:410 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/log/log_viewer.php:2026 -#: ../../enterprise/operation/log/log_viewer.php:2065 -#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864 +#: ../../enterprise/operation/log/log_viewer.php:992 +#: ../../enterprise/operation/log/log_viewer.php:2024 +#: ../../enterprise/operation/log/log_viewer.php:2063 +#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865 #: ../../include/class/AuditLog.class.php:167 -#: ../../include/class/AuditLog.class.php:445 -#: ../../include/class/AuditLog.class.php:485 -#: ../../operation/events/events.php:1871 +#: ../../include/class/AuditLog.class.php:457 +#: ../../include/class/AuditLog.class.php:497 +#: ../../operation/events/events.php:1925 msgid "Save filter" msgstr "" @@ -9796,21 +9945,20 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:245 #: ../../enterprise/include/ajax/log_viewer.ajax.php:709 #: ../../enterprise/include/ajax/log_viewer.ajax.php:727 -#: ../../enterprise/operation/log/log_viewer.php:979 -#: ../../enterprise/operation/log/log_viewer.php:2078 -#: ../../enterprise/operation/log/log_viewer.php:2115 +#: ../../enterprise/operation/log/log_viewer.php:977 +#: ../../enterprise/operation/log/log_viewer.php:2076 +#: ../../enterprise/operation/log/log_viewer.php:2113 #: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 -#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202 #: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159 -#: ../../include/class/AuditLog.class.php:502 -#: ../../include/class/AuditLog.class.php:539 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159 +#: ../../include/class/AuditLog.class.php:514 +#: ../../include/class/AuditLog.class.php:551 #: ../../operation/agentes/estado_agente.php:455 -#: ../../operation/agentes/status_monitor.php:1045 -#: ../../operation/netflow/nf_live_view.php:277 -#: ../../operation/events/sound_events.php:184 -#: ../../operation/events/events.php:1862 +#: ../../operation/agentes/status_monitor.php:1047 +#: ../../operation/netflow/nf_live_view.php:286 +#: ../../operation/events/events.php:1916 msgid "Load filter" msgstr "" @@ -9824,8 +9972,8 @@ msgid "Custom Fields Data" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:295 -#: ../../godmode/events/event_edit_filter.php:780 -#: ../../operation/events/events.php:1969 +#: ../../godmode/events/event_edit_filter.php:782 +#: ../../operation/events/events.php:2023 msgid "Module search" msgstr "" @@ -9834,8 +9982,8 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1569 #: ../../enterprise/include/class/AgentRepository.class.php:873 #: ../../enterprise/include/class/Omnishell.class.php:1359 -#: ../../enterprise/include/class/LogSource.class.php:745 -#: ../../godmode/users/configure_user.php:1024 +#: ../../enterprise/include/class/LogSource.class.php:742 +#: ../../godmode/users/configure_user.php:1072 #: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 #: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" @@ -9844,11 +9992,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/log/log_viewer.php:966 #: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:1000 -#: ../../include/graphs/functions_flot.php:382 +#: ../../include/graphs/functions_flot.php:383 #: ../../include/class/ModuleTemplates.class.php:904 #: ../../operation/network/network_report.php:230 #: ../../operation/incidents/list_integriaims_incidents.php:480 @@ -9859,175 +10007,175 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 -#: ../../include/functions_ui.php:3741 +#: ../../include/functions_ui.php:3789 msgid "Processing" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:386 -#: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5843 +#: ../../mobile/operation/groups.php:192 +#: ../../include/functions_reporting_html.php:5871 #: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:399 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5874 #: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 -#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_reporting_html.php:5880 #: ../../include/functions_agents.php:3945 #: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:425 -#: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5855 +#: ../../mobile/operation/groups.php:195 +#: ../../include/functions_reporting_html.php:5883 #: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:438 -#: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5861 +#: ../../mobile/operation/groups.php:189 +#: ../../include/functions_reporting_html.php:5889 #: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:464 -#: ../../include/functions_reporting.php:12227 -#: ../../include/functions_groups.php:2794 +#: ../../include/functions_reporting.php:12300 +#: ../../include/functions_groups.php:2819 msgid "Monitor critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:475 -#: ../../include/functions_reporting.php:12231 -#: ../../include/functions_groups.php:2798 +#: ../../include/functions_reporting.php:12304 +#: ../../include/functions_groups.php:2823 msgid "Monitor warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:486 -#: ../../include/functions_reporting.php:12238 -#: ../../include/functions_groups.php:2805 +#: ../../include/functions_reporting.php:12311 +#: ../../include/functions_groups.php:2830 msgid "Monitor normal" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:497 -#: ../../include/functions_reporting.php:12242 -#: ../../include/functions_groups.php:2809 +#: ../../include/functions_reporting.php:12315 +#: ../../include/functions_groups.php:2834 msgid "Monitor unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:508 -#: ../../include/functions_reporting.php:12249 -#: ../../include/functions_groups.php:2816 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2841 msgid "Monitor not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:523 -#: ../../include/functions_reporting_html.php:5870 -#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5898 +#: ../../include/functions_reporting_html.php:5903 msgid "Agents by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:531 -#: ../../include/functions_reporting.php:12269 -#: ../../include/functions_reporting.php:12275 -#: ../../include/functions_groups.php:2836 -#: ../../include/functions_groups.php:2842 +#: ../../include/functions_reporting.php:12342 +#: ../../include/functions_reporting.php:12348 +#: ../../include/functions_groups.php:2861 +#: ../../include/functions_groups.php:2867 msgid "Monitors by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:545 #: ../../enterprise/operation/services/services.treeview_services.php:299 -#: ../../godmode/groups/group_list.php:1092 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:707 -#: ../../operation/tree.php:511 +#: ../../godmode/groups/group_list.php:1104 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:700 +#: ../../operation/tree.php:513 msgid "Critical agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:555 #: ../../enterprise/operation/services/services.treeview_services.php:304 -#: ../../godmode/groups/group_list.php:1097 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:712 -#: ../../operation/tree.php:516 +#: ../../godmode/groups/group_list.php:1109 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:705 +#: ../../operation/tree.php:518 msgid "Warning agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:565 #: ../../enterprise/operation/services/services.treeview_services.php:319 -#: ../../godmode/groups/group_list.php:1112 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:727 -#: ../../operation/tree.php:531 +#: ../../godmode/groups/group_list.php:1124 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:720 +#: ../../operation/tree.php:533 msgid "Normal agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:575 #: ../../enterprise/operation/services/services.treeview_services.php:309 -#: ../../godmode/groups/group_list.php:1102 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:521 +#: ../../godmode/groups/group_list.php:1114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:710 +#: ../../operation/tree.php:523 msgid "Unknown agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:585 #: ../../enterprise/operation/services/services.treeview_services.php:314 -#: ../../godmode/groups/group_list.php:1107 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:722 -#: ../../operation/tree.php:526 +#: ../../godmode/groups/group_list.php:1119 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:715 +#: ../../operation/tree.php:528 msgid "Not init agents" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:300 -#: ../../godmode/groups/group_list.php:1093 -#: ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 -#: ../../operation/tree.php:512 +#: ../../godmode/groups/group_list.php:1105 +#: ../../mobile/operation/groups.php:210 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:701 +#: ../../operation/tree.php:514 msgid "Critical modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:305 -#: ../../godmode/groups/group_list.php:1098 -#: ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:713 -#: ../../operation/tree.php:517 +#: ../../godmode/groups/group_list.php:1110 +#: ../../mobile/operation/groups.php:207 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:706 +#: ../../operation/tree.php:519 msgid "Warning modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:320 -#: ../../godmode/groups/group_list.php:1113 -#: ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:728 -#: ../../operation/tree.php:532 +#: ../../godmode/groups/group_list.php:1125 +#: ../../mobile/operation/groups.php:204 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:721 +#: ../../operation/tree.php:534 msgid "Normal modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:310 -#: ../../godmode/groups/group_list.php:1103 -#: ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:718 -#: ../../operation/tree.php:522 +#: ../../godmode/groups/group_list.php:1115 +#: ../../mobile/operation/groups.php:198 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:711 +#: ../../operation/tree.php:524 msgid "Unknown modules" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:315 -#: ../../godmode/groups/group_list.php:1108 -#: ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:723 -#: ../../operation/tree.php:527 +#: ../../godmode/groups/group_list.php:1120 +#: ../../mobile/operation/groups.php:201 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:716 +#: ../../operation/tree.php:529 msgid "Not init modules" msgstr "" @@ -10059,7 +10207,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:1167 #: ../../enterprise/meta/event/custom_events.php:245 #: ../../enterprise/include/functions_login.php:114 -#: ../../godmode/agentes/status_monitor_custom_fields.php:253 +#: ../../godmode/agentes/status_monitor_custom_fields.php:273 #: ../../godmode/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" @@ -10068,9 +10216,9 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227 #: ../../godmode/agentes/configurar_agente.php:835 -#: ../../godmode/agentes/modificar_agente.php:1025 -#: ../../include/class/SnmpConsole.class.php:781 -#: ../../operation/agentes/estado_agente.php:1317 +#: ../../godmode/agentes/modificar_agente.php:1036 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/agentes/estado_agente.php:1326 #: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "" @@ -10156,18 +10304,18 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195 +#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/module_manager_editor_prediction.php:135 #: ../../godmode/agentes/planned_downtime.list.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:1445 -#: ../../godmode/agentes/module_manager_editor_common.php:1481 -#: ../../godmode/agentes/module_manager_editor_common.php:1535 +#: ../../godmode/agentes/module_manager_editor_common.php:1491 +#: ../../godmode/agentes/module_manager_editor_common.php:1545 #: ../../godmode/massive/massive_standby_alerts.php:224 #: ../../godmode/massive/massive_standby_alerts.php:259 #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../godmode/massive/massive_edit_agents.php:682 -#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/massive/massive_edit_agents.php:699 +#: ../../godmode/massive/massive_edit_agents.php:1164 #: ../../godmode/alerts/alert_list.list.php:566 #: ../../godmode/alerts/alert_list.list.php:817 #: ../../godmode/alerts/alert_view.php:97 @@ -10176,41 +10324,41 @@ msgstr "" #: ../../godmode/reporting/create_container.php:490 #: ../../godmode/reporting/create_container.php:662 #: ../../godmode/reporting/create_container.php:745 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:891 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:346 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1193 #: ../../godmode/reporting/reporting_builder.item_editor.php:1792 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4098 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4107 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4647 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:462 #: ../../godmode/reporting/visual_console_builder.wizard.php:821 -#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338 -#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332 +#: ../../include/functions_visual_map_editor.php:491 #: ../../include/functions_reporting_html.php:549 #: ../../include/functions_reporting_html.php:948 -#: ../../include/functions_reporting_html.php:2017 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:2459 -#: ../../include/functions_reporting_html.php:3448 -#: ../../include/functions_reporting_html.php:3823 -#: ../../include/functions_reporting_html.php:3831 -#: ../../include/functions_reporting_html.php:3840 -#: ../../include/functions_reporting_html.php:3852 -#: ../../include/functions_reporting_html.php:4012 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4235 -#: ../../include/functions_reporting_html.php:4957 -#: ../../include/functions_reporting_html.php:5005 +#: ../../include/functions_reporting_html.php:2033 +#: ../../include/functions_reporting_html.php:2375 +#: ../../include/functions_reporting_html.php:2480 +#: ../../include/functions_reporting_html.php:3476 +#: ../../include/functions_reporting_html.php:3851 +#: ../../include/functions_reporting_html.php:3859 +#: ../../include/functions_reporting_html.php:3868 +#: ../../include/functions_reporting_html.php:3880 +#: ../../include/functions_reporting_html.php:4040 +#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4985 +#: ../../include/functions_reporting_html.php:5033 #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:1064 -#: ../../include/functions_inventory.php:1120 -#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393 -#: ../../include/functions_ui.php:7411 +#: ../../include/functions_inventory.php:1174 +#: ../../include/functions_inventory.php:1230 +#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463 +#: ../../include/functions_ui.php:7488 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 @@ -10219,17 +10367,19 @@ msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1363 #: ../../include/class/AgentsAlerts.class.php:432 -#: ../../include/class/AgentsAlerts.class.php:910 -#: ../../include/functions_reporting.php:7333 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/functions_reporting.php:7342 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:359 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441 #: ../../include/lib/Dashboard/Widgets/module_icon.php:377 #: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -10237,16 +10387,16 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 #: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:729 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/agent_inventory.php:118 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 -#: ../../operation/search_modules.php:32 +#: ../../operation/inventory/inventory.php:636 +#: ../../operation/search_modules.php:35 msgid "Module" msgstr "" @@ -10262,18 +10412,18 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:570 #: ../../godmode/alerts/alert_view.php:101 #: ../../godmode/alerts/alert_list.builder.php:151 -#: ../../godmode/reporting/reporting_builder.item_editor.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../mobile/operation/alerts.php:342 -#: ../../include/functions_reporting_html.php:3449 -#: ../../include/functions_reporting_html.php:3452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:897 +#: ../../mobile/operation/alerts.php:349 +#: ../../include/functions_reporting_html.php:3477 +#: ../../include/functions_reporting_html.php:3480 #: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:399 -#: ../../include/functions_treeview.php:440 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_treeview.php:444 #: ../../include/class/AgentsAlerts.class.php:359 -#: ../../include/class/AgentsAlerts.class.php:983 +#: ../../include/class/AgentsAlerts.class.php:984 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "" @@ -10353,8 +10503,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_action.php:287 #: ../../godmode/alerts/alert_view.php:367 #: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/functions_reporting_html.php:3710 -#: ../../include/functions_reporting_html.php:5493 +#: ../../include/functions_reporting_html.php:3738 +#: ../../include/functions_reporting_html.php:5521 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:398 @@ -10375,8 +10525,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117 -#: ../../godmode/agentes/module_manager.php:1027 -#: ../../operation/snmpconsole/snmp_browser.php:633 +#: ../../godmode/agentes/module_manager.php:1041 +#: ../../operation/snmpconsole/snmp_browser.php:692 msgid "Create module" msgstr "" @@ -10415,11 +10565,11 @@ msgstr "" #: ../../enterprise/godmode/policies/policy.php:158 #: ../../enterprise/godmode/setup/setup_acl.php:664 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:8008 -#: ../../enterprise/include/functions_reporting.php:8034 -#: ../../godmode/reporting/visual_console_builder.php:830 -#: ../../include/functions_menu.php:589 -#: ../../operation/visual_console/view.php:202 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8043 +#: ../../godmode/reporting/visual_console_builder.php:838 +#: ../../include/functions_menu.php:593 +#: ../../operation/visual_console/view.php:204 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "" @@ -10434,8 +10584,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:447 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 +#: ../../godmode/events/event_edit_filter.php:449 +#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000 msgid "Agent search" msgstr "" @@ -10449,20 +10599,22 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744 #: ../../godmode/snmpconsole/snmp_alert.php:1688 #: ../../godmode/alerts/configure_alert_action.php:432 -#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 -#: ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199 #: ../../mobile/operation/visualmap.php:256 #: ../../mobile/operation/visualmaps.php:189 -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/events.php:913 +#: ../../mobile/operation/module_data.php:130 +#: ../../mobile/operation/module_graph.php:365 +#: ../../mobile/operation/module_graph.php:378 +#: ../../mobile/operation/events.php:957 +#: ../../mobile/operation/server_status.php:232 #: ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1162 msgid "Create Module" msgstr "" @@ -10539,14 +10691,14 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:336 #: ../../godmode/massive/massive_delete_modules.php:323 #: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "Module type" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5412 -#: ../../include/functions_reporting_html.php:5566 +#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5594 msgid "Monitor" msgstr "" @@ -10561,7 +10713,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:174 #: ../../enterprise/operation/agentes/ver_agente.php:53 -#: ../../extensions/agents_modules.php:448 +#: ../../extensions/agents_modules.php:456 #: ../../godmode/modules/manage_network_components_form_common.php:111 #: ../../godmode/agentes/module_manager_editor_common.php:292 #: ../../godmode/massive/massive_edit_modules.php:904 @@ -10571,18 +10723,20 @@ msgstr "" #: ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 #: ../../mobile/operation/modules.php:294 -#: ../../include/functions_reporting_html.php:1768 -#: ../../include/ajax/heatmap.ajax.php:193 -#: ../../include/ajax/heatmap.ajax.php:263 -#: ../../include/ajax/heatmap.ajax.php:302 -#: ../../include/functions_graph.php:5085 +#: ../../mobile/operation/server_status.php:174 +#: ../../mobile/operation/server_status.php:175 +#: ../../include/functions_reporting_html.php:1777 +#: ../../include/ajax/heatmap.ajax.php:222 +#: ../../include/ajax/heatmap.ajax.php:305 +#: ../../include/ajax/heatmap.ajax.php:430 +#: ../../include/functions_graph.php:5095 #: ../../include/functions_treeview.php:121 -#: ../../include/functions_html.php:1600 +#: ../../include/functions_html.php:1607 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 -#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103 +#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103 #: ../../operation/heatmap.php:105 -#: ../../operation/agentes/status_monitor.php:859 -#: ../../operation/agentes/estado_monitores.php:592 +#: ../../operation/agentes/status_monitor.php:858 +#: ../../operation/agentes/estado_monitores.php:590 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "" @@ -10602,14 +10756,14 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:130 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1406 -#: ../../godmode/netflow/nf_edit_form.php:251 +#: ../../godmode/users/configure_user.php:1455 +#: ../../godmode/netflow/nf_edit_form.php:296 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:966 #: ../../godmode/alerts/configure_alert_template.php:1011 #: ../../godmode/alerts/configure_alert_template.php:1169 -#: ../../operation/netflow/nf_live_view.php:563 +#: ../../operation/netflow/nf_live_view.php:636 msgid "Advanced" msgstr "" @@ -10620,7 +10774,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../godmode/reporting/graph_builder.graph_editor.php:423 +#: ../../godmode/reporting/graph_builder.graph_editor.php:438 msgid "Please, select a module" msgstr "" @@ -10630,7 +10784,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:975 #: ../../enterprise/include/class/Omnishell.class.php:1056 #: ../../enterprise/include/class/DB2.app.php:862 -#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/SAP.app.php:925 #: ../../enterprise/include/class/Aws.cloud.php:1467 #: ../../enterprise/include/class/MySQL.app.php:938 #: ../../enterprise/include/class/Oracle.app.php:970 @@ -10638,8 +10792,8 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 #: ../../godmode/alerts/configure_alert_template.php:1216 #: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244 +#: ../../include/class/CustomNetScan.class.php:757 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245 msgid "Finish" msgstr "" @@ -10673,8 +10827,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.data.php:241 #: ../../enterprise/godmode/agentes/collections.data.php:272 #: ../../enterprise/godmode/agentes/collections.data.php:336 -#: ../../include/functions_events.php:3268 -#: ../../include/functions_events.php:3542 +#: ../../include/functions_events.php:3273 +#: ../../include/functions_events.php:3547 msgid "New" msgstr "" @@ -10693,18 +10847,18 @@ msgid "Please, select an agent" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -#: ../../enterprise/godmode/policies/policy_modules.php:1764 +#: ../../enterprise/godmode/policies/policy_modules.php:1809 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/operation/log/log_viewer.php:1051 -#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/log/log_viewer.php:1049 +#: ../../enterprise/operation/log/log_viewer.php:1071 #: ../../enterprise/operation/services/services.treeview_services.php:197 -#: ../../godmode/groups/group_list.php:744 +#: ../../godmode/groups/group_list.php:745 #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 -#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../include/functions_events.php:4287 ../../operation/tree.php:376 #: ../../operation/reporting/reporting_viewer.php:340 #: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 @@ -10713,10 +10867,10 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:212 -#: ../../include/class/TipsWindow.class.php:726 -#: ../../include/class/TipsWindow.class.php:893 -#: ../../include/functions_reporting.php:7470 +#: ../../godmode/tag/edit_tag.php:216 +#: ../../include/class/TipsWindow.class.php:746 +#: ../../include/class/TipsWindow.class.php:913 +#: ../../include/functions_reporting.php:7479 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "" @@ -10740,15 +10894,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:161 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476 -#: ../../godmode/agentes/module_manager_editor_common.php:673 -#: ../../godmode/agentes/module_manager_editor_common.php:675 +#: ../../godmode/agentes/module_manager_editor_common.php:678 +#: ../../godmode/agentes/module_manager_editor_common.php:680 #, php-format msgid "Agent interval x %s" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" -"This feature will be removed in version 771 and its\n" +"This feature will be removed in version 773 and its\n" " functions transferred to different metaconsole tools " "( bulk operations, agent alert editing, etc).\n" " The current functions of the wizard is minimal and we " @@ -10761,9 +10915,10 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:64 #: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/configure_user.php:61 #: ../../godmode/users/user_management.php:40 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../operation/users/user_edit.php:471 +#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "" @@ -10810,9 +10965,9 @@ msgid "% Monitors Not init" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:203 -#: ../../godmode/agentes/modificar_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:1309 -#: ../../operation/agentes/group_view.php:600 +#: ../../godmode/agentes/modificar_agente.php:1028 +#: ../../operation/agentes/estado_agente.php:1318 +#: ../../operation/agentes/group_view.php:603 msgid "There are no defined agents" msgstr "" @@ -10827,15 +10982,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:232 #: ../../enterprise/operation/services/services.treeview_services.php:291 -#: ../../godmode/groups/group_list.php:1084 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2572 -#: ../../include/functions_inventory.php:511 -#: ../../include/functions_inventory.php:654 -#: ../../include/functions_alerts.php:3386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 -#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 -#: ../../operation/agentes/agent_inventory.php:266 +#: ../../godmode/groups/group_list.php:1096 +#: ../../include/functions_reporting_html.php:2583 +#: ../../include/functions_reporting_html.php:2593 +#: ../../include/functions_inventory.php:520 +#: ../../include/functions_inventory.php:663 +#: ../../include/functions_alerts.php:3387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244 +#: ../../operation/agentes/agent_inventory.php:321 msgid "Total" msgstr "" @@ -10845,18 +11000,18 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:111 #: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1284 #: ../../include/functions_agents.php:2998 -#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 -#: ../../include/class/SnmpConsole.class.php:841 -#: ../../include/functions_reporting.php:13143 -#: ../../include/functions_events.php:2942 -#: ../../include/functions_events.php:3142 -#: ../../operation/agentes/group_view.php:252 +#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/class/SnmpConsole.class.php:843 +#: ../../include/functions_reporting.php:13216 +#: ../../include/functions_events.php:2947 +#: ../../include/functions_events.php:3147 +#: ../../operation/agentes/group_view.php:255 msgid "Alert fired" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:367 -#: ../../operation/agentes/group_view.php:343 +#: ../../operation/agentes/group_view.php:346 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this " @@ -10866,9 +11021,11 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/configure_user.php:62 #: ../../godmode/users/user_management.php:41 #: ../../godmode/massive/massive_edit_users.php:277 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/auth/mysql.php:810 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 #: ../../operation/users/user_edit.php:472 @@ -10892,14 +11049,14 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:1087 #: ../../enterprise/tools/ipam/ipam_network.php:427 -#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246 +#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245 #: ../../godmode/events/events.php:142 #: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51 -#: ../../mobile/operation/events.php:908 ../../include/functions.php:4167 -#: ../../include/ajax/events.php:2219 ../../include/functions_reports.php:876 +#: ../../mobile/operation/events.php:952 ../../include/functions.php:4193 +#: ../../include/ajax/events.php:2220 ../../include/functions_reports.php:876 #: ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 -#: ../../operation/events/events.php:1613 +#: ../../operation/events/events.php:1667 msgid "Events" msgstr "" @@ -10923,14 +11080,14 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:42 #: ../../godmode/netflow/nf_edit.php:211 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "" -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240 #: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "" @@ -10940,24 +11097,23 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:72 #: ../../enterprise/meta/event/custom_events.php:90 #: ../../godmode/agentes/fields_manager.php:59 -#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103 -#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103 +#: ../../godmode/massive/massive_edit_agents.php:1267 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1620 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_events.php:4445 #: ../../operation/agentes/status_monitor.php:64 #: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:293 -#: ../../operation/agentes/status_monitor.php:316 -#: ../../operation/agentes/ver_agente.php:1565 -#: ../../operation/agentes/ver_agente.php:1823 -#: ../../operation/inventory/inventory.php:1009 -#: ../../operation/inventory/inventory.php:1303 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/status_monitor.php:315 +#: ../../operation/agentes/ver_agente.php:1561 +#: ../../operation/agentes/ver_agente.php:1819 +#: ../../operation/inventory/inventory.php:1255 msgid "Custom fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:77 -#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791 msgid "Responses" msgstr "" @@ -10972,25 +11128,25 @@ msgid "Fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:173 -#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/agentes/status_monitor_custom_fields.php:188 #: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "" #: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/agentes/status_monitor_custom_fields.php:210 #: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "" #: ../../enterprise/meta/event/custom_events.php:185 -#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:195 #: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "" #: ../../enterprise/meta/event/custom_events.php:195 -#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "" @@ -11001,7 +11157,7 @@ msgid "Show event fields" msgstr "" #: ../../enterprise/meta/event/custom_events.php:244 -#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:272 #: ../../godmode/events/custom_events.php:232 msgid "" "There must be at least one custom field. Timestamp will be set by default" @@ -11045,9 +11201,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 #: ../../enterprise/include/functions_ipam.php:1665 #: ../../godmode/reporting/reporting_builder.list_items.php:442 -#: ../../godmode/reporting/reporting_builder.list_items.php:738 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:354 +#: ../../godmode/reporting/reporting_builder.list_items.php:739 +#: ../../godmode/reporting/graph_builder.graph_editor.php:267 +#: ../../godmode/reporting/graph_builder.graph_editor.php:350 msgid "Sort" msgstr "" @@ -11134,7 +11290,7 @@ msgstr "" #: ../../godmode/users/profile_list.php:61 #: ../../godmode/users/configure_profile.php:54 #: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276 -#: ../../godmode/users/configure_user.php:245 +#: ../../godmode/users/configure_user.php:183 #: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "" @@ -11144,7 +11300,7 @@ msgstr "" #: ../../godmode/users/profile_list.php:72 #: ../../godmode/users/configure_profile.php:65 #: ../../godmode/users/user_list.php:262 -#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159 +#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159 msgid "Profile management" msgstr "" @@ -11179,11 +11335,10 @@ msgstr "" #: ../../godmode/groups/tactical.php:179 #: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../include/functions_reporting_html.php:1592 -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999 -#: ../../operation/inventory/inventory.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../include/functions_reporting_html.php:1601 +#: ../../include/functions_reporting_html.php:1765 +#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245 msgid "Alias" msgstr "" @@ -11195,11 +11350,11 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:401 #: ../../godmode/servers/modificar_server.php:95 -#: ../../include/functions_reporting_html.php:1596 -#: ../../include/functions_reporting_html.php:4139 -#: ../../include/functions_reporting_html.php:4233 -#: ../../include/functions_treeview.php:643 -#: ../../include/functions_events.php:4372 +#: ../../include/functions_reporting_html.php:1605 +#: ../../include/functions_reporting_html.php:4167 +#: ../../include/functions_reporting_html.php:4261 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4377 #: ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "" @@ -11207,7 +11362,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206 #: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 @@ -11216,7 +11371,7 @@ msgstr "" #: ../../enterprise/include/functions_metaconsole.php:1471 #: ../../enterprise/include/functions_metaconsole.php:1502 #: ../../enterprise/include/functions_metaconsole.php:1535 -#: ../../godmode/agentes/module_manager_editor_web.php:179 +#: ../../godmode/agentes/module_manager_editor_web.php:182 msgid "Check" msgstr "" @@ -11230,9 +11385,9 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:246 #: ../../godmode/alerts/configure_alert_template.php:250 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268 -#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740 +#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741 #: ../../include/functions_reports.php:783 -#: ../../include/functions_reporting.php:10176 +#: ../../include/functions_reporting.php:10185 msgid "General" msgstr "" @@ -11258,7 +11413,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:492 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 #: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/agentes/module_manager_editor_network.php:104 #: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" msgstr "" @@ -11266,7 +11421,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:493 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 #: ../../godmode/agentes/module_manager_editor_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/agentes/module_manager_editor_network.php:105 #: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "" @@ -11281,8 +11436,8 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:267 #: ../../enterprise/extensions/disabled/check_acls.php:47 #: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/setup/setup_auth.php:1347 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 #: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:509 @@ -11294,25 +11449,24 @@ msgstr "" #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:97 #: ../../godmode/setup/setup_integria.php:292 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3534 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:6045 #: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 -#: ../../include/functions_config.php:751 +#: ../../include/functions_config.php:743 +#: ../../include/functions_config.php:763 #: ../../include/class/CredentialStore.class.php:817 -#: ../../include/class/CredentialStore.class.php:1300 +#: ../../include/class/CredentialStore.class.php:1301 #: ../../include/class/AuditLog.class.php:110 #: ../../include/class/AuditLog.class.php:240 #: ../../include/functions_events.php:202 #: ../../include/functions_events.php:253 ../../operation/search_users.php:71 -#: ../../operation/users/user_edit.php:857 -#: ../../operation/users/user_edit.php:910 +#: ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:907 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265 -#: ../../general/logon_ok.php:255 ../../general/login_page.php:276 +#: ../../general/logon_ok.php:300 ../../general/login_page.php:276 #: ../../general/login_page.php:335 msgid "User" msgstr "" @@ -11326,8 +11480,8 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:1136 -#: ../../enterprise/godmode/setup/setup_auth.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:1353 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:161 @@ -11343,23 +11497,22 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 #: ../../extensions/api_checker.php:260 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1190 #: ../../godmode/users/user_management.php:280 #: ../../godmode/agentes/module_manager_editor_wmi.php:148 #: ../../godmode/massive/massive_edit_modules.php:923 #: ../../godmode/setup/setup_ehorus.php:104 #: ../../godmode/setup/setup_integria.php:306 -#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484 -#: ../../include/functions_config.php:735 -#: ../../include/functions_config.php:755 +#: ../../include/functions_ui.php:7561 ../../include/functions_config.php:747 +#: ../../include/functions_config.php:767 #: ../../include/class/CredentialStore.class.php:974 #: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1301 -#: ../../include/class/CredentialStore.class.php:1324 -#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1302 +#: ../../include/class/CredentialStore.class.php:1328 +#: ../../include/class/CredentialStore.class.php:1352 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290 #: ../../general/login_page.php:351 msgid "Password" msgstr "" @@ -11373,14 +11526,14 @@ msgid "Response" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:213 +#: ../../godmode/agentes/module_manager_editor_web.php:216 msgid "Check type" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../enterprise/include/functions_enterprise.php:457 #: ../../godmode/agentes/module_manager_editor_web.php:92 #: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" @@ -11400,47 +11553,47 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 #: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 -#: ../../godmode/agentes/module_manager_editor_web.php:168 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218 +#: ../../godmode/agentes/module_manager_editor_web.php:171 msgid "Load basic" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:177 +#: ../../godmode/agentes/module_manager_editor_web.php:180 msgid "Load a basic structure on Web Checks" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:188 +#: ../../godmode/agentes/module_manager_editor_web.php:191 msgid "Check the correct structure of the WebCheck" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:267 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "First line must be \"task_begin\"" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:268 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "Webchecks configuration is empty" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:697 #: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:269 -#: ../../godmode/agentes/module_manager_editor_web.php:270 +#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Last line must be \"task_end\"" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:699 #: ../../enterprise/godmode/modules/configure_local_component.php:525 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 -#: ../../godmode/agentes/module_manager_editor_web.php:271 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../godmode/agentes/module_manager_editor_web.php:274 msgid "There is a line with a unknown token 'token_fail'." msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:273 +#: ../../godmode/agentes/module_manager_editor_web.php:276 msgid "Web checks are built correctly" msgstr "" @@ -11473,43 +11626,42 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:784 #: ../../enterprise/tools/ipam/ipam_list.php:724 #: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 #: ../../godmode/agentes/inventory_manager.php:236 #: ../../godmode/agentes/agent_manager.php:503 -#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1077 #: ../../godmode/agentes/module_manager.php:637 -#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_agents.php:731 #: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/setup/setup_visuals.php:1919 -#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../godmode/setup/setup_visuals.php:1934 +#: ../../godmode/setup/setup_visuals.php:2016 #: ../../godmode/wizards/HostDevices.class.php:799 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../mobile/operation/modules.php:657 -#: ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3712 -#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83 -#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417 +#: ../../mobile/operation/modules.php:668 +#: ../../mobile/operation/modules.php:670 +#: ../../mobile/operation/modules.php:910 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83 +#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494 #: ../../include/class/CustomNetScan.class.php:526 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:376 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45 #: ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:1035 -#: ../../operation/agentes/status_monitor.php:1560 -#: ../../operation/agentes/estado_generalagente.php:458 +#: ../../operation/agentes/status_monitor.php:1562 +#: ../../operation/agentes/estado_generalagente.php:429 #: ../../operation/network/network_usage_map.php:114 -#: ../../operation/netflow/nf_live_view.php:389 -#: ../../operation/inventory/inventory.php:1006 -#: ../../operation/inventory/inventory.php:1300 -#: ../../operation/search_modules.php:35 -#: ../../operation/events/sound_events.php:219 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/inventory/inventory.php:1252 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/sound_events.php:249 msgid "Interval" msgstr "" @@ -11523,9 +11675,9 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 #: ../../enterprise/include/functions_reporting_csv.php:2791 #: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/agentes/module_manager_editor_common.php:1337 #: ../../godmode/massive/massive_edit_modules.php:940 -#: ../../include/functions_reporting_html.php:3713 +#: ../../include/functions_reporting_html.php:3741 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "" @@ -11548,7 +11700,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1344 #: ../../enterprise/include/class/DeploymentCenter.class.php:1354 #: ../../extensions/api_checker.php:331 -#: ../../godmode/wizards/HostDevices.class.php:1508 +#: ../../godmode/wizards/HostDevices.class.php:1504 msgid "Credentials" msgstr "" @@ -11573,9 +11725,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2574 -#: ../../include/functions_reporting_html.php:5008 -#: ../../include/functions_ui.php:2869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../include/functions_reporting_html.php:5036 +#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912 #: ../../include/functions_reporting.php:1539 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 @@ -11604,9 +11756,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 #: ../../godmode/alerts/alert_view.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2567 -#: ../../include/functions_reporting_html.php:5007 -#: ../../include/functions_ui.php:2869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2576 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912 #: ../../include/functions_reporting.php:1535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 @@ -11637,8 +11789,8 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:477 #: ../../godmode/agentes/module_manager_editor_common.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:569 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/module_manager_editor_common.php:574 #: ../../godmode/massive/massive_edit_modules.php:625 #: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" @@ -11647,13 +11799,13 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:1004 +#: ../../include/ajax/module.php:1027 msgid "Thresholds" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1087 #: ../../enterprise/meta/include/functions_wizard_meta.php:1619 -#: ../../godmode/agentes/module_manager_editor_web.php:238 +#: ../../godmode/agentes/module_manager_editor_web.php:241 msgid "Proxy URL" msgstr "" @@ -11678,7 +11830,7 @@ msgid "Alerts in module" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5372 +#: ../../include/functions_reporting_html.php:5400 msgid "Alert description" msgstr "" @@ -11714,7 +11866,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:933 +#: ../../enterprise/godmode/policies/policy_modules.php:937 msgid "Successfully added module." msgstr "" @@ -11791,7 +11943,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:364 #: ../../godmode/alerts/alert_templates.php:71 -#: ../../include/functions_config.php:1684 +#: ../../include/functions_config.php:1696 msgid "Days" msgstr "" @@ -11806,7 +11958,7 @@ msgid "and" msgstr "" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 #: ../../godmode/snmpconsole/snmp_alert.php:1589 @@ -11832,8 +11984,8 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:733 #: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3202 -#: ../../include/functions_reporting_html.php:4013 +#: ../../include/functions_reporting_html.php:3230 +#: ../../include/functions_reporting_html.php:4041 #: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 @@ -11859,10 +12011,10 @@ msgstr "" #: ../../godmode/alerts/alert_templates.php:96 #: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3207 +#: ../../include/functions_reporting_html.php:3235 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:321 -#: ../../include/functions_reporting.php:14866 +#: ../../include/functions_reporting.php:14939 #: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "" @@ -11886,10 +12038,10 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 #: ../../include/functions_reporting_html.php:1307 #: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:5304 +#: ../../include/functions_reporting_html.php:5332 #: ../../include/functions_events.php:200 #: ../../include/functions_events.php:2529 -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4906 msgid "Event name" msgstr "" @@ -11897,17 +12049,17 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:921 #: ../../enterprise/include/class/Omnishell.class.php:642 #: ../../enterprise/include/functions_ipam.php:2114 -#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/modificar_agente.php:700 #: ../../godmode/agentes/agent_manager.php:357 -#: ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3659 -#: ../../include/functions_treeview.php:607 +#: ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/modules.php:908 +#: ../../include/functions_reporting_html.php:3687 +#: ../../include/functions_treeview.php:611 #: ../../include/class/SatelliteAgent.class.php:513 #: ../../include/lib/Group.php:550 ../../include/functions_events.php:201 #: ../../include/functions_events.php:247 #: ../../include/functions_events.php:2534 -#: ../../operation/events/events.php:2669 +#: ../../operation/events/events.php:2723 msgid "Agent name" msgstr "" @@ -11922,39 +12074,41 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:604 #: ../../enterprise/operation/agentes/tag_view.php:789 #: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100 -#: ../../mobile/operation/modules.php:661 -#: ../../mobile/operation/modules.php:852 ../../mobile/operation/events.php:804 +#: ../../godmode/agentes/status_monitor_custom_fields.php:137 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100 +#: ../../mobile/operation/modules.php:672 +#: ../../mobile/operation/modules.php:911 +#: ../../mobile/operation/module_data.php:165 +#: ../../mobile/operation/events.php:833 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1070 #: ../../include/functions_reporting_html.php:1310 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2646 -#: ../../include/functions_reporting_html.php:5306 +#: ../../include/functions_reporting_html.php:2665 +#: ../../include/functions_reporting_html.php:5334 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_inventory.php:143 -#: ../../include/functions_inventory.php:177 -#: ../../include/functions_inventory.php:379 -#: ../../include/functions_inventory.php:399 -#: ../../include/functions_inventory.php:585 +#: ../../include/functions_inventory.php:144 +#: ../../include/functions_inventory.php:178 +#: ../../include/functions_inventory.php:388 +#: ../../include/functions_inventory.php:408 +#: ../../include/functions_inventory.php:594 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 #: ../../include/functions_events.php:262 #: ../../include/functions_events.php:2539 -#: ../../include/functions_events.php:4914 +#: ../../include/functions_events.php:4919 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/estado_generalagente.php:751 +#: ../../operation/agentes/status_monitor.php:1600 +#: ../../operation/agentes/estado_generalagente.php:720 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:196 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263 -#: ../../operation/search_modules.php:39 +#: ../../operation/search_modules.php:42 msgid "Timestamp" msgstr "" @@ -11964,13 +12118,13 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 #: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 #: ../../godmode/events/event_filter.php:146 -#: ../../godmode/events/event_edit_filter.php:352 +#: ../../godmode/events/event_edit_filter.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 #: ../../include/functions_events.php:206 -#: ../../operation/events/events.php:1749 +#: ../../operation/events/events.php:1803 msgid "Event type" msgstr "" @@ -11979,21 +12133,22 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:774 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 #: ../../godmode/agentes/agent_template.php:274 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:163 #: ../../godmode/alerts/alert_list.list.php:104 -#: ../../mobile/operation/modules.php:594 -#: ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:239 -#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 +#: ../../mobile/operation/modules.php:602 +#: ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:907 +#: ../../include/ajax/heatmap.ajax.php:281 +#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024 #: ../../include/ajax/custom_fields.php:411 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558 -#: ../../operation/agentes/status_monitor.php:902 -#: ../../operation/agentes/status_monitor.php:1548 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559 +#: ../../operation/agentes/status_monitor.php:901 +#: ../../operation/agentes/status_monitor.php:1550 msgid "Module name" msgstr "" @@ -12004,7 +12159,7 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:380 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422 #: ../../godmode/alerts/configure_alert_template.php:1602 -#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174 +#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:280 #: ../../include/class/SnmpConsole.class.php:352 @@ -12012,7 +12167,7 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:507 #: ../../include/functions_events.php:208 #: ../../include/functions_events.php:271 -#: ../../operation/agentes/estado_monitores.php:517 +#: ../../operation/agentes/estado_monitores.php:514 msgid "Alert" msgstr "" @@ -12023,18 +12178,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867 #: ../../enterprise/include/functions_reporting.php:2020 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3007 #: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_edit_filter.php:372 +#: ../../godmode/events/event_edit_filter.php:374 #: ../../godmode/events/custom_events.php:104 -#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 -#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 -#: ../../mobile/operation/events.php:983 +#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708 +#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026 +#: ../../mobile/operation/events.php:1027 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 #: ../../include/functions_reporting_html.php:1316 -#: ../../include/functions_reporting_html.php:2644 +#: ../../include/functions_reporting_html.php:2663 #: ../../include/functions_snmp.php:335 #: ../../include/class/SnmpConsole.class.php:363 #: ../../include/class/SnmpConsole.class.php:483 @@ -12042,20 +12197,20 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396 #: ../../include/functions_events.php:209 #: ../../include/functions_events.php:274 -#: ../../include/functions_events.php:4982 -#: ../../operation/events/events.php:1850 +#: ../../include/functions_events.php:4987 +#: ../../operation/events/events.php:1904 msgid "Severity" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/event_edit_filter.php:831 #: ../../godmode/events/custom_events.php:105 -#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../godmode/wizards/HostDevices.class.php:956 #: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 #: ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3622 -#: ../../operation/events/events.php:1906 +#: ../../include/functions_events.php:3627 +#: ../../operation/events/events.php:1960 msgid "Comment" msgstr "" @@ -12066,7 +12221,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:253 #: ../../enterprise/godmode/setup/setup_auth.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:1413 +#: ../../enterprise/godmode/setup/setup_auth.php:1630 #: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:241 #: ../../enterprise/operation/agentes/tag_view.php:781 @@ -12078,21 +12233,21 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:491 #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3973 #: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1772 -#: ../../include/functions_reporting_html.php:3715 +#: ../../mobile/operation/events.php:874 +#: ../../include/functions_reporting_html.php:1781 +#: ../../include/functions_reporting_html.php:3743 #: ../../include/functions_treeview.php:152 #: ../../include/functions_profile.php:205 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 #: ../../include/functions_events.php:211 #: ../../include/functions_events.php:280 -#: ../../include/functions_events.php:5080 ../../operation/tree.php:67 -#: ../../operation/users/user_edit.php:1000 -#: ../../operation/agentes/status_monitor.php:878 -#: ../../operation/agentes/group_view.php:240 +#: ../../include/functions_events.php:5085 ../../operation/tree.php:67 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/agentes/status_monitor.php:877 +#: ../../operation/agentes/group_view.php:243 #: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" @@ -12100,7 +12255,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:114 #: ../../include/functions_events.php:213 -#: ../../include/functions_events.php:4626 +#: ../../include/functions_events.php:4631 msgid "Extra id" msgstr "" @@ -12108,14 +12263,14 @@ msgstr "" #: ../../godmode/setup/setup_integria.php:464 #: ../../godmode/setup/setup_integria.php:598 #: ../../godmode/events/custom_events.php:109 -#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 +#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214 #: ../../include/functions_events.php:289 -#: ../../include/functions_events.php:4936 +#: ../../include/functions_events.php:4941 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 #: ../../operation/incidents/list_integriaims_incidents.php:593 -#: ../../operation/events/events.php:2026 +#: ../../operation/events/events.php:2080 msgid "Owner" msgstr "" @@ -12130,8 +12285,8 @@ msgstr "" #: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 #: ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4614 -#: ../../operation/events/events.php:3239 +#: ../../include/functions_events.php:4619 +#: ../../operation/events/events.php:3298 msgid "Instructions" msgstr "" @@ -12147,11 +12302,11 @@ msgid "Server name" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5216 +#: ../../include/functions_reporting_html.php:5244 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:610 -#: ../../include/functions_events.php:219 ../../operation/tree.php:315 +#: ../../include/functions_events.php:219 ../../operation/tree.php:317 msgid "Module status" msgstr "" @@ -12195,8 +12350,8 @@ msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 -#: ../../include/class/ManageNetScanScripts.class.php:698 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667 +#: ../../include/class/ManageNetScanScripts.class.php:694 msgid "Help" msgstr "" @@ -12217,8 +12372,8 @@ msgid "Change password" msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:691 -#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 +#: ../../enterprise/meta/index.php:692 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857 msgid "Passwords must be the same" msgstr "" @@ -12243,8 +12398,7 @@ msgstr "" #: ../../enterprise/meta/general/login_page.php:316 #: ../../enterprise/include/process_reset_pass.php:239 #: ../../enterprise/include/reset_pass.php:213 -#: ../../enterprise/include/reset_pass.php:320 -#: ../../include/functions_menu.php:955 ../../general/login_page.php:460 +#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460 msgid "Build" msgstr "" @@ -12306,7 +12460,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_agents_meta.php:661 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 -#: ../../include/functions_menu.php:567 +#: ../../include/functions_menu.php:569 msgid "Agents management" msgstr "" @@ -12322,7 +12476,7 @@ msgid "No admin user" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:71 -#: ../../include/functions_config.php:438 +#: ../../include/functions_config.php:446 msgid "Activate Metaconsole" msgstr "" @@ -12370,27 +12524,27 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:533 #: ../../enterprise/godmode/setup/setup_log_collector.php:64 -#: ../../include/functions_config.php:1625 +#: ../../include/functions_config.php:1637 msgid "Number of logs viewed" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:554 #: ../../godmode/setup/setup_auth.php:483 -#: ../../include/functions_config.php:559 +#: ../../include/functions_config.php:567 #: ../../include/class/CredentialStore.class.php:1162 -#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/CredentialStore.class.php:1464 #: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:564 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703 msgid "Fallback to local authentication" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:574 #: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571 msgid "Autocreate remote users" msgstr "" @@ -12398,8 +12552,8 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:325 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 -#: ../../include/functions_config.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1467 +#: ../../include/functions_config.php:575 msgid "Autocreate profile" msgstr "" @@ -12407,8 +12561,8 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:331 #: ../../enterprise/godmode/setup/setup_auth.php:463 -#: ../../enterprise/godmode/setup/setup_auth.php:1256 -#: ../../include/functions_config.php:571 +#: ../../enterprise/godmode/setup/setup_auth.php:1473 +#: ../../include/functions_config.php:579 msgid "Autocreate profile group" msgstr "" @@ -12416,30 +12570,30 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:340 #: ../../enterprise/godmode/setup/setup_auth.php:472 -#: ../../enterprise/godmode/setup/setup_auth.php:1280 -#: ../../include/functions_config.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1497 +#: ../../include/functions_config.php:583 msgid "Autocreate profile tags" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:614 #: ../../enterprise/godmode/setup/setup_auth.php:346 -#: ../../include/functions_config.php:579 +#: ../../include/functions_config.php:587 msgid "Automatically assigned no hierarchy" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:624 -#: ../../enterprise/godmode/setup/setup_auth.php:662 -#: ../../enterprise/godmode/setup/setup_auth.php:1477 -#: ../../include/functions_config.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:668 +#: ../../enterprise/godmode/setup/setup_auth.php:1694 +#: ../../include/functions_config.php:595 msgid "Autocreate blacklist" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:634 #: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/users/configure_user.php:1493 +#: ../../godmode/users/configure_user.php:1546 #: ../../godmode/setup/setup_auth.php:392 -#: ../../include/functions_config.php:799 -#: ../../operation/users/user_edit.php:544 +#: ../../include/functions_config.php:811 +#: ../../operation/users/user_edit.php:537 msgid "Double authentication" msgstr "" @@ -12449,8 +12603,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:656 #: ../../enterprise/meta/include/functions_meta.php:954 -#: ../../include/functions_config.php:807 -#: ../../include/functions_config.php:813 +#: ../../include/functions_config.php:819 +#: ../../include/functions_config.php:825 msgid "Session timeout" msgstr "" @@ -12458,8 +12612,8 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:441 -#: ../../include/functions_config.php:704 -#: ../../include/functions_config.php:820 +#: ../../include/functions_config.php:716 +#: ../../include/functions_config.php:832 msgid "Save Password" msgstr "" @@ -12468,59 +12622,59 @@ msgid "Timezone visual" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:692 -#: ../../enterprise/godmode/setup/setup_auth.php:670 -#: ../../enterprise/godmode/setup/setup_auth.php:1485 -#: ../../include/functions_config.php:591 +#: ../../enterprise/godmode/setup/setup_auth.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1702 +#: ../../include/functions_config.php:599 msgid "Active directory server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:702 -#: ../../enterprise/godmode/setup/setup_auth.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:1502 -#: ../../include/functions_config.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:682 +#: ../../enterprise/godmode/setup/setup_auth.php:1719 +#: ../../include/functions_config.php:603 msgid "Active directory port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:712 #: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/godmode/setup/setup_auth.php:682 -#: ../../enterprise/godmode/setup/setup_auth.php:1519 +#: ../../enterprise/godmode/setup/setup_auth.php:688 +#: ../../enterprise/godmode/setup/setup_auth.php:1736 #: ../../godmode/setup/setup_auth.php:146 -#: ../../include/functions_config.php:599 -#: ../../include/functions_config.php:635 +#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:647 msgid "Start TLS" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:722 #: ../../enterprise/godmode/setup/setup_auth.php:446 -#: ../../enterprise/godmode/setup/setup_auth.php:1239 -#: ../../include/functions_config.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1456 +#: ../../include/functions_config.php:615 msgid "Advanced Config AD" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:732 -#: ../../enterprise/godmode/setup/setup_auth.php:688 -#: ../../enterprise/godmode/setup/setup_auth.php:1525 -#: ../../include/functions_config.php:611 +#: ../../enterprise/godmode/setup/setup_auth.php:694 +#: ../../enterprise/godmode/setup/setup_auth.php:1742 +#: ../../include/functions_config.php:623 msgid "Domain" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:742 #: ../../enterprise/godmode/setup/setup_auth.php:506 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 -#: ../../include/functions_config.php:615 +#: ../../enterprise/godmode/setup/setup_auth.php:1531 +#: ../../include/functions_config.php:627 msgid "Advanced Permisions AD" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:752 #: ../../enterprise/godmode/setup/setup_auth.php:151 -#: ../../include/functions_config.php:619 +#: ../../include/functions_config.php:631 msgid "Advanced Permissions LDAP" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:762 #: ../../enterprise/godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:607 +#: ../../include/functions_config.php:619 msgid "Advanced Config LDAP" msgstr "" @@ -12528,47 +12682,47 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:784 #: ../../enterprise/godmode/setup/setup_auth.php:430 #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "Auto enable node access" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:771 msgid "Saml path" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:763 +#: ../../include/functions_config.php:775 msgid "Saml source" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:779 msgid "Saml user id parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:771 +#: ../../include/functions_config.php:783 msgid "Saml mail parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:775 +#: ../../include/functions_config.php:787 msgid "Saml group name parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:779 +#: ../../include/functions_config.php:791 msgid "Saml attr type parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:889 -#: ../../include/functions_config.php:783 +#: ../../include/functions_config.php:795 msgid "Saml profiles and tags parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:795 +#: ../../include/functions_config.php:807 msgid "Saml profile and tag separator" msgstr "" @@ -12577,48 +12731,48 @@ msgid "SAML profile parameters" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:791 +#: ../../include/functions_config.php:803 msgid "Saml tag parameter" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:966 -#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635 msgid "LDAP server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:976 #: ../../godmode/setup/setup_auth.php:107 -#: ../../include/functions_config.php:627 +#: ../../include/functions_config.php:639 msgid "LDAP port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:986 #: ../../godmode/setup/setup_auth.php:129 -#: ../../include/functions_config.php:631 +#: ../../include/functions_config.php:643 msgid "LDAP version" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1006 #: ../../godmode/setup/setup_auth.php:157 -#: ../../include/functions_config.php:639 +#: ../../include/functions_config.php:651 msgid "Base DN" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1016 #: ../../godmode/setup/setup_auth.php:170 -#: ../../include/functions_config.php:643 +#: ../../include/functions_config.php:655 msgid "Login attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1026 #: ../../godmode/setup/setup_auth.php:183 -#: ../../include/functions_config.php:647 +#: ../../include/functions_config.php:659 msgid "Admin LDAP login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1036 #: ../../godmode/setup/setup_auth.php:196 -#: ../../include/functions_config.php:651 +#: ../../include/functions_config.php:663 msgid "Admin LDAP password" msgstr "" @@ -12628,25 +12782,25 @@ msgid "Ldap search timeout (secs)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1056 -#: ../../include/functions_config.php:715 +#: ../../include/functions_config.php:727 msgid "LDAP secondary enabled" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1065 #: ../../godmode/setup/setup_auth.php:250 -#: ../../include/functions_config.php:659 +#: ../../include/functions_config.php:671 msgid "Secondary LDAP server" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1075 #: ../../godmode/setup/setup_auth.php:267 -#: ../../include/functions_config.php:663 +#: ../../include/functions_config.php:675 msgid "Secondary LDAP port" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1085 #: ../../godmode/setup/setup_auth.php:289 -#: ../../include/functions_config.php:667 +#: ../../include/functions_config.php:679 msgid "Secondary LDAP version" msgstr "" @@ -12656,41 +12810,41 @@ msgid "Secondary start TLS" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1105 -#: ../../include/functions_config.php:675 +#: ../../include/functions_config.php:687 msgid "Secondary base DN" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1115 -#: ../../include/functions_config.php:679 +#: ../../include/functions_config.php:691 msgid "Secondary login attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1125 #: ../../godmode/setup/setup_auth.php:343 -#: ../../include/functions_config.php:683 +#: ../../include/functions_config.php:695 msgid "Admin secondary LDAP login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1135 #: ../../godmode/setup/setup_auth.php:356 -#: ../../include/functions_config.php:687 +#: ../../include/functions_config.php:699 msgid "Admin secondary LDAP password" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1168 #: ../../enterprise/godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:695 +#: ../../include/functions_config.php:707 msgid "Login user attribute" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1178 -#: ../../include/functions_config.php:711 +#: ../../include/functions_config.php:723 msgid "Save profile" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:699 +#: ../../include/functions_config.php:711 msgid "LDAP function" msgstr "" @@ -12702,10 +12856,10 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1211 #: ../../enterprise/meta/include/functions_meta.php:1265 #: ../../enterprise/meta/include/functions_meta.php:1319 -#: ../../enterprise/godmode/setup/setup_auth.php:1118 -#: ../../enterprise/godmode/setup/setup_auth.php:1150 -#: ../../include/functions_config.php:723 -#: ../../include/functions_config.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:1335 +#: ../../enterprise/godmode/setup/setup_auth.php:1367 +#: ../../include/functions_config.php:735 +#: ../../include/functions_config.php:755 msgid "MySQL port" msgstr "" @@ -12714,11 +12868,11 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../enterprise/meta/include/functions_meta.php:2167 #: ../../enterprise/godmode/setup/setup_history.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:1124 -#: ../../enterprise/godmode/setup/setup_auth.php:1156 -#: ../../include/functions_config.php:727 -#: ../../include/functions_config.php:747 -#: ../../include/functions_config.php:1655 +#: ../../enterprise/godmode/setup/setup_auth.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1373 +#: ../../include/functions_config.php:739 +#: ../../include/functions_config.php:759 +#: ../../include/functions_config.php:1667 msgid "Database name" msgstr "" @@ -12727,13 +12881,13 @@ msgid "Babel Enterprise host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1309 -#: ../../enterprise/godmode/setup/setup_auth.php:1144 -#: ../../include/functions_config.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:1361 +#: ../../include/functions_config.php:751 msgid "Integria host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1374 -#: ../../include/functions_config.php:981 +#: ../../include/functions_config.php:993 msgid "Timestamp or time comparation" msgstr "" @@ -12750,7 +12904,7 @@ msgid "Graph color (max)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1439 -#: ../../include/functions_config.php:1029 +#: ../../include/functions_config.php:1041 msgid "Data precision for reports" msgstr "" @@ -12767,8 +12921,8 @@ msgid "type mode zoom charts" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1604 -#: ../../include/functions_config.php:1270 -#: ../../include/functions_config.php:1274 +#: ../../include/functions_config.php:1286 +#: ../../include/functions_config.php:1290 msgid "Random background" msgstr "" @@ -12777,7 +12931,7 @@ msgid "Type of charts" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1664 -#: ../../include/functions_config.php:1078 +#: ../../include/functions_config.php:1090 msgid "Custom logo collapsed" msgstr "" @@ -12786,32 +12940,32 @@ msgid "Custom logo (white background)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1694 -#: ../../include/functions_config.php:1086 +#: ../../include/functions_config.php:1098 msgid "Custom logo login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1704 -#: ../../include/functions_config.php:1090 +#: ../../include/functions_config.php:1102 msgid "Custom splash login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1734 -#: ../../include/functions_config.php:1126 +#: ../../include/functions_config.php:1138 msgid "Custom title1 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1744 -#: ../../include/functions_config.php:1130 +#: ../../include/functions_config.php:1142 msgid "Custom title2 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1754 -#: ../../include/functions_config.php:1118 +#: ../../include/functions_config.php:1130 msgid "Meta custom title header" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1764 -#: ../../include/functions_config.php:1122 +#: ../../include/functions_config.php:1134 msgid "Meta custom subtitle header" msgstr "" @@ -12828,42 +12982,42 @@ msgid "Custom copyright notice" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1863 -#: ../../include/functions_config.php:1062 +#: ../../include/functions_config.php:1074 msgid "Font path" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1873 -#: ../../include/functions_config.php:1516 +#: ../../include/functions_config.php:1532 msgid "Use data multiplier" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1885 -#: ../../include/functions_config.php:1472 +#: ../../include/functions_config.php:1488 msgid "Custom report info" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1895 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1504 msgid "Font family" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1935 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157 -#: ../../godmode/setup/setup_visuals.php:1582 -#: ../../include/functions_config.php:1504 +#: ../../godmode/setup/setup_visuals.php:1597 +#: ../../include/functions_config.php:1520 msgid "Footer" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../include/functions_config.php:1194 +#: ../../include/functions_config.php:1206 msgid "Use the legacy Visual Console" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../include/functions_config.php:1198 +#: ../../include/functions_config.php:1210 msgid "Default expiration of the Visual Console item's cache" msgstr "" @@ -12873,7 +13027,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2050 #: ../../godmode/setup/performance.php:674 -#: ../../include/functions_config.php:894 +#: ../../include/functions_config.php:906 msgid "Use agent access graph" msgstr "" @@ -12894,35 +13048,35 @@ msgid "Node address default" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2153 -#: ../../include/functions_config.php:1642 +#: ../../include/functions_config.php:1654 msgid "Active and historical database cannot be the same." msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2157 #: ../../enterprise/godmode/setup/setup_history.php:178 -#: ../../include/functions_config.php:1647 +#: ../../include/functions_config.php:1659 msgid "Host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2173 -#: ../../include/functions_config.php:1660 +#: ../../include/functions_config.php:1672 msgid "Enable history database" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2178 -#: ../../include/functions_config.php:1664 +#: ../../include/functions_config.php:1676 msgid "Enable history event" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2183 #: ../../enterprise/godmode/setup/setup_history.php:226 -#: ../../include/functions_config.php:1672 +#: ../../include/functions_config.php:1684 msgid "Database user" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2188 #: ../../enterprise/godmode/setup/setup_history.php:242 -#: ../../include/functions_config.php:1676 +#: ../../include/functions_config.php:1688 msgid "Database password" msgstr "" @@ -12935,45 +13089,45 @@ msgid "Database advanced" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2231 -#: ../../include/functions_config.php:1705 +#: ../../include/functions_config.php:1717 msgid "Event Days" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2249 #: ../../enterprise/godmode/servers/new_HA_cluster.php:143 -#: ../../include/functions_config.php:1737 +#: ../../include/functions_config.php:1749 msgid "Delay" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2282 -#: ../../include/functions_config.php:1769 +#: ../../include/functions_config.php:1781 msgid "Historical database purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2291 -#: ../../include/functions_config.php:1777 +#: ../../include/functions_config.php:1789 msgid "Historical database partitions" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2300 -#: ../../include/functions_config.php:1785 +#: ../../include/functions_config.php:1797 msgid "Historical database events purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2309 -#: ../../include/functions_config.php:1801 +#: ../../include/functions_config.php:1813 msgid "Historical database string purge" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2524 #: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB interface" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:2598 #: ../../enterprise/include/functions_policies.php:935 -#: ../../include/functions_reporting.php:7569 +#: ../../include/functions_reporting.php:7578 #, php-format msgid "Failed to connect to node %s" msgstr "" @@ -12987,7 +13141,6 @@ msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 #: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 -#: ../../godmode/menu.php:181 msgid "Local components" msgstr "" @@ -13010,13 +13163,13 @@ msgstr "" #: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_inventory_modules_form.php:49 -#: ../../godmode/menu.php:187 +#: ../../godmode/menu.php:186 msgid "Inventory modules" msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin_registration.php:105 #: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "" @@ -13051,11 +13204,11 @@ msgstr "" #: ../../enterprise/godmode/setup/setup.php:602 #: ../../enterprise/include/class/CommandCenter.class.php:475 #: ../../enterprise/include/functions_login.php:165 -#: ../../enterprise/include/functions_login.php:580 +#: ../../enterprise/include/functions_login.php:584 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2119 +#: ../../godmode/users/configure_user.php:2188 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 #: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292 @@ -13063,21 +13216,21 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:368 #: ../../include/ajax/double_auth.ajax.php:414 #: ../../include/ajax/double_auth.ajax.php:531 -#: ../../include/ajax/events.php:2273 ../../include/functions_menu.php:892 +#: ../../include/ajax/events.php:2274 ../../include/functions_menu.php:897 #: ../../include/functions_ui.php:306 #: ../../include/class/SatelliteAgent.class.php:831 -#: ../../include/class/Diagnostics.class.php:1855 -#: ../../include/functions_events.php:2966 -#: ../../include/functions_events.php:3166 ../../index.php:1555 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168 +#: ../../include/class/Diagnostics.class.php:1859 +#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:3171 ../../index.php:1557 +#: ../../operation/users/user_edit.php:1238 +#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" msgstr "" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:282 +#: ../../godmode/menu.php:280 msgid "Commands" msgstr "" @@ -13095,8 +13248,8 @@ msgid "User to reset password" msgstr "" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:757 -#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 +#: ../../enterprise/meta/index.php:758 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929 msgid "Reset password" msgstr "" @@ -13106,8 +13259,8 @@ msgstr "" #: ../../enterprise/include/process_reset_pass.php:174 #: ../../enterprise/include/reset_pass.php:295 #: ../../enterprise/include/reset_pass.php:298 -#: ../../include/functions_config.php:2678 -#: ../../include/functions_config.php:2730 ../../general/login_page.php:527 +#: ../../include/functions_config.php:2698 +#: ../../include/functions_config.php:2750 ../../general/login_page.php:527 #: ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "" @@ -13115,7 +13268,7 @@ msgstr "" #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:335 #: ../../enterprise/include/reset_pass.php:285 -#: ../../include/functions_config.php:2734 +#: ../../include/functions_config.php:2754 msgid "COMMAND CENTER" msgstr "" @@ -13194,21 +13347,19 @@ msgstr "" msgid "Relation deleted successfully" msgstr "" -#: ../../enterprise/meta/index.php:221 ../../index.php:1492 +#: ../../enterprise/meta/index.php:221 ../../index.php:1494 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 #: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:168 msgid "Connection with server has been lost" msgstr "" -#: ../../enterprise/meta/index.php:222 ../../index.php:1493 +#: ../../enterprise/meta/index.php:222 ../../index.php:1495 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:169 msgid "" "Connection to the server has been lost. Please check your internet " "connection or contact with administrator." @@ -13232,72 +13383,72 @@ msgstr "" msgid "Login error" msgstr "" -#: ../../enterprise/meta/index.php:682 ../../index.php:845 +#: ../../enterprise/meta/index.php:683 ../../index.php:846 msgid "Password changed successfully" msgstr "" -#: ../../enterprise/meta/index.php:688 ../../index.php:851 +#: ../../enterprise/meta/index.php:689 ../../index.php:852 msgid "Failed to change password" msgstr "" -#: ../../enterprise/meta/index.php:702 ../../index.php:868 +#: ../../enterprise/meta/index.php:703 ../../index.php:869 msgid "Too much time since password change request" msgstr "" -#: ../../enterprise/meta/index.php:709 ../../index.php:875 +#: ../../enterprise/meta/index.php:710 ../../index.php:876 msgid "This user has not requested a password change" msgstr "" -#: ../../enterprise/meta/index.php:725 ../../index.php:902 +#: ../../enterprise/meta/index.php:726 ../../index.php:903 msgid "Id user cannot be empty" msgstr "" -#: ../../enterprise/meta/index.php:733 ../../index.php:910 +#: ../../enterprise/meta/index.php:734 ../../index.php:911 msgid "Error in reset password request" msgstr "" -#: ../../enterprise/meta/index.php:741 ../../index.php:918 +#: ../../enterprise/meta/index.php:742 ../../index.php:919 msgid "This user doesn't have a valid email address" msgstr "" -#: ../../enterprise/meta/index.php:758 ../../index.php:929 +#: ../../enterprise/meta/index.php:759 ../../index.php:930 msgid "This is an automatically sent message for user " msgstr "" -#: ../../enterprise/meta/index.php:761 ../../index.php:932 +#: ../../enterprise/meta/index.php:762 ../../index.php:933 msgid "Please click the link below to reset your password" msgstr "" -#: ../../enterprise/meta/index.php:763 ../../index.php:934 +#: ../../enterprise/meta/index.php:764 ../../index.php:935 msgid "Reset your password" msgstr "" -#: ../../enterprise/meta/index.php:767 ../../index.php:938 +#: ../../enterprise/meta/index.php:768 ../../index.php:939 msgid "Please do not reply to this email." msgstr "" -#: ../../enterprise/meta/index.php:773 ../../index.php:943 +#: ../../enterprise/meta/index.php:774 ../../index.php:944 msgid "Error at sending the email" msgstr "" -#: ../../enterprise/meta/index.php:933 +#: ../../enterprise/meta/index.php:934 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge " "process." msgstr "" -#: ../../enterprise/meta/index.php:1001 +#: ../../enterprise/meta/index.php:1002 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "" -#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 +#: ../../enterprise/meta/index.php:1011 ../../index.php:1238 msgid "Please keep all environment updated to same version." msgstr "" -#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 -#: ../../index.php:1340 +#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172 +#: ../../index.php:1341 msgid "Sorry! I can't find the page!" msgstr "" @@ -13317,22 +13468,21 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:703 #: ../../enterprise/operation/agentes/ver_agente.php:95 #: ../../extensions/users_connected.php:180 -#: ../../godmode/users/user_list.php:576 +#: ../../godmode/users/user_list.php:577 #: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006 -#: ../../include/functions_treeview.php:671 -#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418 +#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423 +#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483 +#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:1055 +#: ../../operation/agentes/estado_agente.php:1063 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 -#: ../../operation/inventory/inventory.php:1007 -#: ../../operation/inventory/inventory.php:1301 +#: ../../operation/inventory/inventory.php:1253 msgid "Last contact" msgstr "" @@ -13341,8 +13491,8 @@ msgid "There are no agents included in this group" msgstr "" #: ../../enterprise/meta/agentsearch.php:320 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../operation/tree.php:468 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:470 msgid "Policies found" msgstr "" @@ -13373,22 +13523,25 @@ msgstr "" msgid "%s %s - %s - MR %s" msgstr "" -#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460 msgid "Page generated at" msgstr "" #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284 +#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68 +#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119 #: ../../mobile/operation/alerts.php:176 #: ../../mobile/operation/visualmap.php:185 #: ../../mobile/operation/visualmaps.php:159 -#: ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 -#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 +#: ../../mobile/operation/module_data.php:107 +#: ../../mobile/operation/module_graph.php:256 +#: ../../mobile/operation/events.php:773 +#: ../../mobile/operation/server_status.php:209 +#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "" @@ -13448,7 +13601,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:535 #: ../../mobile/include/functions_web.php:34 #: ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/user.class.php:460 ../../mobile/operation/home.php:148 +#: ../../mobile/include/user.class.php:527 ../../mobile/operation/home.php:167 #: ../../general/header.php:443 ../../general/header.php:445 msgid "Logout" msgstr "" @@ -13463,7 +13616,7 @@ msgid "Please navigate to %s" msgstr "" #: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69 msgid "You will be automatically redirected when all tasks finish" msgstr "" @@ -13471,8 +13624,8 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:199 #: ../../enterprise/operation/services/services.treeview_services.php:60 #: ../../godmode/groups/group_list.php:347 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:178 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:768 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:761 #: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "" @@ -13497,7 +13650,7 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:312 #: ../../enterprise/meta/general/main_menu.php:313 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15831 +#: ../../include/functions_reporting.php:15908 #: ../../include/functions_groups.php:139 #: ../../operation/search_results.php:133 msgid "Reports" @@ -13516,7 +13669,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:200 #: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:584 +#: ../../include/functions_menu.php:586 msgid "Templates wizard" msgstr "" @@ -13544,7 +13697,8 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:73 #: ../../enterprise/operation/services/services.list.php:70 #: ../../enterprise/operation/services/services.table_services.php:67 -#: ../../operation/agentes/ver_agente.php:1668 +#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123 +#: ../../operation/agentes/ver_agente.php:1664 #: ../../general/first_task/service_list.php:38 #: ../../general/first_task/service_list.php:41 msgid "Services" @@ -13559,7 +13713,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:240 #: ../../enterprise/meta/general/main_menu.php:436 -#: ../../enterprise/include/functions_enterprise.php:443 +#: ../../enterprise/include/functions_enterprise.php:453 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -13586,8 +13740,8 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:44 #: ../../enterprise/meta/general/main_menu.php:473 -#: ../../enterprise/include/functions_enterprise.php:439 -#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 +#: ../../enterprise/include/functions_enterprise.php:449 +#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 #: ../../include/functions_reports.php:929 @@ -13643,7 +13797,7 @@ msgid "Command Center" msgstr "" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404 #: ../../godmode/setup/license.php:59 msgid "License" msgstr "" @@ -13658,8 +13812,8 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:720 #: ../../enterprise/meta/general/main_menu.php:755 -#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428 -#: ../../godmode/menu.php:550 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426 +#: ../../godmode/menu.php:548 ../../general/links_menu.php:17 msgid "Links" msgstr "" @@ -13694,9 +13848,9 @@ msgstr "" #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:557 -#: ../../godmode/reporting/reporting_builder.php:3597 -#: ../../godmode/reporting/reporting_builder.php:3695 -#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3712 +#: ../../godmode/reporting/reporting_builder.php:3740 #: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 #: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 @@ -13750,39 +13904,41 @@ msgstr "" #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 -#: ../../operation/agentes/ver_agente.php:1450 -#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203 -#: ../../operation/inventory/inventory.php:301 +#: ../../operation/agentes/ver_agente.php:1451 +#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203 +#: ../../operation/inventory/inventory.php:303 msgid "Inventory" msgstr "" #: ../../enterprise/meta/general/main_menu.php:277 -#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +#: ../../include/ajax/events.php:2321 +#: ../../operation/events/sound_events.php:197 +#: ../../operation/events/events.php:1658 msgid "Events list" msgstr "" #: ../../enterprise/meta/general/main_menu.php:285 -#: ../../operation/events/events.php:1516 +#: ../../operation/events/events.php:1570 msgid "Sound Console" msgstr "" #: ../../enterprise/meta/general/main_menu.php:286 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141 -#: ../../godmode/setup/setup_integria.php:654 -#: ../../include/ajax/events.php:2493 ../../operation/users/user_edit.php:874 -#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571 -#: ../../operation/events/events.php:1517 +#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494 +#: ../../operation/users/user_edit.php:871 +#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571 +#: ../../operation/events/sound_events.php:368 +#: ../../operation/events/events.php:1571 msgid "Start" msgstr "" #: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 -#: ../../operation/events/events.php:1519 +#: ../../operation/events/events.php:1573 msgid "No alert" msgstr "" #: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 -#: ../../operation/events/events.php:1520 +#: ../../operation/events/events.php:1574 msgid "Silence alarm" msgstr "" @@ -13817,7 +13973,7 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:504 #: ../../godmode/alerts/alert_view.php:65 #: ../../godmode/alerts/alert_view.php:286 -#: ../../include/functions_events.php:4548 +#: ../../include/functions_events.php:4553 msgid "Alert details" msgstr "" @@ -13830,7 +13986,7 @@ msgstr "" msgid "Centralised management" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203 #: ../../godmode/massive/massive_operations.php:313 #: ../../godmode/massive/massive_operations.php:336 #: ../../godmode/massive/massive_operations.php:342 @@ -13848,12 +14004,12 @@ msgstr "" msgid "List of Links" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424 msgid "System audit log" msgstr "" #: ../../enterprise/meta/general/main_menu.php:869 -#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606 msgid "About" msgstr "" @@ -13871,18 +14027,18 @@ msgid "Authentication code" msgstr "" #: ../../enterprise/meta/general/login_page.php:185 -#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 +#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393 msgid "Check code" msgstr "" #: ../../enterprise/meta/general/login_page.php:229 #: ../../enterprise/meta/general/login_page.php:288 -#: ../../mobile/include/user.class.php:404 +#: ../../mobile/include/user.class.php:470 msgid "Login" msgstr "" #: ../../enterprise/meta/general/login_page.php:245 -#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 +#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "" @@ -13972,15 +14128,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:330 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 -#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:456 #: ../../include/class/SnmpConsole.class.php:514 -#: ../../include/class/SnmpConsole.class.php:854 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:441 -#: ../../operation/agentes/alerts_status.php:455 +#: ../../include/class/SnmpConsole.class.php:856 +#: ../../operation/agentes/alerts_status.php:301 +#: ../../operation/agentes/alerts_status.php:444 +#: ../../operation/agentes/alerts_status.php:458 msgid "Validate" msgstr "" @@ -14052,7 +14208,7 @@ msgstr "" #: ../../enterprise/load_enterprise.php:931 #: ../../enterprise/load_enterprise.php:1072 -#: ../../godmode/users/configure_user.php:1008 +#: ../../godmode/users/configure_user.php:1056 msgid "Renew" msgstr "" @@ -14132,7 +14288,7 @@ msgstr "" #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 #: ../../enterprise/godmode/servers/HA_cluster.php:182 -#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 +#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "" @@ -14179,7 +14335,7 @@ msgstr "" #: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34 #: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253 #: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38 -#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39 +#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39 #: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 @@ -14190,7 +14346,7 @@ msgstr "" #: ../../extensions/extension_uploader.php:43 #: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145 #: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99 -#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537 +#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535 msgid "Extension manager" msgstr "" @@ -14245,7 +14401,7 @@ msgstr "" #: ../../enterprise/extensions/csv_import_group/main.php:131 #: ../../enterprise/include/class/CSVImportAgents.class.php:208 -#: ../../include/functions_filemanager.php:899 +#: ../../include/functions_filemanager.php:919 msgid "Go" msgstr "" @@ -14420,25 +14576,26 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1143 #: ../../mobile/operation/modules.php:548 #: ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 -#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1416 +#: ../../mobile/operation/modules.php:622 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416 #: ../../include/functions.php:1455 ../../include/functions_modules.php:2905 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:4235 -#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246 -#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664 +#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320 +#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687 #: ../../include/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 #: ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1791 -#: ../../operation/agentes/status_monitor.php:1797 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/search_modules.php:115 -#: ../../operation/search_modules.php:142 ../../operation/events/events.php:633 -#: ../../operation/events/events.php:710 ../../operation/events/events.php:736 +#: ../../operation/agentes/status_monitor.php:1793 +#: ../../operation/agentes/status_monitor.php:1799 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/pandora_networkmap.view.php:1849 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/search_modules.php:118 +#: ../../operation/search_modules.php:145 ../../operation/events/events.php:638 +#: ../../operation/events/events.php:715 ../../operation/events/events.php:741 msgid "NORMAL" msgstr "" @@ -14452,25 +14609,26 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1159 #: ../../mobile/operation/modules.php:554 #: ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 -#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1404 +#: ../../mobile/operation/modules.php:628 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404 #: ../../include/functions.php:1436 ../../include/functions_modules.php:2899 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:4239 -#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252 -#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634 +#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326 +#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657 #: ../../include/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 #: ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1805 -#: ../../operation/agentes/status_monitor.php:1818 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/pandora_networkmap.view.php:1842 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/search_modules.php:121 -#: ../../operation/search_modules.php:150 ../../operation/events/events.php:608 -#: ../../operation/events/events.php:716 ../../operation/events/events.php:741 +#: ../../operation/agentes/status_monitor.php:1807 +#: ../../operation/agentes/status_monitor.php:1820 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/pandora_networkmap.view.php:1843 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:153 ../../operation/events/events.php:613 +#: ../../operation/events/events.php:721 ../../operation/events/events.php:746 msgid "CRITICAL" msgstr "" @@ -14485,26 +14643,27 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1175 #: ../../mobile/operation/modules.php:560 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1407 +#: ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407 #: ../../include/functions.php:1443 ../../include/functions_modules.php:2902 #: ../../include/functions_modules.php:2919 #: ../../include/functions_modules.php:4243 -#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240 -#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642 -#: ../../include/class/NetworkMap.class.php:2949 +#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314 +#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665 +#: ../../include/class/NetworkMap.class.php:2955 #: ../../include/lib/Module.php:591 ../../include/functions_events.php:78 #: ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1826 -#: ../../operation/agentes/status_monitor.php:1839 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1845 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:127 -#: ../../operation/search_modules.php:158 ../../operation/events/events.php:638 -#: ../../operation/events/events.php:704 ../../operation/events/events.php:758 +#: ../../operation/agentes/status_monitor.php:1828 +#: ../../operation/agentes/status_monitor.php:1841 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1846 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:130 +#: ../../operation/search_modules.php:161 ../../operation/events/events.php:643 +#: ../../operation/events/events.php:709 ../../operation/events/events.php:763 msgid "WARNING" msgstr "" @@ -14522,33 +14681,34 @@ msgstr "" #: ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1420 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420 #: ../../include/functions.php:1446 ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259 -#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648 +#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333 +#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671 #: ../../include/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 #: ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1847 -#: ../../operation/agentes/status_monitor.php:1860 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:133 -#: ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 ../../operation/events/events.php:644 -#: ../../operation/events/events.php:723 ../../operation/events/events.php:763 +#: ../../operation/agentes/status_monitor.php:1849 +#: ../../operation/agentes/status_monitor.php:1862 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:136 +#: ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 ../../operation/events/events.php:649 +#: ../../operation/events/events.php:728 ../../operation/events/events.php:768 msgid "UNKNOWN" msgstr "" @@ -14763,7 +14923,7 @@ msgid "Power Status: " msgstr "" #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1881 +#: ../../operation/agentes/pandora_networkmap.view.php:1882 msgid "Status: " msgstr "" @@ -14776,7 +14936,7 @@ msgid "Export agents" msgstr "" #: ../../enterprise/extensions/resource_exportation/functions.php:46 -#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../enterprise/include/functions_reporting.php:8165 #: ../../extensions/resource_exportation.php:456 #: ../../extensions/resource_exportation.php:468 #: ../../operation/agentes/exportdata.php:464 @@ -14893,12 +15053,12 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 #: ../../godmode/modules/manage_network_components_form_wizard.php:421 -#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../godmode/agentes/module_manager_editor_common.php:1151 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 -#: ../../include/functions_reporting_html.php:5528 +#: ../../include/functions_reporting_html.php:5556 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 @@ -14917,12 +15077,12 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 #: ../../godmode/modules/manage_network_components_form_wizard.php:430 -#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 -#: ../../include/functions_reporting_html.php:5529 +#: ../../include/functions_reporting_html.php:5557 #: ../../include/functions_treeview.php:91 #: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 @@ -14939,7 +15099,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:183 #: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager_editor_common.php:601 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 #: ../../include/functions_treeview.php:89 @@ -14956,7 +15116,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/agentes/module_manager_editor_common.php:566 #: ../../godmode/massive/massive_edit_modules.php:645 #: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" @@ -14971,12 +15131,14 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:528 msgid "Change to critical status after" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:359 #: ../../godmode/modules/manage_network_components_form_common.php:210 #: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:530 msgid "intervals in warning status." msgstr "" @@ -14996,7 +15158,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 #: ../../godmode/modules/manage_network_components_form_common.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/agentes/module_manager_editor_common.php:1201 #: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "" @@ -15004,7 +15166,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 #: ../../godmode/modules/manage_network_components_form_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 #: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "" @@ -15014,7 +15176,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 #: ../../godmode/modules/manage_network_components_form_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1195 +#: ../../godmode/agentes/module_manager_editor_common.php:1205 #: ../../godmode/massive/massive_edit_modules.php:953 #: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" @@ -15025,7 +15187,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 #: ../../godmode/modules/manage_network_components_form_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 #: ../../godmode/massive/massive_edit_modules.php:952 #: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" @@ -15035,7 +15197,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 #: ../../godmode/modules/manage_network_components_form_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/agentes/module_manager_editor_common.php:1238 #: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "" @@ -15044,7 +15206,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 #: ../../godmode/modules/manage_network_components_form_common.php:297 -#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/module_manager_editor_common.php:1239 #: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "" @@ -15053,7 +15215,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 #: ../../godmode/modules/manage_network_components_form_common.php:306 -#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 #: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "" @@ -15063,15 +15225,16 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 #: ../../enterprise/include/functions_reporting_csv.php:2225 #: ../../godmode/modules/manage_network_components_form_common.php:316 -#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/agentes/module_manager_editor_common.php:624 #: ../../godmode/massive/massive_edit_modules.php:1057 -#: ../../include/functions_reporting.php:4664 +#: ../../mobile/operation/modules.php:860 +#: ../../include/functions_reporting.php:4673 msgid "Historical data" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/agentes/module_manager_editor_common.php:1292 #: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "" @@ -15091,9 +15254,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:473 #: ../../enterprise/include/functions_reporting_csv.php:1251 #: ../../godmode/modules/manage_network_components_form_common.php:319 -#: ../../godmode/agentes/module_manager_editor_common.php:1105 +#: ../../godmode/agentes/module_manager_editor_common.php:1115 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:7102 +#: ../../include/functions_reporting.php:7111 msgid "Min. Value" msgstr "" @@ -15105,9 +15268,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:478 #: ../../enterprise/include/functions_reporting_csv.php:1306 #: ../../godmode/modules/manage_network_components_form_common.php:321 -#: ../../godmode/agentes/module_manager_editor_common.php:1106 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:7098 +#: ../../include/functions_reporting.php:7107 msgid "Max. Value" msgstr "" @@ -15119,9 +15282,9 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_network.php:210 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/agentes/module_manager_editor_common.php:1338 #: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" @@ -15136,55 +15299,55 @@ msgid "Check the correct structure of the data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:518 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 msgid "First line must be \"module_begin\"" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 msgid "Data configuration is empty" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:520 #: ../../enterprise/godmode/modules/configure_local_component.php:524 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 msgid "Last line must be \"module_end\"" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Type is wrong. Please set a correct type" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:526 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 msgid "Error in the syntax, please check the data configuration." msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259 msgid "Data configuration are built correctly" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 #: ../../godmode/modules/manage_network_components_form_common.php:334 -#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/agentes/module_manager_editor_common.php:1053 #: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" msgstr "" @@ -15199,7 +15362,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 #: ../../godmode/modules/manage_network_components_form_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 #: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" msgstr "" @@ -15214,7 +15377,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 #: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/agentes/module_manager_editor_common.php:1030 #: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" msgstr "" @@ -15229,7 +15392,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 #: ../../godmode/modules/manage_network_components_form_common.php:353 -#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/agentes/module_manager_editor_common.php:755 #: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" @@ -15237,13 +15400,13 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:573 #: ../../godmode/modules/manage_network_components_form_common.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/agentes/module_manager_editor_common.php:792 msgid "Tags available" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:591 #: ../../godmode/modules/manage_network_components_form_common.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:862 +#: ../../godmode/agentes/module_manager_editor_common.php:872 msgid "Add tags to module" msgstr "" @@ -15255,7 +15418,7 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:196 #: ../../enterprise/godmode/setup/setup_auth.php:551 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1576 #: ../../godmode/modules/manage_network_components_form_common.php:393 msgid "Tags selected" msgstr "" @@ -15266,48 +15429,48 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:651 #: ../../godmode/servers/plugin.php:573 -#: ../../include/class/ManageNetScanScripts.class.php:644 +#: ../../include/class/ManageNetScanScripts.class.php:640 msgid "Default value" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:628 -#: ../../include/class/ManageNetScanScripts.class.php:732 +#: ../../godmode/servers/plugin.php:632 +#: ../../include/class/ManageNetScanScripts.class.php:728 msgid "Add macro" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../include/class/ManageNetScanScripts.class.php:750 +#: ../../include/class/ManageNetScanScripts.class.php:746 msgid "Delete macro" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2263 +#: ../../godmode/agentes/module_manager_editor_common.php:2273 msgid "Normal Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2264 +#: ../../godmode/agentes/module_manager_editor_common.php:2274 msgid "Warning Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2265 +#: ../../godmode/agentes/module_manager_editor_common.php:2275 msgid "Critical Status" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2268 +#: ../../godmode/agentes/module_manager_editor_common.php:2278 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2269 +#: ../../godmode/agentes/module_manager_editor_common.php:2279 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "" @@ -15316,7 +15479,7 @@ msgid "Please introduce a positicve percentage value" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:140 -#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/modules/manage_network_components.php:196 #: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" @@ -15337,9 +15500,9 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:109 -#: ../../godmode/modules/manage_network_components.php:198 -#: ../../godmode/modules/manage_network_components.php:436 -#: ../../godmode/users/configure_user.php:531 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../godmode/users/configure_user.php:480 #: ../../godmode/agentes/configurar_agente.php:361 #: ../../godmode/agentes/configurar_agente.php:883 #: ../../godmode/agentes/planned_downtime.editor.php:650 @@ -15348,8 +15511,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:544 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 -#: ../../include/functions_alerts.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6028 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 @@ -15369,14 +15532,14 @@ msgid "" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:339 -#: ../../godmode/modules/manage_network_components.php:447 +#: ../../godmode/modules/manage_network_components.php:449 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:407 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:1266 +#: ../../enterprise/godmode/policies/policy_modules.php:1311 #: ../../enterprise/godmode/policies/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 @@ -15387,23 +15550,23 @@ msgstr "" #: ../../enterprise/include/ajax/servers.ajax.php:368 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:535 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/modules/manage_network_components.php:538 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/alert_templates.php:166 #: ../../godmode/alerts/configure_alert_template.php:572 #: ../../godmode/alerts/alert_list.php:95 #: ../../godmode/alerts/alert_list.php:320 ../../godmode/setup/gis.php:41 -#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_alerts.php:2756 #: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:515 +#: ../../operation/agentes/pandora_networkmap.php:516 msgid "Could not be updated" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:415 -#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components.php:547 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "" @@ -15412,7 +15575,7 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:218 #: ../../godmode/modules/manage_inventory_modules.php:234 #: ../../godmode/modules/manage_inventory_modules.php:267 -#: ../../godmode/modules/manage_network_components.php:588 +#: ../../godmode/modules/manage_network_components.php:591 #: ../../godmode/modules/manage_network_templates.php:114 msgid "Successfully multiple deleted" msgstr "" @@ -15421,14 +15584,14 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:219 #: ../../godmode/modules/manage_inventory_modules.php:235 #: ../../godmode/modules/manage_inventory_modules.php:268 -#: ../../godmode/modules/manage_network_components.php:589 +#: ../../godmode/modules/manage_network_components.php:592 #: ../../godmode/modules/manage_network_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "" #: ../../enterprise/godmode/modules/local_components.php:567 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../godmode/modules/manage_network_components.php:677 +#: ../../godmode/modules/manage_network_components.php:680 msgid "Free Search" msgstr "" @@ -15437,15 +15600,15 @@ msgid "Search by name, description or data, list matches." msgstr "" #: ../../enterprise/godmode/modules/local_components.php:732 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1681 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:841 -#: ../../godmode/agentes/module_manager.php:961 +#: ../../godmode/modules/manage_network_components.php:844 +#: ../../godmode/agentes/module_manager.php:975 #: ../../godmode/snmpconsole/snmp_alert.php:1984 #: ../../godmode/snmpconsole/snmp_alert.php:1985 #: ../../godmode/alerts/alert_actions.php:461 -#: ../../godmode/alerts/alert_templates.php:458 +#: ../../godmode/alerts/alert_templates.php:462 #: ../../godmode/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "" @@ -15514,7 +15677,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:737 #: ../../godmode/agentes/planned_downtime.editor.php:951 -#: ../../include/functions_reporting_html.php:6372 +#: ../../include/functions_reporting_html.php:6406 msgid "Execution" msgstr "" @@ -15602,8 +15765,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 @@ -15633,20 +15796,20 @@ msgstr "" #: ../../godmode/massive/massive_edit_users.php:462 #: ../../godmode/massive/massive_edit_users.php:470 #: ../../godmode/massive/massive_edit_users.php:507 -#: ../../godmode/massive/massive_edit_users.php:609 -#: ../../godmode/massive/massive_edit_users.php:628 -#: ../../godmode/massive/massive_edit_users.php:635 -#: ../../godmode/massive/massive_edit_agents.php:677 -#: ../../godmode/massive/massive_edit_agents.php:703 -#: ../../godmode/massive/massive_edit_agents.php:739 -#: ../../godmode/massive/massive_edit_agents.php:763 -#: ../../godmode/massive/massive_edit_agents.php:880 -#: ../../godmode/massive/massive_edit_agents.php:927 -#: ../../godmode/massive/massive_edit_agents.php:1020 -#: ../../godmode/massive/massive_edit_agents.php:1073 -#: ../../godmode/massive/massive_edit_agents.php:1115 -#: ../../godmode/massive/massive_edit_agents.php:1143 -#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_users.php:610 +#: ../../godmode/massive/massive_edit_users.php:629 +#: ../../godmode/massive/massive_edit_users.php:636 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_edit_agents.php:720 +#: ../../godmode/massive/massive_edit_agents.php:756 +#: ../../godmode/massive/massive_edit_agents.php:780 +#: ../../godmode/massive/massive_edit_agents.php:897 +#: ../../godmode/massive/massive_edit_agents.php:944 +#: ../../godmode/massive/massive_edit_agents.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:1090 +#: ../../godmode/massive/massive_edit_agents.php:1132 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_edit_agents.php:1253 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:652 #: ../../godmode/massive/massive_edit_modules.php:721 @@ -15668,28 +15831,27 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:1095 #: ../../godmode/massive/massive_edit_modules.php:1123 #: ../../godmode/massive/massive_edit_modules.php:1227 -#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978 -#: ../../include/functions_html.php:2116 +#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989 +#: ../../include/functions_html.php:2127 msgid "No change" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 -#: ../../godmode/agentes/agent_manager.php:636 +#: ../../godmode/agentes/agent_manager.php:638 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:5061 -#: ../../operation/agentes/estado_generalagente.php:504 -#: ../../operation/inventory/inventory.php:1003 -#: ../../operation/inventory/inventory.php:1297 +#: ../../include/functions_events.php:5066 +#: ../../operation/agentes/estado_generalagente.php:475 +#: ../../operation/inventory/inventory.php:1249 msgid "Secondary groups" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 -#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../godmode/massive/massive_edit_agents.php:842 msgid "Add secondary groups" msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 -#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../godmode/massive/massive_edit_agents.php:868 msgid "Remove secondary groups" msgstr "" @@ -15700,7 +15862,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../operation/agentes/estado_agente.php:1063 +#: ../../operation/agentes/estado_agente.php:1071 msgid "Op" msgstr "" @@ -15780,13 +15942,13 @@ msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 #: ../../enterprise/include/lib/Metaconsole/Node.php:1115 -#: ../../godmode/users/user_list.php:845 +#: ../../godmode/users/user_list.php:846 #: ../../godmode/massive/massive_edit_users.php:529 -#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../godmode/alerts/alert_list.list.php:1169 #: ../../include/class/SatelliteAgent.class.php:1195 -#: ../../include/class/TipsWindow.class.php:456 -#: ../../include/class/TipsWindow.class.php:734 -#: ../../include/class/TipsWindow.class.php:901 +#: ../../include/class/TipsWindow.class.php:468 +#: ../../include/class/TipsWindow.class.php:754 +#: ../../include/class/TipsWindow.class.php:921 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "" @@ -15798,15 +15960,15 @@ msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../enterprise/include/lib/Metaconsole/Node.php:1141 -#: ../../godmode/users/user_list.php:840 +#: ../../godmode/users/user_list.php:841 #: ../../godmode/massive/massive_edit_users.php:518 -#: ../../godmode/alerts/alert_list.list.php:1143 +#: ../../godmode/alerts/alert_list.list.php:1142 #: ../../include/functions.php:3413 #: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226 msgid "Add new configuration definition" msgstr "" @@ -15830,10 +15992,10 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:212 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:607 -#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322 +#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320 #: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282 -#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764 -#: ../../godmode/servers/plugin.php:806 +#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756 +#: ../../godmode/servers/plugin.php:798 msgid "Plugins" msgstr "" @@ -15860,12 +16022,12 @@ msgid "Show files" msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:251 -#: ../../enterprise/operation/log/log_viewer.php:1477 -#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../enterprise/operation/log/log_viewer.php:1475 +#: ../../enterprise/operation/log/log_viewer.php:1483 #: ../../godmode/reporting/reporting_builder.php:1268 -#: ../../include/functions_reporting.php:3199 -#: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:776 +#: ../../include/functions_reporting.php:3208 +#: ../../operation/agentes/agent_inventory.php:334 +#: ../../operation/inventory/inventory.php:1005 msgid "No data found." msgstr "" @@ -15874,9 +16036,9 @@ msgstr "" #: ../../godmode/agentes/inventory_manager.php:232 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../godmode/reporting/graph_builder.graph_editor.php:344 #: ../../include/ajax/alert_list.ajax.php:285 -#: ../../operation/agentes/status_monitor.php:1531 +#: ../../operation/agentes/status_monitor.php:1533 msgid "P." msgstr "" @@ -15892,7 +16054,7 @@ msgid "Capacity planning" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15903,7 +16065,8 @@ msgstr "" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 #: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4127 +#: ../../mobile/operation/services.php:267 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "" @@ -15920,59 +16083,59 @@ msgstr "" msgid "Trending module" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 msgid "Fixed value" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operation as add" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as deduct" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as multiplicate " msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Add module to operations as divide" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 msgid "Remove selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148 msgid "Add module to average operation" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Remove selected modules from operations stack" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160 msgid "Move down selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161 msgid "Move up selected modules" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 msgid "Select Service" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214 msgid "Netflow filter" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223 msgid "Select filter" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238 msgid "Percentual value" msgstr "" @@ -16086,15 +16249,19 @@ msgstr "" msgid "No component was found" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 +msgid "Macro value" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 msgid "Show configuration data" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182 msgid "Hide configuration data" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190 msgid "Data configuration" msgstr "" @@ -16130,7 +16297,7 @@ msgid "Add Modules" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 -#: ../../godmode/agentes/module_manager.php:1247 +#: ../../godmode/agentes/module_manager.php:1268 msgid "Delete module" msgstr "" @@ -16171,8 +16338,8 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 #: ../../godmode/tag/edit_tag.php:76 -#: ../../include/class/TipsWindow.class.php:718 -#: ../../include/class/TipsWindow.class.php:885 +#: ../../include/class/TipsWindow.class.php:738 +#: ../../include/class/TipsWindow.class.php:905 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "" @@ -16192,7 +16359,7 @@ msgid "Only Selenium 3." msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:1206 +#: ../../godmode/agentes/module_manager_editor_common.php:1216 msgid "Change all states" msgstr "" @@ -16216,15 +16383,15 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:253 #: ../../godmode/agentes/agent_manager.php:195 -#: ../../godmode/agentes/module_manager_editor_common.php:744 -#: ../../godmode/massive/massive_edit_agents.php:812 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/massive/massive_edit_agents.php:829 msgid "Custom ID" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 -#: ../../godmode/agentes/module_manager.php:902 +#: ../../godmode/agentes/module_manager.php:916 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16232,7 +16399,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1291 #: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "" @@ -16245,7 +16412,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/agentes/module_manager_editor_common.php:1420 #: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "" @@ -16259,7 +16426,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 #: ../../godmode/agentes/module_manager_editor.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:1444 +#: ../../godmode/agentes/module_manager_editor_common.php:1454 msgid "Custom macros" msgstr "" @@ -16285,13 +16452,15 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 #: ../../godmode/gis_maps/configure_gis_map.php:116 -#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/visual_console_builder.php:873 #: ../../godmode/reporting/map_builder.php:129 #: ../../godmode/reporting/visual_console_favorite.php:126 -#: ../../operation/visual_console/view.php:247 +#: ../../operation/visual_console/view.php:249 +#: ../../operation/visual_console/legacy_view.php:215 +#: ../../operation/agentes/networkmap.dinamic.php:146 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:681 -#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/agentes/pandora_networkmap.php:682 +#: ../../operation/agentes/pandora_networkmap.view.php:2410 #: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 #: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" @@ -16300,15 +16469,15 @@ msgstr "" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 -#: ../../operation/agentes/pandora_networkmap.php:685 -#: ../../operation/agentes/pandora_networkmap.view.php:2311 +#: ../../operation/agentes/pandora_networkmap.php:686 +#: ../../operation/agentes/pandora_networkmap.view.php:2312 msgid "Networkmap" msgstr "" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2317 +#: ../../operation/agentes/pandora_networkmap.view.php:2318 msgid "Not found networkmap." msgstr "" @@ -16413,7 +16582,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:75 #: ../../enterprise/godmode/policies/configure_policy.php:92 #: ../../enterprise/godmode/policies/policy_modules.php:488 -#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:220 #: ../../enterprise/godmode/policies/policies.php:275 #: ../../enterprise/godmode/policies/policy_linking.php:127 #: ../../enterprise/godmode/policies/policy_external_alerts.php:329 @@ -16445,7 +16614,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_modules.php:1377 #: ../../enterprise/godmode/policies/policy_external_alerts.php:162 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 #: ../../enterprise/godmode/policies/policy_collections.php:122 @@ -16456,7 +16625,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:271 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_modules.php:1378 #: ../../enterprise/godmode/policies/policy_external_alerts.php:163 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 #: ../../enterprise/godmode/policies/policy_collections.php:123 @@ -16478,7 +16647,7 @@ msgid "There are no defined plugins" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policy_modules.php:615 #: ../../enterprise/godmode/policies/policies.php:256 #: ../../enterprise/godmode/policies/policy_linking.php:51 #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 @@ -16492,7 +16661,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:164 #: ../../enterprise/godmode/policies/policy_modules.php:547 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/configurar_agente.php:2277 #: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 @@ -16578,8 +16747,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_external_alerts.php:510 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443 #: ../../godmode/alerts/alert_list.list.php:724 -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "On" msgstr "" @@ -16591,7 +16760,7 @@ msgid "Until" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:577 -#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_modules.php:1698 #: ../../enterprise/godmode/policies/policy_external_alerts.php:583 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_agents.php:1192 @@ -16604,12 +16773,12 @@ msgid "There is not alerts configured in this policy." msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:695 -#: ../../godmode/alerts/alert_list.list.php:1197 +#: ../../godmode/alerts/alert_list.list.php:1196 msgid "Set off standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:704 -#: ../../godmode/alerts/alert_list.list.php:1224 +#: ../../godmode/alerts/alert_list.list.php:1223 msgid "Set standby" msgstr "" @@ -16628,9 +16797,9 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:476 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 #: ../../godmode/snmpconsole/snmp_alert.php:2020 -#: ../../godmode/alerts/alert_list.list.php:995 -#: ../../godmode/alerts/alert_list.list.php:1006 -#: ../../godmode/alerts/alert_list.list.php:1270 +#: ../../godmode/alerts/alert_list.list.php:994 +#: ../../godmode/alerts/alert_list.list.php:1005 +#: ../../godmode/alerts/alert_list.list.php:1269 msgid "Add action" msgstr "" @@ -16684,249 +16853,249 @@ msgstr "" msgid "Could not be added module(s). You must select a policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:593 +#: ../../enterprise/godmode/policies/policy_modules.php:597 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:603 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:639 msgid "To define plugins please use plugin configuration tab." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:934 +#: ../../enterprise/godmode/policies/policy_modules.php:938 msgid "Could not be added module." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1281 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1285 +#: ../../enterprise/godmode/policies/policy_modules.php:1330 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../enterprise/godmode/policies/policy_modules.php:1360 +#: ../../enterprise/godmode/policies/policy_modules.php:1373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " "policy application." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_modules.php:1364 msgid "Could not be added to deleted all modules." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1379 -#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../enterprise/godmode/policies/policy_modules.php:1424 +#: ../../godmode/agentes/configurar_agente.php:2190 #: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1397 -#: ../../godmode/agentes/configurar_agente.php:2141 +#: ../../enterprise/godmode/policies/policy_modules.php:1442 +#: ../../godmode/agentes/configurar_agente.php:2204 #, php-format msgid "copy of %s (%d)" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1427 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 msgid "Successfully duplicate the module." msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1428 -#: ../../operation/agentes/pandora_networkmap.php:540 +#: ../../enterprise/godmode/policies/policy_modules.php:1473 +#: ../../operation/agentes/pandora_networkmap.php:541 msgid "Could not be duplicated" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1482 -#: ../../operation/agentes/estado_monitores.php:610 +#: ../../enterprise/godmode/policies/policy_modules.php:1527 +#: ../../operation/agentes/estado_monitores.php:608 msgid "Show in hierachy mode" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1577 +#: ../../enterprise/godmode/policies/policy_modules.php:1622 msgid "Local component" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1590 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1635 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "Disabled module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1598 -#: ../../enterprise/godmode/policies/policy_modules.php:1599 +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1644 msgid "Enabled module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1609 -#: ../../enterprise/godmode/policies/policy_modules.php:1610 -#: ../../godmode/agentes/module_manager.php:940 +#: ../../enterprise/godmode/policies/policy_modules.php:1654 +#: ../../enterprise/godmode/policies/policy_modules.php:1655 +#: ../../godmode/agentes/module_manager.php:954 msgid "Enable module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1619 -#: ../../enterprise/godmode/policies/policy_modules.php:1620 -#: ../../godmode/agentes/module_manager.php:949 +#: ../../enterprise/godmode/policies/policy_modules.php:1664 +#: ../../enterprise/godmode/policies/policy_modules.php:1665 +#: ../../godmode/agentes/module_manager.php:963 msgid "Disable module" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1719 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 msgid "There are no defined modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../enterprise/godmode/policies/policy_modules.php:1885 #: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../enterprise/godmode/policies/policy_modules.php:1886 #: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../enterprise/godmode/policies/policy_modules.php:1887 #: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:2008 +#: ../../enterprise/godmode/policies/policy_modules.php:2053 msgid "Are you sure to copy modules into policy?\\n" msgstr "" -#: ../../enterprise/godmode/policies/policy_modules.php:2028 +#: ../../enterprise/godmode/policies/policy_modules.php:2071 msgid "Please select any module to copy" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/godmode/policies/policy_queue.php:65 msgid "No policies with this id" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_queue.php:80 #: ../../enterprise/godmode/policies/policy_agents.php:61 msgid "" "Starting with Pandora FMS version 760, assigning an entire group to a policy " "will apply it automatically to all the new agents added to that group." msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:146 +#: ../../enterprise/godmode/policies/policy_queue.php:148 #, php-format msgid "%s: Operations successfully deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:153 +#: ../../enterprise/godmode/policies/policy_queue.php:155 msgid "Operations successfully deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:154 +#: ../../enterprise/godmode/policies/policy_queue.php:156 msgid "Operations cannot be deleted from the queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:263 #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:418 +#: ../../enterprise/godmode/policies/policy_queue.php:420 msgid "Update pending" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:424 +#: ../../enterprise/godmode/policies/policy_queue.php:426 msgid "Update pending agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../enterprise/godmode/policies/policy_queue.php:449 #: ../../enterprise/godmode/policies/policy_agents.php:1135 #: ../../enterprise/godmode/policies/policy_agents.php:1477 msgid "Add to apply queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:453 +#: ../../enterprise/godmode/policies/policy_queue.php:455 msgid "Add to apply queue only for database" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:464 +#: ../../enterprise/godmode/policies/policy_queue.php:466 msgid "Update pending groups" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:478 +#: ../../enterprise/godmode/policies/policy_queue.php:480 msgid "Link pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_queue.php:488 msgid "Will be linked in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:492 +#: ../../enterprise/godmode/policies/policy_queue.php:494 msgid "Unlink pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:498 +#: ../../enterprise/godmode/policies/policy_queue.php:500 msgid "Will be unlinked in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:505 msgid "Delete pending" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:509 +#: ../../enterprise/godmode/policies/policy_queue.php:511 msgid "Delete pending agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:517 -#: ../../enterprise/godmode/policies/policy_queue.php:532 -#: ../../enterprise/godmode/policies/policy_queue.php:547 -#: ../../enterprise/godmode/policies/policy_queue.php:562 -#: ../../enterprise/godmode/policies/policy_queue.php:577 -#: ../../enterprise/godmode/policies/policy_queue.php:592 -#: ../../enterprise/godmode/policies/policy_queue.php:607 -#: ../../enterprise/godmode/policies/policy_queue.php:622 +#: ../../enterprise/godmode/policies/policy_queue.php:519 +#: ../../enterprise/godmode/policies/policy_queue.php:534 +#: ../../enterprise/godmode/policies/policy_queue.php:549 +#: ../../enterprise/godmode/policies/policy_queue.php:564 +#: ../../enterprise/godmode/policies/policy_queue.php:579 +#: ../../enterprise/godmode/policies/policy_queue.php:594 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:624 msgid "Will be deleted in the next policy application" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:526 msgid "Delete pending groups" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:539 +#: ../../enterprise/godmode/policies/policy_queue.php:541 msgid "Delete pending modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:554 +#: ../../enterprise/godmode/policies/policy_queue.php:556 msgid "Delete pending inventory modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:569 +#: ../../enterprise/godmode/policies/policy_queue.php:571 msgid "Delete pending alerts" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:584 +#: ../../enterprise/godmode/policies/policy_queue.php:586 msgid "Delete pending external alerts" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:599 +#: ../../enterprise/godmode/policies/policy_queue.php:601 msgid "Delete pending file collections" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:614 +#: ../../enterprise/godmode/policies/policy_queue.php:616 msgid "Delete pending plugins" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:628 +#: ../../enterprise/godmode/policies/policy_queue.php:630 msgid "Advices" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:633 +#: ../../enterprise/godmode/policies/policy_queue.php:635 msgid "Queue summary" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/policies/policy_queue.php:636 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 #: ../../godmode/snmpconsole/snmp_alert.php:1812 #: ../../godmode/alerts/alert_list.list.php:260 @@ -16934,28 +17103,28 @@ msgstr "" msgid "Toggle filter(s)" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../enterprise/godmode/policies/policy_queue.php:712 #: ../../enterprise/godmode/policies/policy_linking.php:203 #: ../../include/functions_massive_operations.php:189 -#: ../../include/lib/Dashboard/Widget.php:603 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544 -#: ../../include/functions_events.php:4908 +#: ../../include/lib/Dashboard/Widget.php:604 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 +#: ../../include/functions_events.php:4913 msgid "Node" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:838 +#: ../../enterprise/godmode/policies/policy_queue.php:842 msgid "Empty queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:852 +#: ../../enterprise/godmode/policies/policy_queue.php:856 msgid "This operation could take a long time" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:864 +#: ../../enterprise/godmode/policies/policy_queue.php:868 msgid "Apply all queues" msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:877 +#: ../../enterprise/godmode/policies/policy_queue.php:881 msgid "Clear all items" msgstr "" @@ -17273,7 +17442,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:851 #: ../../enterprise/godmode/setup/setup_auth.php:252 #: ../../enterprise/godmode/setup/setup_auth.php:602 -#: ../../enterprise/godmode/setup/setup_auth.php:1412 +#: ../../enterprise/godmode/setup/setup_auth.php:1629 #: ../../extensions/files_repo/files_repo_form.php:54 #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 @@ -17287,13 +17456,13 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:431 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:350 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:372 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:353 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:375 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 #: ../../operation/tree.php:91 -#: ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/agentes/pandora_networkmap.php:720 msgid "Groups" msgstr "" @@ -17312,10 +17481,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:959 #: ../../godmode/agentes/configurar_agente.php:623 #: ../../godmode/agentes/configurar_agente.php:762 -#: ../../godmode/agentes/agent_manager.php:862 -#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/agentes/agent_manager.php:870 +#: ../../godmode/massive/massive_edit_agents.php:983 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:273 #: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "" @@ -17333,7 +17502,7 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:167 #: ../../enterprise/operation/agentes/policy_view.php:258 #: ../../enterprise/operation/agentes/policy_view.php:263 -#: ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/agents.php:407 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 @@ -17352,7 +17521,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:134 -#: ../../mobile/operation/agents.php:407 +#: ../../mobile/operation/agents.php:408 #: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "" @@ -17436,16 +17605,20 @@ msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 #: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/snmpconsole/snmp_browser.php:92 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 #: ../../operation/menu.php:259 msgid "SNMP" msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" @@ -17461,13 +17634,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232 #: ../../enterprise/include/functions_reporting_csv.php:2437 #: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2358 #: ../../include/functions_reports.php:847 -#: ../../include/class/TipsWindow.class.php:455 -#: ../../include/class/TipsWindow.class.php:730 -#: ../../include/class/TipsWindow.class.php:897 -#: ../../include/functions_reporting.php:7509 +#: ../../include/class/TipsWindow.class.php:467 +#: ../../include/class/TipsWindow.class.php:750 +#: ../../include/class/TipsWindow.class.php:917 +#: ../../include/functions_reporting.php:7518 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "" @@ -17475,8 +17648,8 @@ msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 #: ../../enterprise/operation/menu.php:151 -#: ../../include/class/SnmpConsole.class.php:915 -#: ../../include/class/SnmpConsole.class.php:916 +#: ../../include/class/SnmpConsole.class.php:917 +#: ../../include/class/SnmpConsole.class.php:918 msgid "SNMP trap editor" msgstr "" @@ -17744,7 +17917,7 @@ msgid "Failed: create the alerts for this modules, please check." msgstr "" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 #: ../../enterprise/include/ajax/policy.ajax.php:263 #: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 @@ -17755,8 +17928,9 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../include/functions_alerts.php:673 msgid "Regular expression" msgstr "" @@ -17839,8 +18013,9 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:473 #: ../../enterprise/godmode/setup/setup_auth.php:639 -#: ../../enterprise/godmode/setup/setup_auth.php:1281 -#: ../../enterprise/godmode/setup/setup_auth.php:1451 +#: ../../enterprise/godmode/setup/setup_auth.php:1197 +#: ../../enterprise/godmode/setup/setup_auth.php:1498 +#: ../../enterprise/godmode/setup/setup_auth.php:1668 #: ../../enterprise/godmode/setup/setup_acl.php:487 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 #: ../../enterprise/include/functions_tasklist.php:606 @@ -17860,32 +18035,32 @@ msgstr "" #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_edit_agents.php:650 -#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_edit_agents.php:667 +#: ../../godmode/massive/massive_edit_agents.php:1170 #: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:674 -#: ../../godmode/events/event_edit_filter.php:510 -#: ../../godmode/events/event_edit_filter.php:526 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1454 -#: ../../include/functions_visual_map_editor.php:1548 +#: ../../godmode/events/event_edit_filter.php:512 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../include/functions_visual_map_editor.php:492 +#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1606 #: ../../include/ajax/visual_console_builder.ajax.php:1186 #: ../../include/functions_profile.php:390 -#: ../../include/functions_html.php:2327 ../../include/functions_html.php:2328 -#: ../../include/functions_html.php:2329 ../../include/functions_html.php:2330 -#: ../../include/functions_html.php:2331 ../../include/functions_html.php:2333 -#: ../../include/functions_html.php:2334 ../../include/functions_html.php:2335 -#: ../../include/functions_html.php:2336 ../../include/functions_html.php:2337 -#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2374 -#: ../../include/functions_html.php:2396 ../../include/functions_html.php:2418 -#: ../../include/functions_html.php:2440 +#: ../../include/functions_html.php:2342 ../../include/functions_html.php:2343 +#: ../../include/functions_html.php:2344 ../../include/functions_html.php:2345 +#: ../../include/functions_html.php:2346 ../../include/functions_html.php:2348 +#: ../../include/functions_html.php:2349 ../../include/functions_html.php:2350 +#: ../../include/functions_html.php:2351 ../../include/functions_html.php:2352 +#: ../../include/functions_html.php:2367 ../../include/functions_html.php:2389 +#: ../../include/functions_html.php:2411 ../../include/functions_html.php:2433 +#: ../../include/functions_html.php:2455 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 -#: ../../operation/events/events.php:1999 -#: ../../operation/events/events.php:2017 -#: ../../operation/events/events.php:3028 +#: ../../operation/events/events.php:2053 +#: ../../operation/events/events.php:2071 +#: ../../operation/events/events.php:3087 msgid "Any" msgstr "" @@ -17900,7 +18075,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365 #: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_edit_agents.php:1407 #: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" "Unsucessful sending the data, please contact with your administrator or make " @@ -17926,7 +18101,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 #: ../../godmode/massive/massive_delete_modules.php:372 #: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../include/functions_reporting_html.php:1776 +#: ../../include/functions_reporting_html.php:1785 msgid "Agent group" msgstr "" @@ -17945,8 +18120,8 @@ msgid "When select agents" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:489 -#: ../../extensions/agents_modules.php:493 +#: ../../extensions/agents_modules.php:497 +#: ../../extensions/agents_modules.php:501 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -17955,12 +18130,12 @@ msgstr "" #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 #: ../../godmode/reporting/reporting_builder.item_editor.php:1923 -#: ../../include/functions_html.php:5947 +#: ../../include/functions_html.php:5971 msgid "Show common modules" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:490 +#: ../../extensions/agents_modules.php:498 #: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 @@ -17969,7 +18144,7 @@ msgstr "" #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 #: ../../godmode/reporting/reporting_builder.item_editor.php:1924 -#: ../../include/functions_html.php:5948 +#: ../../include/functions_html.php:5972 msgid "Show all modules" msgstr "" @@ -18001,7 +18176,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:315 -#: ../../include/class/SnmpConsole.class.php:1379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Cold start (0)" msgstr "" @@ -18009,7 +18184,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:316 -#: ../../include/class/SnmpConsole.class.php:1383 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Warm start (1)" msgstr "" @@ -18017,7 +18192,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:317 -#: ../../include/class/SnmpConsole.class.php:1387 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link down (2)" msgstr "" @@ -18025,7 +18200,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:318 -#: ../../include/class/SnmpConsole.class.php:1391 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Link up (3)" msgstr "" @@ -18033,7 +18208,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:319 -#: ../../include/class/SnmpConsole.class.php:1395 +#: ../../include/class/SnmpConsole.class.php:1397 msgid "Authentication failure (4)" msgstr "" @@ -18043,14 +18218,15 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 #: ../../extensions/api_checker.php:303 -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 +#: ../../godmode/users/configure_user.php:65 #: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../include/functions_graph.php:3543 +#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553 #: ../../include/class/SnmpConsole.class.php:320 -#: ../../include/class/SnmpConsole.class.php:1372 -#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../include/class/SnmpConsole.class.php:1374 +#: ../../include/class/SnmpConsole.class.php:1401 #: ../../operation/users/user_edit.php:474 #: ../../operation/gis_maps/render_view.php:168 msgid "Other" @@ -18069,20 +18245,20 @@ msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237 msgid "You must select a SNMP alert" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Custom OIDs/Datas." msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310 #: ../../godmode/snmpconsole/snmp_alert.php:863 #: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 @@ -18095,30 +18271,34 @@ msgid "SNMP Alerts to be deleted" msgstr "" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414 msgid "No snmp alert found." msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "At least one parameter must be modified" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 msgid "SNMP Alerts to be edit" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 #: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 #: ../../godmode/snmpconsole/snmp_trap_generator.php:138 #: ../../godmode/snmpconsole/snmp_alert.php:814 #: ../../godmode/snmpconsole/snmp_alert.php:1896 @@ -18126,38 +18306,38 @@ msgstr "" msgid "SNMP Agent" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 #: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314 #: ../../godmode/snmpconsole/snmp_alert.php:1537 #: ../../godmode/alerts/configure_alert_template.php:744 msgid "Min. number of alerts" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316 #: ../../godmode/snmpconsole/snmp_alert.php:1554 #: ../../godmode/alerts/configure_alert_template.php:784 msgid "Max. number of alerts" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331 #: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337 #: ../../godmode/snmpconsole/snmp_alert.php:1651 #: ../../godmode/snmpconsole/snmp_alert.php:1891 #: ../../godmode/reporting/reporting_builder.list_items.php:373 -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -#: ../../godmode/reporting/graph_builder.graph_editor.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:718 +#: ../../godmode/reporting/graph_builder.graph_editor.php:244 #: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:968 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2024 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "Position" msgstr "" @@ -18169,15 +18349,15 @@ msgstr "" msgid "Modules used" msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Success: remove the alerts." msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 msgid "Failed: remove the alerts for this modules, please check." msgstr "" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143 msgid "Modules agents in policy" msgstr "" @@ -18188,23 +18368,25 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:196 +#: ../../godmode/modules/manage_network_components_form_network.php:85 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:811 #: ../../include/class/CredentialStore.class.php:1094 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/CredentialStore.class.php:1378 #: ../../include/class/AgentWizard.class.php:796 msgid "SNMP community" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/agentes/module_manager_editor_network.php:199 #: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_wmi.php:97 -#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/agentes/module_manager_editor_network.php:82 #: ../../godmode/massive/massive_edit_modules.php:836 #: ../../include/class/AgentWizard.class.php:633 #: ../../include/functions_snmp_browser.php:709 @@ -18214,55 +18396,55 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:198 #: ../../godmode/massive/massive_edit_modules.php:854 -#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../godmode/wizards/HostDevices.class.php:1216 #: ../../include/class/CredentialStore.class.php:1106 -#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1391 #: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:378 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../include/functions_snmp_browser.php:839 msgid "Auth user" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/modules/manage_network_components_form_network.php:107 +#: ../../godmode/agentes/module_manager_editor_network.php:391 #: ../../godmode/massive/massive_edit_modules.php:876 -#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../godmode/wizards/HostDevices.class.php:1336 #: ../../include/functions_snmp_browser.php:851 msgid "Auth password" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:390 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:876 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1342 -#: ../../godmode/wizards/HostDevices.class.php:1373 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1369 msgid "The pass length must be eight character minimum." msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/modules/manage_network_components_form_network.php:149 +#: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:878 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/wizards/HostDevices.class.php:1352 #: ../../include/class/CredentialStore.class.php:1196 -#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/CredentialStore.class.php:1498 #: ../../include/class/AgentWizard.class.php:954 #: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" @@ -18270,24 +18452,24 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1357 #: ../../include/class/CredentialStore.class.php:1205 -#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/CredentialStore.class.php:1507 #: ../../include/functions_snmp_browser.php:873 msgid "DES" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/modules/manage_network_components_form_network.php:153 +#: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../godmode/wizards/HostDevices.class.php:1358 #: ../../include/class/CredentialStore.class.php:1204 -#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/class/CredentialStore.class.php:1505 #: ../../include/functions_snmp_browser.php:874 msgid "AES" msgstr "" @@ -18295,11 +18477,11 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:880 -#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../godmode/wizards/HostDevices.class.php:1367 #: ../../include/class/CredentialStore.class.php:1213 -#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/CredentialStore.class.php:1519 #: ../../include/class/AgentWizard.class.php:968 #: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" @@ -18307,47 +18489,47 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/modules/manage_network_components_form_network.php:180 +#: ../../godmode/agentes/module_manager_editor_network.php:437 #: ../../godmode/massive/massive_edit_modules.php:882 -#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1321 #: ../../include/functions_snmp_browser.php:898 msgid "Auth method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/modules/manage_network_components_form_network.php:183 +#: ../../godmode/agentes/module_manager_editor_network.php:440 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1330 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../godmode/wizards/HostDevices.class.php:1326 +#: ../../include/class/Diagnostics.class.php:2207 #: ../../include/class/CredentialStore.class.php:1170 -#: ../../include/class/CredentialStore.class.php:1462 +#: ../../include/class/CredentialStore.class.php:1471 #: ../../include/functions_snmp_browser.php:901 msgid "MD5" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/modules/manage_network_components_form_network.php:184 +#: ../../godmode/agentes/module_manager_editor_network.php:441 #: ../../godmode/massive/massive_edit_modules.php:883 -#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../godmode/wizards/HostDevices.class.php:1327 #: ../../include/class/CredentialStore.class.php:1171 -#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/CredentialStore.class.php:1473 #: ../../include/functions_snmp_browser.php:902 msgid "SHA" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/modules/manage_network_components_form_network.php:162 +#: ../../godmode/agentes/module_manager_editor_network.php:454 #: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../godmode/wizards/HostDevices.class.php:1305 #: ../../include/class/CredentialStore.class.php:1125 -#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/CredentialStore.class.php:1423 #: ../../include/class/AgentWizard.class.php:895 #: ../../include/functions_snmp_browser.php:914 msgid "Security level" @@ -18355,30 +18537,30 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1310 #: ../../include/functions_snmp_browser.php:917 msgid "Not auth and not privacy method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:458 #: ../../godmode/massive/massive_edit_modules.php:888 -#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../godmode/wizards/HostDevices.class.php:1311 #: ../../include/functions_snmp_browser.php:918 msgid "Auth and not privacy method" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/modules/manage_network_components_form_network.php:167 +#: ../../godmode/agentes/module_manager_editor_network.php:459 #: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../godmode/wizards/HostDevices.class.php:1312 #: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "" @@ -18386,15 +18568,15 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:984 #: ../../godmode/massive/massive_edit_modules.php:907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3928 -#: ../../include/ajax/heatmap.ajax.php:199 -#: ../../include/functions_graph.php:5035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3937 +#: ../../include/ajax/heatmap.ajax.php:228 +#: ../../include/functions_graph.php:5045 #: ../../include/functions_treeview.php:115 #: ../../include/lib/Dashboard/Widgets/heatmap.php:334 #: ../../operation/heatmap.php:103 -#: ../../operation/agentes/status_monitor.php:573 +#: ../../operation/agentes/status_monitor.php:572 msgid "Not assigned" msgstr "" @@ -18404,15 +18586,15 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:128 #: ../../godmode/massive/massive_edit_modules.php:921 -#: ../../include/functions_ui.php:7468 +#: ../../include/functions_ui.php:7545 #: ../../include/class/CredentialStore.class.php:973 -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1351 #: ../../include/class/AgentWizard.class.php:677 msgid "Username" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/agentes/module_manager_editor_common.php:1365 #: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "" @@ -18443,16 +18625,16 @@ msgid "Linked" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../godmode/agentes/module_manager.php:857 #: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 +#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098 msgid "Unlinked" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:326 -#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/agentes/module_manager_editor_common.php:1395 #: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "" @@ -18463,7 +18645,7 @@ msgid "The module still store data but the alerts and events will be stop" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 #: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "" @@ -18474,15 +18656,15 @@ msgid "Seconds that agent will wait for the execution of the module." msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/modules/manage_network_components_form_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:323 #: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/modules/manage_network_components_form_network.php:234 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "" @@ -18514,13 +18696,13 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 #: ../../godmode/massive/massive_edit_modules.php:1178 -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Plugin" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/modules/manage_network_components_form_network.php:241 +#: ../../godmode/agentes/module_manager_editor_network.php:479 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1196 #: ../../godmode/alerts/configure_alert_command.php:266 @@ -18529,7 +18711,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_action.php:271 #: ../../godmode/events/event_responses.editor.php:230 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994 +#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:382 msgid "Command" @@ -18537,33 +18719,33 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1429 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/agentes/module_manager_editor_network.php:506 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Credential identifier" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../godmode/modules/manage_network_components_form_network.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:539 #: ../../godmode/massive/massive_edit_modules.php:1228 msgid "Inherited" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/modules/manage_network_components_form_network.php:277 #: ../../godmode/massive/massive_edit_modules.php:1229 msgid "Linux" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/modules/manage_network_components_form_network.php:278 #: ../../godmode/massive/massive_edit_modules.php:1230 msgid "Windows" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:281 #: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "" @@ -18586,11 +18768,11 @@ msgstr "" msgid "Security check is fail." msgstr "" -#: ../../enterprise/godmode/admin_access_logs.php:213 +#: ../../enterprise/godmode/admin_access_logs.php:216 msgid "Extended info:" msgstr "" -#: ../../enterprise/godmode/admin_access_logs.php:221 +#: ../../enterprise/godmode/admin_access_logs.php:224 msgid "Changes:" msgstr "" @@ -18601,7 +18783,7 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:414 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Condition" msgstr "" @@ -18640,11 +18822,11 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:262 #: ../../godmode/snmpconsole/snmp_alert.php:1912 #: ../../godmode/alerts/alert_view.php:105 -#: ../../include/functions_reporting_html.php:5494 +#: ../../include/functions_reporting_html.php:5522 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:442 -#: ../../include/class/AgentsAlerts.class.php:912 +#: ../../include/functions_treeview.php:446 +#: ../../include/class/AgentsAlerts.class.php:913 msgid "Last fired" msgstr "" @@ -18653,9 +18835,9 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:349 #: ../../godmode/alerts/alert_list.list.php:648 #: ../../godmode/alerts/alert_view.php:114 -#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1420 -#: ../../include/class/AgentsAlerts.class.php:959 -#: ../../include/functions_reporting.php:13152 +#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1463 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:13225 msgid "Alert disabled" msgstr "" @@ -18692,25 +18874,25 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory.php:92 #: ../../godmode/agentes/planned_downtime.editor.php:58 #: ../../godmode/alerts/alert_list.php:517 -#: ../../include/functions_html.php:1933 ../../include/functions_html.php:1934 -#: ../../include/functions_html.php:2044 ../../include/functions_html.php:2045 -#: ../../include/functions_html.php:2227 ../../include/functions_html.php:2228 -#: ../../include/functions_html.php:6713 ../../include/functions_html.php:6714 +#: ../../include/functions_html.php:1944 ../../include/functions_html.php:1945 +#: ../../include/functions_html.php:2055 ../../include/functions_html.php:2056 +#: ../../include/functions_html.php:2235 ../../include/functions_html.php:2236 +#: ../../include/functions_html.php:6741 ../../include/functions_html.php:6742 #: ../../include/class/SnmpConsole.class.php:196 #: ../../operation/snmpconsole/snmp_statistics.php:67 -#: ../../operation/events/events.php:1592 +#: ../../operation/events/events.php:1646 msgid "List" msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory.php:111 -#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../godmode/reporting/visual_console_builder.php:843 #: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" msgstr "" #: ../../enterprise/godmode/services/services.massive.meta.php:54 #: ../../enterprise/godmode/services/services.massive.elements.php:106 -#: ../../godmode/massive/massive_edit_agents.php:985 +#: ../../godmode/massive/massive_edit_agents.php:1002 msgid "Not available" msgstr "" @@ -18813,7 +18995,7 @@ msgstr "" #: ../../enterprise/godmode/services/services.service.php:495 #: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:816 +#: ../../godmode/reporting/reporting_builder.list_items.php:817 msgid "Delete items" msgstr "" @@ -18865,7 +19047,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_list.php:779 #: ../../godmode/wizards/HostDevices.class.php:808 #: ../../godmode/wizards/DiscoveryTaskList.class.php:717 -#: ../../include/class/CustomNetScan.class.php:535 +#: ../../include/class/CustomNetScan.class.php:537 msgid "Manual" msgstr "" @@ -18956,61 +19138,6 @@ msgstr "" msgid "S.L.A. critical service alert" msgstr "" -#: ../../enterprise/godmode/services/services.service.php:1025 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608 -#: ../../enterprise/include/functions_reporting_csv.php:1589 -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1953 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1704 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1756 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:1000 -#: ../../enterprise/include/class/LogSource.class.php:823 -#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142 -#: ../../enterprise/include/class/ManageBackups.class.php:298 -#: ../../enterprise/include/class/ManageBackups.class.php:454 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:182 -#: ../../enterprise/include/class/NewDatabaseHA.class.php:225 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:2949 -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../enterprise/include/functions_reporting.php:6176 -#: ../../enterprise/include/functions_reporting.php:6214 -#: ../../enterprise/include/functions_services.php:2091 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:391 -#: ../../enterprise/operation/agentes/wux_console_view.php:407 -#: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:415 -#: ../../godmode/setup/setup_general.php:1018 -#: ../../godmode/setup/setup_general.php:1036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_reporting_html.php:862 -#: ../../include/functions_reporting_html.php:3569 -#: ../../include/functions_reporting_html.php:4866 -#: ../../include/functions_db.php:1974 -#: ../../include/class/ConfigPEN.class.php:674 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/SatelliteAgent.class.php:1105 -#: ../../include/class/HelpFeedBack.class.php:370 -#: ../../include/class/CredentialStore.class.php:1646 -#: ../../include/class/ModuleTemplates.class.php:1359 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6233 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:745 -#: ../../operation/snmpconsole/snmp_browser.php:639 -msgid "OK" -msgstr "" - #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " @@ -19033,8 +19160,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4476 #: ../../include/functions_maps.php:50 #: ../../include/functions_reporting.php:1075 -#: ../../include/functions_reporting.php:9702 -#: ../../operation/agentes/pandora_networkmap.php:789 +#: ../../include/functions_reporting.php:9711 +#: ../../operation/agentes/pandora_networkmap.php:790 msgid "Dynamic" msgstr "" @@ -19218,7 +19345,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files " -"(tagente_datos, tagente_datos_string, tevento). Monthly partitions." +"(tagente_datos, tagente_datos_string). Monthly partitions." msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:420 @@ -19401,12 +19528,12 @@ msgid "Yes without changing status" msgstr "" #: ../../enterprise/godmode/setup/setup.php:81 -#: ../../include/functions_config.php:430 +#: ../../include/functions_config.php:438 msgid "Forward SNMP traps to agent (if exist)" msgstr "" #: ../../enterprise/godmode/setup/setup.php:92 -#: ../../include/functions_config.php:434 +#: ../../include/functions_config.php:442 msgid "Use Enterprise ACL System" msgstr "" @@ -19440,7 +19567,7 @@ msgid "Metaconsole DB password" msgstr "" #: ../../enterprise/godmode/setup/setup.php:210 -#: ../../include/functions_config.php:470 +#: ../../include/functions_config.php:478 msgid "Activate Log Collector" msgstr "" @@ -19563,7 +19690,7 @@ msgid "Port of ElasticSearch server" msgstr "" #: ../../enterprise/godmode/setup/setup_log_collector.php:77 -#: ../../include/functions_config.php:1629 +#: ../../include/functions_config.php:1641 msgid "Days to purge old information" msgstr "" @@ -19595,21 +19722,21 @@ msgstr "" #: ../../enterprise/include/functions_tasklist.php:283 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 -#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307 +#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613 #: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:194 #: ../../enterprise/godmode/setup/setup_auth.php:549 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:1574 msgid "Profiles selected" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:195 #: ../../enterprise/godmode/setup/setup_auth.php:550 -#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../enterprise/godmode/setup/setup_auth.php:1575 msgid "Groups selected" msgstr "" @@ -19628,15 +19755,15 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:256 #: ../../enterprise/godmode/setup/setup_auth.php:553 #: ../../enterprise/godmode/setup/setup_auth.php:605 -#: ../../enterprise/godmode/setup/setup_auth.php:1361 -#: ../../enterprise/godmode/setup/setup_auth.php:1415 +#: ../../enterprise/godmode/setup/setup_auth.php:1578 +#: ../../enterprise/godmode/setup/setup_auth.php:1632 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:251 #: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:1411 +#: ../../enterprise/godmode/setup/setup_auth.php:1628 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 #: ../../godmode/groups/group_list.php:377 @@ -19644,19 +19771,20 @@ msgstr "" #: ../../godmode/users/profile_list.php:332 #: ../../godmode/users/configure_profile.php:86 #: ../../godmode/users/user_list.php:297 -#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165 +#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165 msgid "Profiles" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:264 #: ../../enterprise/godmode/setup/setup_auth.php:612 -#: ../../enterprise/godmode/setup/setup_auth.php:1422 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1639 msgid "Select profile" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/godmode/setup/setup_auth.php:1465 +#: ../../enterprise/godmode/setup/setup_auth.php:1682 msgid "Add new permissions" msgstr "" @@ -19669,89 +19797,95 @@ msgid "Change timezone visual" msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:478 -#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/godmode/setup/setup_auth.php:1503 msgid "New users will be able to log in to the nodes." msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:552 #: ../../enterprise/godmode/setup/setup_auth.php:604 -#: ../../enterprise/godmode/setup/setup_auth.php:1360 -#: ../../enterprise/godmode/setup/setup_auth.php:1414 +#: ../../enterprise/godmode/setup/setup_auth.php:1577 +#: ../../enterprise/godmode/setup/setup_auth.php:1631 msgid "AD Groups" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:831 -#: ../../enterprise/godmode/setup/setup_auth.php:947 +#: ../../enterprise/godmode/setup/setup_auth.php:661 +msgid "Recursive group search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:837 +#: ../../enterprise/godmode/setup/setup_auth.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:1067 msgid "You must select a profile from the list of profiles." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:836 -#: ../../enterprise/godmode/setup/setup_auth.php:952 +#: ../../enterprise/godmode/setup/setup_auth.php:842 +#: ../../enterprise/godmode/setup/setup_auth.php:961 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 msgid "You must select a group from the list of groups." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -#: ../../include/functions_config.php:719 +#: ../../enterprise/godmode/setup/setup_auth.php:1329 +#: ../../include/functions_config.php:731 msgid "MySQL host" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1392 msgid "SimpleSAML path" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1176 +#: ../../enterprise/godmode/setup/setup_auth.php:1393 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1182 +#: ../../enterprise/godmode/setup/setup_auth.php:1399 msgid "SAML source" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1183 +#: ../../enterprise/godmode/setup/setup_auth.php:1400 msgid "Authsource name, e.g. 'example-userpass'" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1190 +#: ../../enterprise/godmode/setup/setup_auth.php:1407 msgid "SAML user id attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1195 +#: ../../enterprise/godmode/setup/setup_auth.php:1412 msgid "SAML mail attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1196 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1203 +#: ../../enterprise/godmode/setup/setup_auth.php:1420 msgid "SAML group name attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1204 +#: ../../enterprise/godmode/setup/setup_auth.php:1421 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1211 +#: ../../enterprise/godmode/setup/setup_auth.php:1428 msgid "Simple attribute / Multivalue attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1216 +#: ../../enterprise/godmode/setup/setup_auth.php:1433 msgid "SAML profiles and tag attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1221 +#: ../../enterprise/godmode/setup/setup_auth.php:1438 msgid "Profile attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1226 +#: ../../enterprise/godmode/setup/setup_auth.php:1443 msgid "Tag attribute" msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:1231 +#: ../../enterprise/godmode/setup/setup_auth.php:1448 msgid "SAML profile and tags prefix" msgstr "" @@ -19829,7 +19963,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:203 -#: ../../operation/users/user_edit.php:998 +#: ../../operation/users/user_edit.php:995 msgid "Profile name" msgstr "" @@ -19950,10 +20084,12 @@ msgstr "" #: ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 #: ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:129 -#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../mobile/operation/server_status.php:185 +#: ../../mobile/operation/server_status.php:186 +#: ../../include/ajax/heatmap.ajax.php:158 +#: ../../include/ajax/heatmap.ajax.php:438 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 -#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353 msgid "Tag" msgstr "" @@ -19973,8 +20109,8 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:313 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 -#: ../../include/functions_snmp_browser.php:1653 -#: ../../include/functions_snmp_browser.php:1660 +#: ../../include/functions_snmp_browser.php:1662 +#: ../../include/functions_snmp_browser.php:1669 msgid "Select all" msgstr "" @@ -20144,15 +20280,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 #: ../../enterprise/godmode/reporting/visual_console_template.php:136 #: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/configure_user.php:59 #: ../../godmode/users/user_management.php:38 #: ../../godmode/massive/massive_edit_users.php:274 -#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/visual_console_builder.php:877 #: ../../godmode/reporting/map_builder.php:133 #: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../include/auth/mysql.php:807 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 #: ../../operation/users/user_edit.php:469 -#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299 -#: ../../operation/menu.php:306 +#: ../../operation/visual_console/view.php:253 +#: ../../operation/visual_console/legacy_view.php:219 +#: ../../operation/menu.php:299 ../../operation/menu.php:306 msgid "Visual console" msgstr "" @@ -20249,7 +20388,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:119 +#: ../../godmode/netflow/nf_edit_form.php:146 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "" @@ -20268,8 +20407,9 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:173 #: ../../godmode/events/event_responses.editor.php:186 #: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:698 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930 #: ../../include/functions_reports.php:1267 msgid "Width" msgstr "" @@ -20278,18 +20418,18 @@ msgstr "" #: ../../godmode/setup/gis_step_2.php:399 #: ../../godmode/reporting/visual_console_builder.wizard.php:175 #: ../../godmode/events/event_responses.editor.php:198 -#: ../../include/functions_visual_map_editor.php:672 +#: ../../include/functions_visual_map_editor.php:712 #: ../../include/functions_reports.php:1283 #: ../../include/functions_reports.php:1383 msgid "Height" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../enterprise/operation/log/log_viewer.php:670 #: ../../godmode/setup/performance.php:627 #: ../../godmode/reporting/create_container.php:418 #: ../../include/functions.php:2755 ../../include/functions.php:3423 -#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146 +#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "" @@ -20304,19 +20444,19 @@ msgid "3 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:238 -#: ../../include/ajax/module.php:222 +#: ../../include/ajax/module.php:245 msgid "6 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246 msgid "12 hours" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:240 -#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../enterprise/operation/log/log_viewer.php:674 #: ../../godmode/reporting/create_container.php:422 -#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:247 #: ../../include/ajax/graph.ajax.php:150 #: ../../include/class/AuditLog.class.php:211 msgid "1 day" @@ -20337,9 +20477,9 @@ msgid "Last week" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:244 -#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../enterprise/operation/log/log_viewer.php:678 #: ../../godmode/reporting/create_container.php:426 -#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:249 #: ../../include/ajax/graph.ajax.php:154 #: ../../include/class/AuditLog.class.php:213 msgid "15 days" @@ -20355,12 +20495,12 @@ msgid "2 months" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 +#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:253 msgid "1 year" msgstr "" @@ -20390,7 +20530,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:123 #: ../../godmode/reporting/visual_console_builder.wizard.php:246 #: ../../godmode/reporting/graph_builder.main.php:189 -#: ../../include/functions_visual_map_editor.php:786 +#: ../../include/functions_visual_map_editor.php:826 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 @@ -20423,7 +20563,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:801 -#: ../../include/functions_reporting.php:3560 +#: ../../include/functions_reporting.php:3569 msgid "Exception" msgstr "" @@ -20472,7 +20612,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074 #: ../../godmode/reporting/reporting_builder.item_editor.php:1419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7477 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " @@ -20488,13 +20628,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:5009 +#: ../../include/functions_reporting_html.php:5037 msgid "Sum" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 -#: ../../include/functions_reporting.php:10584 +#: ../../include/functions_reporting.php:10593 msgid "Rate" msgstr "" @@ -20504,25 +20644,25 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:764 #: ../../godmode/snmpconsole/snmp_alert.php:2159 #: ../../include/class/ModuleTemplates.class.php:943 -#: ../../operation/events/events.php:2548 +#: ../../operation/events/events.php:2602 msgid "Delete selected" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2500 msgid "Group by agent" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3205 msgid "Show in the same row" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:323 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3207 msgid "Show one module per row with all its operations" msgstr "" @@ -20530,10 +20670,10 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 -#: ../../enterprise/operation/log/log_viewer.php:570 +#: ../../enterprise/operation/log/log_viewer.php:568 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3228 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "" @@ -20543,9 +20683,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 -#: ../../enterprise/operation/log/log_viewer.php:566 +#: ../../enterprise/operation/log/log_viewer.php:564 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2517 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "" @@ -20555,9 +20695,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 -#: ../../enterprise/operation/log/log_viewer.php:565 +#: ../../enterprise/operation/log/log_viewer.php:563 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2524 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "" @@ -20565,30 +20705,30 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:344 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2531 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:352 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:364 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1646 +#: ../../operation/agentes/ver_agente.php:1642 msgid "Display" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2727 -#: ../../include/functions_reporting.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../include/functions_reporting.php:3591 msgid "Everything" msgstr "" @@ -20604,22 +20744,22 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:427 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2735 -#: ../../include/functions_reporting_html.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:3610 msgid "Not OK" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:435 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 msgid "Show graph" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2866 msgid "Show resume" msgstr "" @@ -20634,7 +20774,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 msgid "Show item in landscape format (only PDF)" msgstr "" @@ -20642,7 +20782,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3650 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Page break at the end of the item (only PDF)" msgstr "" @@ -20655,13 +20795,13 @@ msgid "Page orientation" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 -#: ../../include/functions_visual_map_editor.php:841 +#: ../../include/functions_visual_map_editor.php:889 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 -#: ../../include/functions_visual_map_editor.php:842 +#: ../../include/functions_visual_map_editor.php:890 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 @@ -20695,20 +20835,20 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2846 msgid "Show address instead module name" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 msgid "Show the main address of agent." msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294 #: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2394 #: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "" @@ -20716,14 +20856,14 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3275 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3284 msgid "Failover mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3276 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20732,72 +20872,72 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3304 msgid "Failover type" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 msgid "Failover normal" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Failover simple" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 msgid "Graph render" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2610 msgid "Avg, max & min" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 msgid "Max only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 msgid "Min only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2613 msgid "Avg only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../mobile/operation/module_graph.php:436 -#: ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2697 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:377 msgid "Time compare (Overlapped)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2651 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 msgid "Full resolution graph (TIP)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2652 -#: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2661 +#: ../../operation/agentes/stat_win.php:405 +#: ../../operation/agentes/interface_traffic_graph_win.php:258 msgid "" "TIP mode charts do not support average - maximum - minimum series, you can " "only enable TIP or average, maximum or minimum series" @@ -20805,15 +20945,15 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 msgid "Show threshold" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2703 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 #: ../../godmode/reporting/graph_builder.main.php:250 -#: ../../include/functions.php:4189 ../../include/functions.php:4197 +#: ../../include/functions.php:4215 ../../include/functions.php:4223 msgid "Percentil" msgstr "" @@ -20826,19 +20966,19 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2975 msgid "Show Summary group" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 msgid "Event Status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3122 #: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "" @@ -20877,37 +21017,37 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2412 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 msgid "Serialized header" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 msgid "The separator character is |" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 msgid "Field separator" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2450 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2459 msgid "Separator for different fields in the serialized text chain" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2479 msgid "Line separator" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2480 msgid "" "Separator in different lines (composed by fields) of the serialized text " "chain" @@ -20915,13 +21055,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3487 msgid "Uncompress module" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3488 msgid "Use uncompressed module data." msgstr "" @@ -21001,7 +21141,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "SLA items sorted by fulfillment value" msgstr "" @@ -21013,11 +21153,11 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3337 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1439 -#: ../../include/functions_reporting_html.php:4845 -#: ../../include/functions_reporting_html.php:5117 -#: ../../include/functions_reporting_html.php:5273 +#: ../../include/functions_reporting_html.php:4873 +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5301 #: ../../include/functions_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21047,17 +21187,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:215 -#: ../../enterprise/include/functions_reporting.php:8044 -#: ../../enterprise/include/functions_reporting.php:8110 -#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../enterprise/include/functions_reporting.php:8053 +#: ../../enterprise/include/functions_reporting.php:8119 +#: ../../godmode/reporting/reporting_builder.php:3659 #: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:159 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:202 -#: ../../godmode/reporting/reporting_builder.php:3638 -#: ../../include/functions_menu.php:587 +#: ../../godmode/reporting/reporting_builder.php:3655 +#: ../../include/functions_menu.php:591 #: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "" @@ -21071,9 +21211,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 #: ../../godmode/reporting/reporting_builder.php:561 -#: ../../godmode/reporting/reporting_builder.php:3601 -#: ../../godmode/reporting/reporting_builder.php:3699 -#: ../../godmode/reporting/reporting_builder.php:3727 +#: ../../godmode/reporting/reporting_builder.php:3618 +#: ../../godmode/reporting/reporting_builder.php:3716 +#: ../../godmode/reporting/reporting_builder.php:3744 #: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "" @@ -21150,14 +21290,14 @@ msgid "Set start and end date" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../include/ajax/module.php:270 -#: ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:293 +#: ../../operation/agentes/datos_agente.php:200 msgid "Timestamp from:" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 -#: ../../include/ajax/module.php:290 -#: ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:313 +#: ../../operation/agentes/datos_agente.php:206 msgid "Timestamp to:" msgstr "" @@ -21200,9 +21340,9 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../godmode/reporting/graph_builder.graph_editor.php:215 -#: ../../godmode/reporting/graph_builder.graph_editor.php:389 -#: ../../include/functions.php:4049 +#: ../../godmode/reporting/graph_builder.graph_editor.php:314 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../include/functions.php:4075 msgid "Weight" msgstr "" @@ -21214,7 +21354,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464 -#: ../../enterprise/operation/log/log_viewer.php:540 +#: ../../enterprise/operation/log/log_viewer.php:538 msgid "Exact match" msgstr "" @@ -21307,18 +21447,18 @@ msgstr "" #: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7540 +#: ../../include/functions_reporting.php:7549 msgid "SQL" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3766 msgid "Successfull action" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:285 -#: ../../godmode/servers/modificar_server.php:296 +#: ../../godmode/servers/modificar_server.php:307 +#: ../../godmode/servers/modificar_server.php:318 msgid "Unsuccessfull action" msgstr "" @@ -21353,13 +21493,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:204 +#: ../../godmode/reporting/reporting_builder.item_editor.php:205 #: ../../godmode/reporting/reporting_builder.item_editor.php:1264 msgid "Local metaconsole" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -21369,7 +21509,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 msgid "" "Case insensitive regular expression or string for module name. For example: " "if you use this field with \"Module exact match\" enabled then this field " @@ -21410,31 +21550,31 @@ msgstr "" #: ../../godmode/reporting/create_container.php:571 #: ../../godmode/reporting/create_container.php:600 #: ../../godmode/reporting/create_container.php:741 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2236 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2245 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.elements.php:618 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map_editor.php:394 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 -#: ../../include/functions_reporting.php:10655 +#: ../../include/functions_reporting.php:10664 msgid "Custom graph" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2409 msgid "Max items" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2374 msgid "Custom SQL template" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21446,157 +21586,157 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 #: ../../godmode/events/event_responses.editor.php:229 #: ../../godmode/events/event_responses.editor.php:255 -#: ../../include/functions_reporting_html.php:1616 +#: ../../include/functions_reporting_html.php:1625 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2452 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3615 msgid "Group by" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 -#: ../../include/functions_reporting_html.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2590 +#: ../../include/functions_reporting_html.php:5034 #: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2770 msgid "Select fields to show" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 -#: ../../include/functions_reporting_html.php:4145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2778 +#: ../../include/functions_reporting_html.php:4173 msgid "Total time" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 -#: ../../include/functions_reporting_html.php:4151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2786 +#: ../../include/functions_reporting_html.php:4179 msgid "Time failed" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 msgid "Time in OK status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 #: ../../enterprise/include/functions_reporting.php:4990 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 -#: ../../include/functions_reporting_html.php:4163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 +#: ../../include/functions_reporting_html.php:4191 msgid "Time in warning status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2810 msgid "Time in unknown status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2822 msgid "Time of not initialized module" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2834 msgid "Time of downtime" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2886 msgid "

Select fields to show

" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 -#: ../../include/functions_reporting_html.php:4239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2894 +#: ../../include/functions_reporting_html.php:4267 msgid "Total checks" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 -#: ../../include/functions_reporting_html.php:4245 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2902 +#: ../../include/functions_reporting_html.php:4273 msgid "Checks failed" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2910 msgid "Checks in OK status" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 msgid "Unknown checks" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2946 msgid "

Select fields to show

" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 -#: ../../include/functions_reporting_html.php:4560 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2954 +#: ../../include/functions_reporting_html.php:4588 msgid "Agent max value" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2962 msgid "Agent min values" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3598 msgid "Show Summary" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 msgid "Height (dynamic graphs)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 msgid "Query History Database" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 msgid "Priority mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3256 msgid "Priority ok mode" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 msgid "Priority unknown mode" msgstr "" @@ -21627,39 +21767,39 @@ msgid "" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3376 msgid "Calculate for custom intervals" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 msgid "Use prefix notation" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Time lapse intervals" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3391 msgid "" "Lapses of time in which the period is divided to make more precise " "calculations" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Table only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3443 msgid "Graph only" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3454 msgid "Graph and table" msgstr "" @@ -21680,28 +21820,28 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4034 msgid "Create item" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../include/functions_visual_map_editor.php:1419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4042 +#: ../../include/functions_visual_map_editor.php:1477 msgid "Update item" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4132 msgid "SLA Min. (value)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4137 msgid "SLA Max. (value)" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4142 msgid "SLA Limit (%)" msgstr "" @@ -21732,13 +21872,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4005 #: ../../godmode/reporting/create_container.php:484 #: ../../godmode/reporting/reporting_builder.item_editor.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4357 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4394 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4563 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4870 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4924 -#: ../../include/functions_ui.php:6311 ../../include/functions_html.php:5807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4366 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4572 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4933 +#: ../../include/functions_ui.php:6386 ../../include/functions_html.php:5831 msgid "Select an Agent first" msgstr "" @@ -21752,17 +21892,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 #: ../../godmode/modules/module_list.php:98 -#: ../../godmode/groups/configure_group.php:145 -#: ../../godmode/groups/group_list.php:878 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/groups/group_list.php:879 #: ../../godmode/setup/os.builder.php:77 ../../godmode/setup/os.list.php:65 #: ../../godmode/reporting/visual_console_builder.elements.php:321 #: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4225 -#: ../../include/rest-api/models/VisualConsole/Item.php:2148 +#: ../../include/functions_visual_map_editor.php:1451 +#: ../../include/functions_visual_map.php:4234 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 #: ../../include/lib/Dashboard/Widgets/module_icon.php:428 #: ../../include/lib/Dashboard/Widgets/module_status.php:419 -#: ../../operation/visual_console/view.php:361 +#: ../../operation/visual_console/view.php:363 msgid "Icon" msgstr "" @@ -21829,7 +21969,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 #: ../../godmode/reporting/reporting_builder.list_items.php:447 -#: ../../include/functions_graph.php:1514 +#: ../../include/functions_graph.php:1518 msgid "No items." msgstr "" @@ -21893,14 +22033,14 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:366 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:357 -#: ../../godmode/modules/manage_network_components_form.php:393 -#: ../../godmode/groups/configure_group.php:286 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/groups/configure_group.php:305 #: ../../godmode/reporting/graph_builder.main.php:312 #: ../../godmode/wizards/HostDevices.class.php:651 #: ../../godmode/wizards/HostDevices.class.php:754 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:184 -#: ../../include/functions_html.php:6615 +#: ../../include/functions_html.php:6643 #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 @@ -21926,10 +22066,10 @@ msgstr "" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:576 #: ../../enterprise/include/ajax/cron.ajax.php:183 #: ../../godmode/events/event_responses.editor.php:213 -#: ../../include/ajax/events.php:2168 ../../include/ajax/events.php:2684 +#: ../../include/ajax/events.php:2169 ../../include/ajax/events.php:2685 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2627 +#: ../../operation/events/events.php:2681 msgid "Parameters" msgstr "" @@ -22047,7 +22187,7 @@ msgstr "" #: ../../enterprise/godmode/servers/new_HA_cluster.php:140 #: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:197 -#: ../../godmode/agentes/module_manager_editor_network.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:540 msgid "SSH" msgstr "" @@ -22132,7 +22272,7 @@ msgstr "" #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:264 +#: ../../operation/tree.php:265 msgid "Agent status" msgstr "" @@ -22265,21 +22405,21 @@ msgid "Default value: " msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 -#: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 +#: ../../include/functions_servers.php:564 +#: ../../include/functions_servers.php:1244 ../../include/functions_ui.php:7341 msgid "Data server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 -#: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/functions_servers.php:577 +#: ../../include/functions_servers.php:1247 ../../include/functions_ui.php:7346 #: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 -#: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1269 +#: ../../include/functions_servers.php:863 +#: ../../include/functions_servers.php:1292 msgid "Alert server" msgstr "" @@ -22297,59 +22437,59 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:463 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468 #: ../../enterprise/tools/ipam/ipam_editor.php:200 -#: ../../godmode/wizards/HostDevices.class.php:849 -#: ../../include/functions_servers.php:595 -#: ../../include/functions_servers.php:1257 +#: ../../godmode/wizards/HostDevices.class.php:845 +#: ../../include/functions_servers.php:603 +#: ../../include/functions_servers.php:1280 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:380 -#: ../../include/functions_servers.php:621 ../../include/functions_ui.php:7286 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:843 +#: ../../include/functions_servers.php:629 ../../include/functions_ui.php:7356 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "Prediction server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -#: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/functions_servers.php:616 +#: ../../include/functions_servers.php:1259 ../../include/functions_ui.php:7351 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 -#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 +#: ../../include/functions_menu.php:613 ../../operation/menu.php:243 msgid "SNMP console" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 -#: ../../include/functions_servers.php:1227 +#: ../../include/functions_servers.php:1250 msgid "SNMP server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:681 +#: ../../include/functions_servers.php:1268 msgid "Web server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 -#: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1251 +#: ../../include/functions_servers.php:668 +#: ../../include/functions_servers.php:1274 msgid "Inventory server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 #: ../../enterprise/godmode/servers/manage_export_form.php:111 -#: ../../include/functions_servers.php:647 -#: ../../include/functions_servers.php:1248 +#: ../../include/functions_servers.php:655 +#: ../../include/functions_servers.php:1271 msgid "Export server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1254 +#: ../../include/functions_servers.php:694 +#: ../../include/functions_servers.php:1277 msgid "Event server" msgstr "" @@ -22358,19 +22498,19 @@ msgid "ICMP server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 -#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 +#: ../../include/functions_servers.php:1286 ../../include/functions_ui.php:7371 msgid "WUX server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:824 +#: ../../include/functions_servers.php:1295 msgid "NCM server" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/functions_servers.php:642 +#: ../../include/functions_servers.php:1265 ../../include/functions_ui.php:7361 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "" @@ -23235,7 +23375,7 @@ msgid "Delete remote conf server files" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 -#: ../../godmode/agentes/agent_manager.php:853 +#: ../../godmode/agentes/agent_manager.php:861 msgid "Delete remote configuration file" msgstr "" @@ -23292,8 +23432,8 @@ msgstr "" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 #: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 -#: ../../include/class/Diagnostics.class.php:1207 +#: ../../include/functions_ui.php:987 +#: ../../include/class/Diagnostics.class.php:1211 msgid "Satellite" msgstr "" @@ -23306,16 +23446,16 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../enterprise/include/functions_reporting.php:8208 #: ../../enterprise/operation/reporting/custom_reporting.php:153 msgid "Send to emails (separated by comma)" msgstr "" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/include/functions_reporting.php:8216 #: ../../enterprise/operation/reporting/custom_reporting.php:161 -#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/news.php:353 #: ../../operation/messages/message_list.php:195 #: ../../operation/messages/message_edit.php:376 msgid "Subject" @@ -23323,7 +23463,7 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/include/functions_reporting.php:8234 #: ../../enterprise/operation/reporting/custom_reporting.php:179 #: ../../operation/messages/message_edit.php:389 msgid "Message" @@ -23419,8 +23559,8 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:799 #: ../../enterprise/include/functions_cron.php:832 -#: ../../enterprise/include/functions_reporting.php:8219 -#: ../../enterprise/include/functions_reporting.php:8233 +#: ../../enterprise/include/functions_reporting.php:8228 +#: ../../enterprise/include/functions_reporting.php:8242 #: ../../enterprise/operation/reporting/custom_reporting.php:173 #: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" @@ -23435,7 +23575,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" #: ../../enterprise/include/functions_cron.php:1801 -#: ../../include/functions_reporting.php:15834 +#: ../../include/functions_reporting.php:15911 msgid "Greetings" msgstr "" @@ -23446,22 +23586,22 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15840 +#: ../../include/functions_reporting.php:15917 msgid "Generated at" msgstr "" #: ../../enterprise/include/functions_cron.php:1807 -#: ../../include/functions_reporting.php:15842 +#: ../../include/functions_reporting.php:15919 msgid "Thanks for your time." msgstr "" #: ../../enterprise/include/functions_cron.php:1809 -#: ../../include/functions_reporting.php:15844 +#: ../../include/functions_reporting.php:15921 msgid "Best regards, Pandora FMS" msgstr "" #: ../../enterprise/include/functions_cron.php:1811 -#: ../../include/functions_reporting.php:15846 +#: ../../include/functions_reporting.php:15923 msgid "" "This is an automatically generated email from Pandora FMS, please do not " "reply." @@ -23545,8 +23685,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting.php:8142 -#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/include/functions_reporting.php:8151 +#: ../../enterprise/include/functions_reporting.php:8188 #: ../../enterprise/operation/reporting/custom_reporting.php:138 #: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 #: ../../include/functions_cron.php:829 @@ -23569,7 +23709,7 @@ msgstr "" #: ../../enterprise/include/functions_tasklist.php:464 #: ../../enterprise/include/class/ManageBackups.class.php:169 #: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 -#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/Diagnostics.class.php:2207 msgid "Path" msgstr "" @@ -23585,9 +23725,9 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:505 #: ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1967 -#: ../../include/functions_cron.php:907 -#: ../../include/functions_treeview.php:663 ../../include/functions_ui.php:606 -#: ../../operation/agentes/estado_generalagente.php:431 +#: ../../include/functions_cron.php:907 ../../include/ajax/heatmap.ajax.php:479 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:606 +#: ../../operation/agentes/estado_generalagente.php:402 #: ../../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" @@ -23617,17 +23757,17 @@ msgid "avg" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4606 msgid "max" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4607 msgid "min" msgstr "" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 msgid "sum" msgstr "" @@ -23776,11 +23916,11 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:127 -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:913 #: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../include/functions_ui.php:973 +#: ../../include/functions_ui.php:1002 #: ../../operation/network/network_usage_map.php:52 -#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/nf_live_view.php:148 #: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "" @@ -23831,9 +23971,9 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 #: ../../godmode/agentes/configure_field.php:79 -#: ../../include/functions_treeview.php:902 +#: ../../include/functions_treeview.php:906 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:623 +#: ../../operation/agentes/estado_generalagente.php:592 msgid "Custom field" msgstr "" @@ -23865,7 +24005,7 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../godmode/alerts/alert_list.list.php:774 -#: ../../godmode/alerts/alert_list.list.php:1307 +#: ../../godmode/alerts/alert_list.list.php:1306 msgid "Update action" msgstr "" @@ -23939,13 +24079,13 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:396 #: ../../godmode/setup/setup_integria.php:529 -#: ../../include/graphs/fgraph.php:879 ../../include/functions_ui.php:7855 +#: ../../include/graphs/fgraph.php:879 ../../include/functions_ui.php:7950 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/class/TipsWindow.class.php:454 -#: ../../include/class/TipsWindow.class.php:722 -#: ../../include/class/TipsWindow.class.php:889 -#: ../../include/lib/Dashboard/Widget.php:564 -#: ../../operation/agentes/estado_generalagente.php:756 +#: ../../include/class/TipsWindow.class.php:466 +#: ../../include/class/TipsWindow.class.php:742 +#: ../../include/class/TipsWindow.class.php:909 +#: ../../include/lib/Dashboard/Widget.php:565 +#: ../../operation/agentes/estado_generalagente.php:725 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:228 #: ../../operation/incidents/list_integriaims_incidents.php:587 @@ -23959,8 +24099,8 @@ msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/functions_reporting_pdf.php:548 #: ../../enterprise/include/functions_reporting_pdf.php:604 -#: ../../include/functions_reporting_html.php:3841 -#: ../../include/functions_reporting_html.php:3911 +#: ../../include/functions_reporting_html.php:3869 +#: ../../include/functions_reporting_html.php:3939 msgid "Average" msgstr "" @@ -23973,51 +24113,51 @@ msgid "Curl Error: " msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:323 -#: ../../include/ajax/audit_log.php:270 ../../include/ajax/module.php:2224 -#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:775 +#: ../../include/ajax/audit_log.php:271 ../../include/ajax/module.php:2253 +#: ../../include/ajax/agent.php:571 ../../include/ajax/events.php:776 msgid "New filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:331 #: ../../enterprise/include/ajax/log_viewer.ajax.php:427 -#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_edit_form.php:80 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/audit_log.php:278 ../../include/ajax/audit_log.php:329 -#: ../../include/ajax/module.php:2340 ../../include/ajax/agent.php:699 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:783 -#: ../../include/ajax/events.php:881 +#: ../../include/ajax/audit_log.php:279 ../../include/ajax/audit_log.php:331 +#: ../../include/ajax/module.php:2369 ../../include/ajax/agent.php:699 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:784 +#: ../../include/ajax/events.php:882 msgid "Update filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:347 -#: ../../godmode/events/event_edit_filter.php:282 -#: ../../include/ajax/audit_log.php:288 ../../include/ajax/module.php:2247 +#: ../../godmode/events/event_edit_filter.php:284 +#: ../../include/ajax/audit_log.php:289 ../../include/ajax/module.php:2276 #: ../../include/ajax/agent.php:594 ../../include/ajax/custom_fields.php:573 #: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:799 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:800 msgid "Filter name" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:350 -#: ../../include/ajax/module.php:2253 ../../include/ajax/agent.php:600 -#: ../../include/ajax/events.php:802 +#: ../../include/ajax/module.php:2282 ../../include/ajax/agent.php:600 +#: ../../include/ajax/events.php:803 msgid "Save in Group" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:386 -#: ../../include/ajax/audit_log.php:314 ../../include/ajax/module.php:2292 -#: ../../include/ajax/events.php:838 +#: ../../include/ajax/audit_log.php:316 ../../include/ajax/module.php:2321 +#: ../../include/ajax/events.php:839 msgid "Overwrite filter" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:482 -#: ../../include/ajax/audit_log.php:383 ../../include/ajax/module.php:2401 -#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:936 +#: ../../include/ajax/audit_log.php:386 ../../include/ajax/module.php:2430 +#: ../../include/ajax/agent.php:761 ../../include/ajax/events.php:937 msgid "Filter name cannot be left blank" msgstr "" #: ../../enterprise/include/ajax/log_viewer.ajax.php:525 -#: ../../include/ajax/audit_log.php:411 +#: ../../include/ajax/audit_log.php:414 msgid "Filter name already on use" msgstr "" @@ -24068,8 +24208,8 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:75 -#: ../../include/class/Diagnostics.class.php:2158 -#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2162 +#: ../../include/class/Diagnostics.class.php:2280 #, php-format msgid "Automated %s report for user defined report" msgstr "" @@ -24081,24 +24221,24 @@ msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:618 #: ../../enterprise/include/functions_reporting_pdf.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1340 -#: ../../include/functions_reporting_html.php:3824 -#: ../../include/functions_reporting_html.php:3853 -#: ../../include/functions_reporting_html.php:3896 -#: ../../include/functions_reporting_html.php:3919 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/functions_reporting.php:7334 -#: ../../include/functions_reporting.php:7357 -#: ../../include/functions_reporting.php:7372 -#: ../../include/functions_reporting.php:7388 -#: ../../include/functions_reporting.php:7403 +#: ../../include/functions_reporting_html.php:3852 +#: ../../include/functions_reporting_html.php:3881 +#: ../../include/functions_reporting_html.php:3924 +#: ../../include/functions_reporting_html.php:3947 +#: ../../include/functions_reporting_html.php:3950 +#: ../../include/functions_reporting_html.php:3957 +#: ../../include/functions_reporting.php:7343 +#: ../../include/functions_reporting.php:7366 +#: ../../include/functions_reporting.php:7381 +#: ../../include/functions_reporting.php:7397 +#: ../../include/functions_reporting.php:7412 msgid "Maximun" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:540 #: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../include/functions_reporting_html.php:3832 -#: ../../include/functions_reporting_html.php:3903 +#: ../../include/functions_reporting_html.php:3860 +#: ../../include/functions_reporting_html.php:3931 msgid "Minimun" msgstr "" @@ -24110,53 +24250,53 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1285 #: ../../enterprise/include/functions_reporting_csv.php:1340 #: ../../enterprise/include/functions_reporting_csv.php:1444 -#: ../../include/functions_reporting_html.php:3895 -#: ../../include/functions_reporting_html.php:3902 -#: ../../include/functions_reporting_html.php:3910 -#: ../../include/functions_reporting_html.php:3921 -#: ../../include/functions_reporting_html.php:3926 -#: ../../include/functions_reporting.php:7352 +#: ../../include/functions_reporting_html.php:3923 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:3938 +#: ../../include/functions_reporting_html.php:3949 +#: ../../include/functions_reporting_html.php:3954 +#: ../../include/functions_reporting.php:7361 msgid "Lapse" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 +#: ../../include/functions_reporting_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:530 #, php-format msgid "%s in %s : NORMAL" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2168 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 +#: ../../include/functions_reporting_html.php:2189 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:546 #, php-format msgid "%s in %s : CRITICAL" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2185 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 +#: ../../include/functions_reporting_html.php:2206 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:562 #, php-format msgid "%s in %s : WARNING" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2202 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 +#: ../../include/functions_reporting_html.php:2223 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:578 #, php-format msgid "%s in %s : UNKNOWN" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:594 #, php-format msgid "%s in %s : Not initialize" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2221 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 +#: ../../include/functions_reporting_html.php:2242 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:611 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "" @@ -24172,7 +24312,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:331 #: ../../godmode/agentes/planned_downtime.editor.php:997 -#: ../../include/functions_reporting_html.php:4014 +#: ../../include/functions_reporting_html.php:4042 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 #: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 @@ -24183,7 +24323,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_reporting_html.php:5844 #: ../../include/functions_treeview.php:303 #: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" @@ -24310,7 +24450,7 @@ msgid "Trap status agent recovered" msgstr "" #: ../../enterprise/include/functions_servicemap.php:80 -#: ../../enterprise/include/functions_servicemap.php:1203 +#: ../../enterprise/include/functions_servicemap.php:1215 msgid "Failed to retrieve service elements: " msgstr "" @@ -24338,11 +24478,16 @@ msgstr "" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 #: ../../godmode/reporting/visual_console_builder.elements.php:121 #: ../../godmode/reporting/visual_console_builder.wizard.php:148 -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../mobile/operation/module_data.php:263 +#: ../../mobile/operation/server_status.php:282 +#: ../../mobile/operation/server_status.php:320 +#: ../../mobile/operation/server_status.php:350 +#: ../../mobile/operation/server_status.php:446 +#: ../../include/functions_visual_map_editor.php:246 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:180 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:681 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:670 +#: ../../include/functions_filemanager.php:696 msgid "Image" msgstr "" @@ -24361,8 +24506,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1221 #: ../../include/functions_reports.php:842 -#: ../../include/functions_reporting.php:8898 -#: ../../include/functions_reporting.php:9293 +#: ../../include/functions_reporting.php:8907 +#: ../../include/functions_reporting.php:9302 msgid "Availability" msgstr "" @@ -24381,7 +24526,7 @@ msgid "Maximum value" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4562 +#: ../../include/functions_reporting_html.php:4590 msgid "Agent min value" msgstr "" @@ -24400,7 +24545,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:695 -#: ../../operation/agentes/estado_generalagente.php:464 +#: ../../include/ajax/heatmap.ajax.php:483 +#: ../../operation/agentes/estado_generalagente.php:435 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "" @@ -24423,7 +24569,7 @@ msgid "Agent groups" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1780 +#: ../../include/functions_reporting_html.php:1789 msgid "Agent secondary groups" msgstr "" @@ -24438,7 +24584,7 @@ msgid "Prediction date" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6800 +#: ../../include/functions_reporting.php:6809 msgid "Projection Graph" msgstr "" @@ -24459,19 +24605,19 @@ msgid "Top %d" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4186 +#: ../../include/functions_reporting.php:4195 msgid "Group Report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1082 -#: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5896 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1094 +#: ../../mobile/operation/groups.php:186 +#: ../../include/functions_reporting_html.php:5924 #: ../../include/class/Diagnostics.class.php:583 -#: ../../include/functions_reporting.php:12308 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 -#: ../../include/functions_groups.php:2642 ../../operation/tree.php:501 +#: ../../include/functions_reporting.php:12381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../include/functions_groups.php:2667 ../../operation/tree.php:503 msgid "Total agents" msgstr "" @@ -24481,17 +24627,17 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1083 +#: ../../godmode/groups/group_list.php:1095 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:587 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 -#: ../../operation/tree.php:502 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:504 msgid "Total modules" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:12155 -#: ../../include/functions_groups.php:2700 +#: ../../include/functions_reporting.php:12228 +#: ../../include/functions_groups.php:2725 msgid "Defined alerts" msgstr "" @@ -24499,18 +24645,21 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:294 #: ../../enterprise/operation/services/services.treeview_services.php:295 #: ../../enterprise/operation/services/services.treeview_services.php:296 -#: ../../godmode/groups/group_list.php:1087 -#: ../../godmode/groups/group_list.php:1088 -#: ../../godmode/groups/group_list.php:1089 -#: ../../include/functions_graph.php:2608 -#: ../../include/functions_reporting.php:12171 -#: ../../include/functions_reporting.php:12192 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:702 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:703 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:704 -#: ../../include/functions_groups.php:2718 -#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506 -#: ../../operation/tree.php:507 ../../operation/tree.php:508 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/groups/group_list.php:1100 +#: ../../godmode/groups/group_list.php:1101 +#: ../../include/functions_graph.php:2618 +#: ../../include/functions_reporting.php:12244 +#: ../../include/functions_reporting.php:12265 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:695 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:696 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:697 +#: ../../include/functions_groups.php:2743 +#: ../../include/functions_groups.php:2766 ../../operation/tree.php:213 +#: ../../operation/tree.php:304 ../../operation/tree.php:508 +#: ../../operation/tree.php:509 ../../operation/tree.php:510 msgid "Fired alerts" msgstr "" @@ -24547,8 +24696,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:766 -#: ../../include/functions_reporting.php:7106 -#: ../../include/functions_reporting.php:10571 +#: ../../include/functions_reporting.php:7115 +#: ../../include/functions_reporting.php:10580 msgid "Summatory" msgstr "" @@ -24560,7 +24709,7 @@ msgid "Minimum Value" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10575 +#: ../../include/functions_reporting.php:10584 msgid "Minimum" msgstr "" @@ -24575,37 +24724,37 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../enterprise/include/functions_reporting_csv.php:1379 #: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reporting_html.php:4045 #: ../../include/functions_reports.php:774 -#: ../../include/functions_reporting.php:10031 +#: ../../include/functions_reporting.php:10040 msgid "Increment" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4015 +#: ../../include/functions_reporting_html.php:4043 msgid "From data" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:4016 +#: ../../include/functions_reporting_html.php:4044 msgid "To data" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:4044 +#: ../../include/functions_reporting_html.php:4072 msgid "Negative increase: " msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:4046 +#: ../../include/functions_reporting_html.php:4074 msgid "Positive increase: " msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:4048 +#: ../../include/functions_reporting_html.php:4076 msgid "Neutral increase: " msgstr "" @@ -24614,7 +24763,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:7111 +#: ../../include/functions_reporting.php:7120 msgid "AVG. Value" msgstr "" @@ -24625,7 +24774,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6442 +#: ../../include/functions_reporting.php:6451 msgid "Monitor Report" msgstr "" @@ -24742,8 +24891,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3988 #: ../../enterprise/include/functions_reporting.php:6182 #: ../../include/functions_reporting_html.php:670 -#: ../../include/functions_config.php:1337 -#: ../../include/functions_config.php:3541 +#: ../../include/functions_config.php:1353 +#: ../../include/functions_config.php:3565 msgid "Fail" msgstr "" @@ -24924,7 +25073,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2322 +#: ../../include/functions_html.php:2337 msgid "Month" msgstr "" @@ -25030,7 +25179,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2336 #: ../../godmode/events/custom_events.php:94 #: ../../include/functions_events.php:244 -#: ../../operation/events/events.php:2665 +#: ../../operation/events/events.php:2719 msgid "Agent ID" msgstr "" @@ -25042,16 +25191,16 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:295 #: ../../enterprise/tools/ipam/ipam_ajax.php:482 #: ../../enterprise/tools/ipam/ipam_massive.php:105 -#: ../../godmode/users/configure_user.php:1218 -#: ../../godmode/users/user_management.php:684 -#: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../godmode/users/configure_user.php:1282 +#: ../../godmode/users/user_management.php:710 +#: ../../mobile/operation/events.php:878 +#: ../../include/functions_reporting_html.php:6050 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1764 #: ../../include/class/AuditLog.class.php:114 -#: ../../operation/users/user_edit.php:743 +#: ../../operation/users/user_edit.php:740 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 -#: ../../general/logon_ok.php:259 +#: ../../general/logon_ok.php:304 msgid "Comments" msgstr "" @@ -25084,7 +25233,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4991 #: ../../include/functions_reporting_html.php:588 -#: ../../include/functions_reporting_html.php:4157 +#: ../../include/functions_reporting_html.php:4185 msgid "Time OK" msgstr "" @@ -25095,7 +25244,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4992 #: ../../include/functions_reporting_html.php:589 -#: ../../include/functions_reporting_html.php:4169 +#: ../../include/functions_reporting_html.php:4197 msgid "Time Unknown" msgstr "" @@ -25106,7 +25255,7 @@ msgid "Time Not Init" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4181 +#: ../../include/functions_reporting_html.php:4209 msgid "Time Downtime" msgstr "" @@ -25119,7 +25268,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5086 #: ../../include/functions_reporting_html.php:622 -#: ../../include/functions_reporting_html.php:4251 +#: ../../include/functions_reporting_html.php:4279 msgid "Checks OK" msgstr "" @@ -25286,17 +25435,17 @@ msgid "Custom Graph" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6150 +#: ../../include/functions_reporting.php:6159 msgid "Alert Report Module" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5983 +#: ../../include/functions_reporting.php:5992 msgid "Alert Report Agent" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5812 msgid "Alert Report Group" msgstr "" @@ -25315,20 +25464,20 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:951 #: ../../include/functions_reports.php:952 -#: ../../include/functions_reporting.php:5108 +#: ../../include/functions_reporting.php:5117 msgid "Permissions report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:572 -#: ../../godmode/users/configure_user.php:1001 -#: ../../godmode/users/configure_user.php:1060 +#: ../../godmode/users/user_list.php:573 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1124 #: ../../godmode/users/user_management.php:143 #: ../../godmode/users/user_management.php:155 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:6436 -#: ../../include/functions_reporting_html.php:6459 +#: ../../include/functions_reporting_html.php:5333 +#: ../../include/functions_reporting_html.php:6470 +#: ../../include/functions_reporting_html.php:6493 #: ../../include/class/SnmpConsole.class.php:278 #: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" @@ -25337,15 +25486,15 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_management.php:166 -#: ../../include/functions_reporting_html.php:6437 -#: ../../include/functions_reporting_html.php:6460 +#: ../../include/functions_reporting_html.php:6471 +#: ../../include/functions_reporting_html.php:6494 msgid "Full name" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6438 -#: ../../include/functions_reporting_html.php:6461 +#: ../../include/functions_reporting_html.php:6472 +#: ../../include/functions_reporting_html.php:6495 msgid "Permissions" msgstr "" @@ -25398,23 +25547,23 @@ msgid "Agent/module status" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:2379 msgid "Last time" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:938 -#: ../../include/functions_reporting.php:6597 +#: ../../include/functions_reporting.php:6606 msgid "Netflow top-N connections" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:6049 #: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:113 #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../general/logon_ok.php:258 +#: ../../general/logon_ok.php:303 msgid "Source IP" msgstr "" @@ -25424,8 +25573,8 @@ msgid "Destination IP" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:3477 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25496,6 +25645,8 @@ msgid "Public Key Authentication Failed" msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:268 +#: ../../godmode/setup/setup_ehorus.php:136 +#: ../../godmode/setup/setup_integria.php:666 msgid "Connection failed" msgstr "" @@ -25508,7 +25659,7 @@ msgid "Register new node" msgstr "" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3156 +#: ../../include/class/NetworkMap.class.php:3162 msgid "Update node" msgstr "" @@ -25571,7 +25722,7 @@ msgstr "" #: ../../enterprise/include/class/Google.cloud.php:762 #: ../../enterprise/include/class/Oracle.app.php:452 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:457 -#: ../../godmode/wizards/HostDevices.class.php:839 +#: ../../godmode/wizards/HostDevices.class.php:835 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 #: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" @@ -25628,27 +25779,27 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:1040 #: ../../enterprise/include/class/DB2.app.php:888 #: ../../enterprise/include/class/Aws.S3.php:665 -#: ../../enterprise/include/class/SAP.app.php:950 +#: ../../enterprise/include/class/SAP.app.php:951 #: ../../enterprise/include/class/Aws.cloud.php:1621 #: ../../enterprise/include/class/MySQL.app.php:963 #: ../../enterprise/include/class/Google.cloud.php:955 #: ../../enterprise/include/class/Oracle.app.php:995 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:850 #: ../../godmode/wizards/HostDevices.class.php:1637 -#: ../../include/class/CustomNetScan.class.php:775 +#: ../../include/class/CustomNetScan.class.php:774 msgid "Task configured." msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:997 #: ../../enterprise/include/class/VMware.app.php:1044 #: ../../enterprise/include/class/DB2.app.php:892 -#: ../../enterprise/include/class/SAP.app.php:954 +#: ../../enterprise/include/class/SAP.app.php:955 #: ../../enterprise/include/class/MySQL.app.php:967 #: ../../enterprise/include/class/Google.cloud.php:959 #: ../../enterprise/include/class/Oracle.app.php:999 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:854 #: ../../godmode/wizards/HostDevices.class.php:1641 -#: ../../include/class/CustomNetScan.class.php:779 +#: ../../include/class/CustomNetScan.class.php:778 msgid "Wizard failed. Cannot configure task." msgstr "" @@ -25734,8 +25885,8 @@ msgstr "" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:587 #: ../../godmode/setup/setup_integria.php:736 #: ../../godmode/wizards/HostDevices.class.php:782 -#: ../../include/class/CustomNetScan.class.php:559 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../include/class/CustomNetScan.class.php:558 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1241 msgid "Update and continue" msgstr "" @@ -25755,7 +25906,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:462 #: ../../enterprise/include/class/Oracle.app.php:464 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:469 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../godmode/wizards/HostDevices.class.php:846 #: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " @@ -25789,8 +25940,8 @@ msgstr "" #: ../../enterprise/include/class/Oracle.app.php:561 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:565 #: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/class/CustomNetScan.class.php:534 +#: ../../include/functions_reporting_html.php:2611 +#: ../../include/class/CustomNetScan.class.php:536 msgid "Defined" msgstr "" @@ -25815,7 +25966,7 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:762 #: ../../enterprise/include/class/DB2.app.php:478 #: ../../enterprise/include/class/Aws.S3.php:442 -#: ../../enterprise/include/class/SAP.app.php:635 +#: ../../enterprise/include/class/SAP.app.php:636 #: ../../enterprise/include/class/Aws.cloud.php:1253 #: ../../enterprise/include/class/MySQL.app.php:483 #: ../../enterprise/include/class/Oracle.app.php:485 @@ -26088,16 +26239,16 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1296 #: ../../enterprise/include/class/SAP.app.php:593 #: ../../enterprise/include/class/SAP.app.php:596 -#: ../../godmode/wizards/HostDevices.class.php:1472 -#: ../../godmode/wizards/HostDevices.class.php:1475 +#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../godmode/wizards/HostDevices.class.php:1471 msgid "No credentials available" msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1160 #: ../../enterprise/include/class/DeploymentCenter.class.php:1294 #: ../../enterprise/include/class/SAP.app.php:594 -#: ../../godmode/agentes/module_manager_editor_network.php:525 -#: ../../godmode/wizards/HostDevices.class.php:1473 +#: ../../godmode/agentes/module_manager_editor_network.php:530 +#: ../../godmode/wizards/HostDevices.class.php:1469 msgid "Manage credentials" msgstr "" @@ -26110,7 +26261,7 @@ msgid "Scan from" msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1202 -#: ../../godmode/wizards/HostDevices.class.php:1485 +#: ../../godmode/wizards/HostDevices.class.php:1481 msgid "Credentials to try with" msgstr "" @@ -26212,13 +26363,14 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:422 #: ../../enterprise/tools/ipam/ipam_massive.php:140 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/agentes/module_manager_editor_common.php:698 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/groups/group_list.php:954 +#: ../../godmode/agentes/module_manager_editor_common.php:703 +#: ../../godmode/agentes/module_manager_editor_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/massive/massive_edit_agents.php:1153 #: ../../godmode/alerts/configure_alert_template.php:919 -#: ../../include/functions_visual_map_editor.php:823 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_visual_map_editor.php:871 +#: ../../include/functions_reporting_html.php:3702 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 #: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" @@ -26447,8 +26599,8 @@ msgstr "" #: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5462 -#: ../../include/functions_reporting.php:5490 +#: ../../include/functions_reporting.php:5471 +#: ../../include/functions_reporting.php:5499 #, php-format msgid "Error: %s" msgstr "" @@ -26884,7 +27036,7 @@ msgid "Log monitoring is disabled. %s" msgstr "" #: ../../enterprise/include/class/LogSource.class.php:658 -#: ../../enterprise/include/class/LogSource.class.php:825 +#: ../../enterprise/include/class/LogSource.class.php:822 msgid "Add log source" msgstr "" @@ -26892,7 +27044,7 @@ msgstr "" msgid "Source name" msgstr "" -#: ../../enterprise/include/class/LogSource.class.php:829 +#: ../../enterprise/include/class/LogSource.class.php:826 msgid "Update log source" msgstr "" @@ -27189,130 +27341,130 @@ msgid "SAP System Number" msgstr "" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "SAP Credentials" msgstr "" #: ../../enterprise/include/class/SAP.app.php:606 -#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/SAP.app.php:621 msgid "Optional" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:651 +#: ../../enterprise/include/class/SAP.app.php:652 msgid "SAP License" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../enterprise/include/class/SAP.app.php:748 #: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../enterprise/include/class/SAP.app.php:749 #: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../enterprise/include/class/SAP.app.php:750 #: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../enterprise/include/class/SAP.app.php:751 #: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../enterprise/include/class/SAP.app.php:752 #: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../enterprise/include/class/SAP.app.php:753 #: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../enterprise/include/class/SAP.app.php:754 #: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../enterprise/include/class/SAP.app.php:755 #: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../enterprise/include/class/SAP.app.php:756 #: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../enterprise/include/class/SAP.app.php:757 #: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../enterprise/include/class/SAP.app.php:758 #: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../enterprise/include/class/SAP.app.php:759 #: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../enterprise/include/class/SAP.app.php:760 #: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 #: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:784 +#: ../../enterprise/include/class/SAP.app.php:785 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " "to define the module following the documentation:
%s" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../enterprise/include/class/SAP.app.php:806 #: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:829 +#: ../../enterprise/include/class/SAP.app.php:830 msgid "Add monitors" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:842 +#: ../../enterprise/include/class/SAP.app.php:843 msgid "Remove monitors" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../enterprise/include/class/SAP.app.php:854 +#: ../../enterprise/operation/services/massive/services.create.php:1333 #: ../../enterprise/operation/services/massive/service.delete.elements.php:278 #: ../../enterprise/operation/services/massive/service.create.elements.php:626 #: ../../enterprise/operation/services/massive/service.edit.elements.php:385 msgid "Selected modules" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:893 +#: ../../enterprise/include/class/SAP.app.php:894 msgid "Define your custom SAP modules." msgstr "" -#: ../../enterprise/include/class/SAP.app.php:892 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Advanced module configuration" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:902 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "Custom module definitions" msgstr "" -#: ../../enterprise/include/class/SAP.app.php:903 +#: ../../enterprise/include/class/SAP.app.php:904 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -27856,7 +28008,7 @@ msgid "Remove item" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 -#: ../../operation/agentes/estado_monitores.php:639 +#: ../../operation/agentes/estado_monitores.php:631 msgid "Reset" msgstr "" @@ -27986,9 +28138,10 @@ msgid "Fields used on execution when the alert is fired" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/configure_user.php:63 #: ../../godmode/users/user_management.php:42 #: ../../godmode/massive/massive_edit_users.php:278 -#: ../../operation/users/user_edit.php:473 +#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473 #: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 msgid "Alert detail" msgstr "" @@ -28016,9 +28169,9 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 #: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2591 -#: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_reporting_html.php:2612 +#: ../../include/functions_reporting_html.php:3479 +#: ../../include/functions_reporting_html.php:3480 #: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "" @@ -28068,7 +28221,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385 #: ../../enterprise/operation/agentes/policy_view.php:293 #: ../../godmode/alerts/alert_list.list.php:192 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311 #: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "" @@ -28134,7 +28287,7 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 -#: ../../include/ajax/module.php:1834 +#: ../../include/ajax/module.php:1862 msgid "Metaconsole" msgstr "" @@ -28182,7 +28335,7 @@ msgid "Please restore your backups" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/functions_ui.php:7102 +#: ../../include/functions_ui.php:7174 msgid "Query" msgstr "" @@ -28192,8 +28345,8 @@ msgid "Table" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../include/class/Heatmap.class.php:1302 -#: ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:1358 +#: ../../general/reporting_console_node.php:70 msgid "Info" msgstr "" @@ -28222,8 +28375,8 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:463 #: ../../enterprise/include/functions_login.php:213 -#: ../../include/functions_menu.php:883 -#: ../../include/class/Diagnostics.class.php:1846 +#: ../../include/functions_menu.php:888 +#: ../../include/class/Diagnostics.class.php:1850 msgid "Successfully" msgstr "" @@ -28389,12 +28542,12 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:57 #: ../../godmode/events/event_responses.editor.php:175 #: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:836 -#: ../../include/functions_visual_map_editor.php:931 +#: ../../include/functions_visual_map_editor.php:174 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_visual_map_editor.php:979 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:646 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/functions_filemanager.php:661 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" @@ -28433,7 +28586,7 @@ msgid "Missed id parameter." msgstr "" #: ../../enterprise/include/class/ManageBackups.class.php:433 -#: ../../include/class/AuditLog.class.php:412 +#: ../../include/class/AuditLog.class.php:424 msgid "There is no additional information to display" msgstr "" @@ -28447,30 +28600,30 @@ msgstr "" msgid "Do you like perform a database restoration?" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:451 +#: ../../enterprise/include/functions_enterprise.php:461 msgid "Tree view by tags" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:481 +#: ../../enterprise/include/functions_enterprise.php:491 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " "storage frequency is higher than the purge frequency." msgstr "" -#: ../../enterprise/include/functions_enterprise.php:483 +#: ../../enterprise/include/functions_enterprise.php:493 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "" -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:504 msgid "" "If days purge is less than history days pass to history db, you will have a " "problems and you lost data. Recommended that days purge will more taller " "than days to history DB" msgstr "" -#: ../../enterprise/include/functions_enterprise.php:496 +#: ../../enterprise/include/functions_enterprise.php:506 msgid "Problems with days purge and days that pass data to history DB" msgstr "" @@ -28521,7 +28674,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4223 #: ../../enterprise/include/functions_reporting.php:4874 #: ../../include/functions_reporting_html.php:877 -#: ../../include/functions_reporting_html.php:4881 +#: ../../include/functions_reporting_html.php:4909 msgid "Not Init" msgstr "" @@ -28567,7 +28720,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3458 #: ../../enterprise/include/functions_reporting.php:4434 #: ../../include/functions_reporting.php:1011 -#: ../../include/functions_reporting.php:9335 +#: ../../include/functions_reporting.php:9344 msgid "There are no SLAs defined" msgstr "" @@ -28575,7 +28728,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3511 #: ../../enterprise/include/functions_reporting.php:4487 #: ../../include/functions_reporting.php:1086 -#: ../../include/functions_reporting.php:9713 +#: ../../include/functions_reporting.php:9722 msgid "Inverse" msgstr "" @@ -28624,7 +28777,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 #: ../../include/functions_reporting_html.php:872 -#: ../../include/functions_reporting_html.php:4876 +#: ../../include/functions_reporting_html.php:4904 msgid "Unknow" msgstr "" @@ -28632,7 +28785,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4228 #: ../../enterprise/include/functions_reporting.php:6229 #: ../../include/functions_reporting_html.php:882 -#: ../../include/functions_reporting_html.php:4886 +#: ../../include/functions_reporting_html.php:4914 msgid "Downtimes" msgstr "" @@ -28666,8 +28819,8 @@ msgstr "" #: ../../include/functions_reporting_html.php:680 #: ../../include/functions_reporting_html.php:751 #: ../../include/functions_reporting_html.php:829 -#: ../../include/functions_reporting_html.php:4333 -#: ../../include/functions_reporting_html.php:4480 +#: ../../include/functions_reporting_html.php:4361 +#: ../../include/functions_reporting_html.php:4508 msgid "24 x 7" msgstr "" @@ -28690,17 +28843,17 @@ msgid "Checks Critical" msgstr "" #: ../../enterprise/include/functions_reporting.php:5085 -#: ../../include/functions_reporting_html.php:4257 +#: ../../include/functions_reporting_html.php:4285 msgid "Checks Warning" msgstr "" #: ../../enterprise/include/functions_reporting.php:5168 #: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:4523 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5078 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:5106 #: ../../include/functions_reporting.php:1656 -#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3744 msgid "There are no Agent/Modules defined" msgstr "" @@ -28724,51 +28877,51 @@ msgid "Scheduled shutdow" msgstr "" #: ../../enterprise/include/functions_reporting.php:6600 -#: ../../enterprise/include/functions_reporting.php:7490 +#: ../../enterprise/include/functions_reporting.php:7499 #, php-format msgid "Graph agents(%s) - %s" msgstr "" -#: ../../enterprise/include/functions_reporting.php:7398 +#: ../../enterprise/include/functions_reporting.php:7407 #, php-format msgid "Graph agent(%s) - %s" msgstr "" -#: ../../enterprise/include/functions_reporting.php:7845 +#: ../../enterprise/include/functions_reporting.php:7854 msgid "There is not data for the selected conditions" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8039 -#: ../../enterprise/include/functions_reporting.php:8105 +#: ../../enterprise/include/functions_reporting.php:8048 +#: ../../enterprise/include/functions_reporting.php:8114 msgid "Template editor" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/include/functions_reporting.php:8180 #: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/include/functions_reporting.php:8248 #: ../../enterprise/operation/reporting/custom_reporting.php:116 #: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/include/functions_reporting.php:8336 #: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "" -#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../enterprise/include/functions_reporting.php:8377 #: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8538 +#: ../../enterprise/include/functions_reporting.php:8547 msgid "Configuration changes" msgstr "" -#: ../../enterprise/include/functions_reporting.php:8555 +#: ../../enterprise/include/functions_reporting.php:8564 msgid "No NCM capabilities detected" msgstr "" @@ -28925,40 +29078,52 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1672 #: ../../enterprise/include/functions_services.php:1717 #: ../../enterprise/include/functions_services.php:1785 +#: ../../mobile/operation/services.php:231 +#: ../../mobile/operation/services.php:272 +#: ../../mobile/operation/services.php:338 msgid "Nonexistent. This element should be deleted" msgstr "" #: ../../enterprise/include/functions_services.php:1700 #: ../../enterprise/include/functions_services.php:1767 #: ../../enterprise/include/functions_services.php:1813 +#: ../../mobile/operation/services.php:255 +#: ../../mobile/operation/services.php:320 +#: ../../mobile/operation/services.php:363 msgid "This element does not affect service weigth because is disabled." msgstr "" #: ../../enterprise/include/functions_services.php:1828 +#: ../../mobile/operation/services.php:386 #, php-format msgid "Dynamic element (%d) '%s' does not match any target" msgstr "" #: ../../enterprise/include/functions_services.php:1837 +#: ../../mobile/operation/services.php:395 #, php-format msgid "Dynamic element (%d) '%s' causes an error: %s" msgstr "" #: ../../enterprise/include/functions_services.php:1849 +#: ../../mobile/operation/services.php:377 msgid "Dynamic element" msgstr "" #: ../../enterprise/include/functions_services.php:1855 +#: ../../mobile/operation/services.php:405 #, php-format msgid "agents like \"%s\"" msgstr "" #: ../../enterprise/include/functions_services.php:1860 +#: ../../mobile/operation/services.php:410 #, php-format msgid "modules like \"%s\"" msgstr "" #: ../../enterprise/include/functions_services.php:1995 +#: ../../mobile/operation/services.php:450 msgid "NOT INITIALIZED" msgstr "" @@ -29054,46 +29219,46 @@ msgstr "" msgid "Invalid old password" msgstr "" -#: ../../enterprise/include/functions_login.php:451 +#: ../../enterprise/include/functions_login.php:455 msgid "Password confirm does not match" msgstr "" -#: ../../enterprise/include/functions_login.php:458 +#: ../../enterprise/include/functions_login.php:462 msgid "Password empty" msgstr "" -#: ../../enterprise/include/functions_login.php:577 -#: ../../godmode/users/configure_user.php:2065 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2205 +#: ../../enterprise/include/functions_login.php:581 +#: ../../godmode/users/configure_user.php:2117 +#: ../../godmode/users/configure_user.php:2186 +#: ../../godmode/users/configure_user.php:2257 #: ../../include/ajax/double_auth.ajax.php:267 #: ../../include/ajax/double_auth.ajax.php:365 #: ../../include/ajax/double_auth.ajax.php:411 #: ../../include/ajax/double_auth.ajax.php:527 -#: ../../operation/users/user_edit.php:1238 -#: ../../operation/users/user_edit.php:1304 -#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165 +#: ../../operation/users/user_edit.php:1235 +#: ../../operation/users/user_edit.php:1301 +#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "" -#: ../../enterprise/include/functions_login.php:584 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2140 +#: ../../enterprise/include/functions_login.php:588 +#: ../../godmode/users/configure_user.php:2123 +#: ../../godmode/users/configure_user.php:2192 #: ../../include/ajax/double_auth.ajax.php:274 #: ../../include/ajax/double_auth.ajax.php:372 #: ../../include/ajax/double_auth.ajax.php:418 #: ../../include/ajax/double_auth.ajax.php:535 -#: ../../operation/users/user_edit.php:1245 -#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172 +#: ../../operation/users/user_edit.php:1242 +#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172 msgid "There was an error loading the data" msgstr "" -#: ../../enterprise/include/functions_login.php:593 -#: ../../godmode/users/configure_user.php:2148 -#: ../../godmode/users/configure_user.php:2224 -#: ../../operation/users/user_edit.php:1319 -#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181 +#: ../../enterprise/include/functions_login.php:597 +#: ../../godmode/users/configure_user.php:2200 +#: ../../godmode/users/configure_user.php:2276 +#: ../../operation/users/user_edit.php:1316 +#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181 msgid "Double authentication activation" msgstr "" @@ -29141,10 +29306,11 @@ msgid "Invalid plugin definition" msgstr "" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:139 -#: ../../godmode/setup/setup_integria.php:652 -#: ../../operation/users/user_edit.php:872 -#: ../../operation/users/user_edit.php:925 +#: ../../godmode/setup/setup_ehorus.php:141 +#: ../../godmode/setup/setup_websocket_engine.php:91 +#: ../../godmode/setup/setup_integria.php:654 +#: ../../operation/users/user_edit.php:869 +#: ../../operation/users/user_edit.php:922 msgid "Test" msgstr "" @@ -29235,7 +29401,7 @@ msgstr "" #: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 #: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1309 -#: ../../include/functions_reporting_html.php:2640 +#: ../../include/functions_reporting_html.php:2659 #: ../../include/class/SnmpConsole.class.php:276 msgid "Count" msgstr "" @@ -29943,23 +30109,23 @@ msgstr "" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:147 -#: ../../godmode/events/event_edit_filter.php:391 +#: ../../godmode/events/event_edit_filter.php:393 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 -#: ../../operation/events/events.php:1763 -#: ../../operation/events/events.php:2385 +#: ../../operation/events/events.php:1817 +#: ../../operation/events/events.php:2439 msgid "Event status" msgstr "" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:501 -#: ../../operation/events/events.php:2008 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../operation/events/events.php:2062 msgid "User ack." msgstr "" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:558 -#: ../../godmode/events/event_edit_filter.php:574 +#: ../../godmode/events/event_edit_filter.php:560 +#: ../../godmode/events/event_edit_filter.php:576 msgid "Date from" msgstr "" @@ -29968,16 +30134,16 @@ msgid "Date to" msgstr "" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../mobile/operation/events.php:816 -#: ../../include/functions_events.php:4968 -#: ../../operation/events/events.php:1795 +#: ../../godmode/events/event_edit_filter.php:544 +#: ../../mobile/operation/events.php:845 +#: ../../include/functions_events.php:4973 +#: ../../operation/events/events.php:1849 msgid "Repeated" msgstr "" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:759 -#: ../../operation/events/events.php:2054 +#: ../../godmode/events/event_edit_filter.php:761 +#: ../../operation/events/events.php:2108 msgid "Alert events" msgstr "" @@ -29986,16 +30152,16 @@ msgid "Id source events" msgstr "" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:475 -#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../godmode/events/event_edit_filter.php:477 +#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:407 #: ../../include/class/AuditLog.class.php:204 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../operation/events/events.php:1776 -#: ../../operation/events/events.php:2415 +#: ../../operation/events/events.php:1830 +#: ../../operation/events/events.php:2469 msgid "Max. hours old" msgstr "" @@ -30005,16 +30171,16 @@ msgid "More than 5 tags" msgstr "" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:629 -#: ../../operation/events/events.php:2255 -#: ../../operation/events/events.php:2258 +#: ../../godmode/events/event_edit_filter.php:631 +#: ../../operation/events/events.php:2309 +#: ../../operation/events/events.php:2312 msgid "Events with following tags" msgstr "" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../operation/events/events.php:2256 -#: ../../operation/events/events.php:2259 +#: ../../godmode/events/event_edit_filter.php:696 +#: ../../operation/events/events.php:2310 +#: ../../operation/events/events.php:2313 msgid "Events without following tags" msgstr "" @@ -30082,8 +30248,8 @@ msgid "Subscription" msgstr "" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:956 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../include/functions_menu.php:961 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Support expires" msgstr "" @@ -30105,7 +30271,7 @@ msgstr "" #: ../../enterprise/include/functions_ipam.php:1343 #: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../include/ajax/events.php:1754 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30113,12 +30279,12 @@ msgstr "" #: ../../enterprise/include/functions_ipam.php:1388 #: ../../enterprise/operation/services/services.list.php:677 -#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../godmode/agentes/inventory_manager.php:271 #: ../../godmode/wizards/DiscoveryTaskList.class.php:589 #: ../../godmode/wizards/DiscoveryTaskList.class.php:679 -#: ../../operation/visual_console/view.php:424 -#: ../../operation/agentes/group_view.php:239 -#: ../../operation/agentes/group_view.php:302 +#: ../../operation/visual_console/view.php:426 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/agentes/group_view.php:305 msgid "Force" msgstr "" @@ -30520,7 +30686,7 @@ msgstr "" #: ../../enterprise/operation/agentes/ux_console_view.php:297 #: ../../enterprise/operation/agentes/ux_console_view.php:384 #: ../../enterprise/operation/agentes/wux_console_view.php:337 -#: ../../include/functions_ui.php:6749 +#: ../../include/functions_ui.php:6824 msgid "Snapshot view" msgstr "" @@ -30531,10 +30697,11 @@ msgstr "" #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:589 -#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/events.php:1150 -#: ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/events.php:1197 +#: ../../mobile/operation/server_status.php:389 +#: ../../mobile/operation/tactical.php:240 msgid "Loading..." msgstr "" @@ -30586,8 +30753,8 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:346 #: ../../godmode/alerts/alert_list.list.php:645 #: ../../godmode/alerts/alert_view.php:111 -#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1417 -#: ../../include/class/AgentsAlerts.class.php:956 +#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1460 +#: ../../include/class/AgentsAlerts.class.php:957 msgid "time(s)" msgstr "" @@ -30596,10 +30763,10 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:117 #: ../../mobile/operation/alerts.php:330 #: ../../include/functions_agents.php:3000 -#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/class/SnmpConsole.class.php:843 -#: ../../include/functions_reporting.php:13066 +#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466 +#: ../../include/class/AgentsAlerts.class.php:963 +#: ../../include/class/SnmpConsole.class.php:845 +#: ../../include/functions_reporting.php:13139 msgid "Alert not fired" msgstr "" @@ -30633,7 +30800,7 @@ msgid "(Adopted) (Unlinked)" msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:458 -#: ../../godmode/agentes/module_manager.php:881 +#: ../../godmode/agentes/module_manager.php:895 msgid "Non initialized module" msgstr "" @@ -30649,24 +30816,24 @@ msgstr "" #: ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 -#: ../../mobile/operation/modules.php:650 +#: ../../mobile/operation/modules.php:645 +#: ../../mobile/operation/modules.php:653 +#: ../../mobile/operation/modules.php:661 #: ../../include/functions_modules.php:2911 #: ../../include/functions_modules.php:2915 #: ../../include/functions_modules.php:2919 -#: ../../operation/agentes/status_monitor.php:1895 -#: ../../operation/agentes/status_monitor.php:1901 -#: ../../operation/agentes/status_monitor.php:1911 -#: ../../operation/agentes/status_monitor.php:1917 -#: ../../operation/agentes/status_monitor.php:1927 -#: ../../operation/agentes/status_monitor.php:1933 -#: ../../operation/agentes/pandora_networkmap.view.php:1856 -#: ../../operation/agentes/pandora_networkmap.view.php:1861 -#: ../../operation/agentes/pandora_networkmap.view.php:1866 -#: ../../operation/search_modules.php:142 -#: ../../operation/search_modules.php:150 -#: ../../operation/search_modules.php:158 +#: ../../operation/agentes/status_monitor.php:1897 +#: ../../operation/agentes/status_monitor.php:1903 +#: ../../operation/agentes/status_monitor.php:1913 +#: ../../operation/agentes/status_monitor.php:1919 +#: ../../operation/agentes/status_monitor.php:1929 +#: ../../operation/agentes/status_monitor.php:1935 +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/pandora_networkmap.view.php:1862 +#: ../../operation/agentes/pandora_networkmap.view.php:1867 +#: ../../operation/search_modules.php:145 +#: ../../operation/search_modules.php:153 +#: ../../operation/search_modules.php:161 msgid "Last status" msgstr "" @@ -30676,116 +30843,117 @@ msgid "Tag view" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:556 +#: ../../extensions/agents_modules.php:564 #: ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 +#: ../../godmode/agentes/status_monitor_custom_fields.php:48 #: ../../include/class/AgentsAlerts.class.php:755 #: ../../operation/heatmap.php:144 #: ../../operation/agentes/alerts_status.php:202 #: ../../operation/agentes/estado_agente.php:250 #: ../../operation/agentes/interface_view.php:76 -#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:339 #: ../../operation/agentes/group_view.php:102 #: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:884 +#: ../../operation/agentes/status_monitor.php:883 msgid "Monitor status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:241 -#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/status_monitor.php:608 #: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:655 +#: ../../operation/agentes/status_monitor.php:654 msgid "Data server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:290 -#: ../../godmode/agentes/module_manager_editor_network.php:78 -#: ../../operation/agentes/status_monitor.php:657 +#: ../../godmode/agentes/module_manager_editor_network.php:79 +#: ../../operation/agentes/status_monitor.php:656 msgid "Network server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:661 +#: ../../operation/agentes/status_monitor.php:660 msgid "Plugin server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:665 +#: ../../operation/agentes/status_monitor.php:664 msgid "WMI server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:302 #: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../operation/agentes/status_monitor.php:669 +#: ../../operation/agentes/status_monitor.php:668 msgid "Prediction server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/module_manager_editor_web.php:57 -#: ../../operation/agentes/status_monitor.php:673 +#: ../../operation/agentes/status_monitor.php:672 msgid "Web server module" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:310 #: ../../enterprise/operation/agentes/tag_view.php:783 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -#: ../../operation/agentes/status_monitor.php:935 -#: ../../operation/agentes/status_monitor.php:1553 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:1555 msgid "Server type" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:329 #: ../../godmode/agentes/modificar_agente.php:290 -#: ../../operation/agentes/status_monitor.php:681 +#: ../../operation/agentes/status_monitor.php:680 msgid "Only enabled" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:330 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:682 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only disabled" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:334 -#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:955 msgid "Show monitors..." msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:358 #: ../../enterprise/operation/agentes/tag_view.php:782 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../operation/agentes/status_monitor.php:976 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:162 +#: ../../operation/agentes/status_monitor.php:978 msgid "Data type" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:503 #: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:1007 +#: ../../operation/agentes/status_monitor.php:1009 msgid "Agent custom fields" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:672 -#: ../../operation/agentes/status_monitor.php:2280 +#: ../../operation/agentes/status_monitor.php:2282 msgid "Sorry no search parameters" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:748 -#: ../../operation/agentes/estado_agente.php:1206 +#: ../../operation/agentes/estado_agente.php:1215 msgid "Remote config" msgstr "" @@ -30793,69 +30961,70 @@ msgstr "" #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/services.list.php:547 #: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../mobile/operation/modules.php:856 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/class/NetworkMap.class.php:3065 +#: ../../include/class/NetworkMap.class.php:3071 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4508 +#: ../../include/functions_events.php:4513 #: ../../operation/agentes/interface_view.functions.php:558 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/search_modules.php:37 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/search_modules.php:40 msgid "Graph" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:786 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/status_monitor_custom_fields.php:129 +#: ../../godmode/agentes/status_monitor_custom_fields.php:169 #: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1083 #: ../../mobile/operation/modules.php:542 -#: ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:616 #: ../../include/functions_modules.php:2896 #: ../../include/functions_modules.php:4251 #: ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1784 -#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746 +#: ../../operation/agentes/status_monitor.php:1786 +#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751 msgid "NOT INIT" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1223 -#: ../../include/functions_reporting.php:13188 -#: ../../include/functions_reporting.php:13197 +#: ../../include/functions_reporting.php:13261 +#: ../../include/functions_reporting.php:13270 #, php-format msgid "%d Total modules" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1224 -#: ../../include/functions_reporting.php:13189 +#: ../../include/functions_reporting.php:13262 #, php-format msgid "%d Modules in normal status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1225 -#: ../../include/functions_reporting.php:13190 +#: ../../include/functions_reporting.php:13263 #, php-format msgid "%d Modules in critical status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1226 -#: ../../include/functions_reporting.php:13191 +#: ../../include/functions_reporting.php:13264 #, php-format msgid "%d Modules in warning status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1227 -#: ../../include/functions_reporting.php:13192 +#: ../../include/functions_reporting.php:13265 #, php-format msgid "%d Modules in unknown status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1228 -#: ../../include/functions_reporting.php:13193 +#: ../../include/functions_reporting.php:13266 #, php-format msgid "%d Modules in not init status" msgstr "" @@ -30866,7 +31035,8 @@ msgid "Main IP" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:96 -#: ../../include/functions_events.php:4435 +#: ../../godmode/groups/tactical.php:182 +#: ../../include/functions_events.php:4440 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "" @@ -30877,24 +31047,24 @@ msgid "Monitors down" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:182 -#: ../../mobile/operation/groups.php:174 +#: ../../mobile/operation/groups.php:213 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 #: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:297 -#: ../../operation/agentes/ver_agente.php:1877 +#: ../../operation/agentes/ver_agente.php:1873 msgid "URL Route Analyzer" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:316 -#: ../../operation/agentes/ver_agente.php:1868 +#: ../../operation/agentes/ver_agente.php:1864 msgid "UX Console" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:335 -#: ../../operation/agentes/ver_agente.php:1872 +#: ../../operation/agentes/ver_agente.php:1868 msgid "WUX Console" msgstr "" @@ -30994,10 +31164,10 @@ msgid "View all stats" msgstr "" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:893 -#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379 -#: ../../operation/menu.php:381 ../../operation/events/events.php:590 -#: ../../operation/events/events.php:855 +#: ../../include/class/SnmpConsole.class.php:895 +#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379 +#: ../../operation/menu.php:381 ../../operation/events/events.php:595 +#: ../../operation/events/events.php:860 msgid "Show more" msgstr "" @@ -31007,7 +31177,7 @@ msgstr "" #: ../../enterprise/operation/log/elasticsearch_interface.php:37 #: ../../enterprise/operation/log/elasticsearch_interface.php:50 -#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:411 #: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "" @@ -31021,50 +31191,50 @@ msgid "" "Elasticsearch" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:427 -#: ../../enterprise/operation/log/log_viewer.php:445 -#: ../../enterprise/operation/log/log_viewer.php:455 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:443 +#: ../../enterprise/operation/log/log_viewer.php:453 msgid "Log sources" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/log/log_viewer.php:517 #: ../../godmode/modules/manage_inventory_modules.php:83 #: ../../godmode/modules/manage_inventory_modules_form.php:57 #: ../../godmode/netflow/nf_edit.php:70 -#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/netflow/nf_live_view.php:155 msgid "Not supported in Windows systems" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:541 +#: ../../enterprise/operation/log/log_viewer.php:539 msgid "All words" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:542 +#: ../../enterprise/operation/log/log_viewer.php:540 msgid "Any word" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:547 +#: ../../enterprise/operation/log/log_viewer.php:545 msgid "Search mode" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../enterprise/operation/log/log_viewer.php:605 #: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:660 +#: ../../enterprise/operation/log/log_viewer.php:658 msgid "Select dates by range" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:669 #: ../../godmode/reporting/create_container.php:417 #: ../../include/functions.php:2744 msgid "custom" msgstr "" +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../enterprise/operation/log/log_viewer.php:672 #: ../../enterprise/operation/log/log_viewer.php:673 -#: ../../enterprise/operation/log/log_viewer.php:674 -#: ../../enterprise/operation/log/log_viewer.php:675 #: ../../godmode/reporting/create_container.php:419 #: ../../godmode/reporting/create_container.php:420 #: ../../godmode/reporting/create_container.php:421 @@ -31075,8 +31245,8 @@ msgstr "" msgid "%s hours" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:677 -#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../enterprise/operation/log/log_viewer.php:675 +#: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:423 #: ../../godmode/reporting/create_container.php:424 #: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 @@ -31084,117 +31254,117 @@ msgstr "" msgid "%s days" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../enterprise/operation/log/log_viewer.php:677 #: ../../godmode/reporting/create_container.php:425 -#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:248 #: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../enterprise/operation/log/log_viewer.php:679 #: ../../godmode/reporting/create_container.php:427 -#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:250 #: ../../include/ajax/graph.ajax.php:155 #: ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:684 -#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../enterprise/operation/log/log_viewer.php:682 +#: ../../enterprise/operation/log/log_viewer.php:702 #: ../../operation/network/network_report.php:114 #: ../../operation/network/network_usage_map.php:128 -#: ../../operation/netflow/nf_live_view.php:403 +#: ../../operation/netflow/nf_live_view.php:476 msgid "Start date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../enterprise/operation/log/log_viewer.php:734 #: ../../operation/agentes/exportdata.php:427 #: ../../operation/network/network_report.php:157 #: ../../operation/network/network_usage_map.php:161 -#: ../../operation/netflow/nf_live_view.php:436 +#: ../../operation/netflow/nf_live_view.php:509 msgid "End date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:806 -#: ../../enterprise/operation/log/log_viewer.php:807 +#: ../../enterprise/operation/log/log_viewer.php:804 +#: ../../enterprise/operation/log/log_viewer.php:805 msgid "Edit sources" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:851 msgid "Show log entries" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:854 +#: ../../enterprise/operation/log/log_viewer.php:852 msgid "Graph log results" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:857 +#: ../../enterprise/operation/log/log_viewer.php:855 msgid "Display mode" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:875 +#: ../../enterprise/operation/log/log_viewer.php:873 msgid "Use capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:910 +#: ../../enterprise/operation/log/log_viewer.php:908 msgid "Create new model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../enterprise/operation/log/log_viewer.php:916 #: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../enterprise/operation/log/log_viewer.php:917 #: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:922 +#: ../../enterprise/operation/log/log_viewer.php:920 msgid "Graph type" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:942 +#: ../../enterprise/operation/log/log_viewer.php:940 msgid "Advanced options " msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1101 +#: ../../enterprise/operation/log/log_viewer.php:1099 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send " "the csv file" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1103 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "e-mail address" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1106 +#: ../../enterprise/operation/log/log_viewer.php:1104 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the " "file will be saved in the local attachment folder." msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1239 +#: ../../enterprise/operation/log/log_viewer.php:1237 msgid "The start date cannot be greater than the end date" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1676 +#: ../../enterprise/operation/log/log_viewer.php:1674 msgid "Add new capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1679 +#: ../../enterprise/operation/log/log_viewer.php:1677 msgid "Edit capture model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1762 +#: ../../enterprise/operation/log/log_viewer.php:1760 msgid "Error create new model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1789 +#: ../../enterprise/operation/log/log_viewer.php:1787 msgid "Error delete model" msgstr "" -#: ../../enterprise/operation/log/log_viewer.php:1835 +#: ../../enterprise/operation/log/log_viewer.php:1833 msgid "Error update model" msgstr "" @@ -31207,8 +31377,8 @@ msgid "AWS view" msgstr "" #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1698 -#: ../../operation/agentes/ver_agente.php:1905 +#: ../../operation/agentes/ver_agente.php:1694 +#: ../../operation/agentes/ver_agente.php:1901 msgid "SAP view" msgstr "" @@ -31342,55 +31512,55 @@ msgstr "" msgid "Add selected" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1170 +#: ../../enterprise/operation/services/massive/services.create.php:1182 msgid "" "Weights configured are common for every item added to the service, if you " "want to customize them, please edit the service." msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1186 #: ../../enterprise/operation/services/massive/service.delete.elements.php:209 #: ../../enterprise/operation/services/massive/service.create.elements.php:532 #: ../../enterprise/operation/services/massive/service.edit.elements.php:290 msgid "Service items summary" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../enterprise/operation/services/massive/services.create.php:1193 #: ../../enterprise/operation/services/massive/service.create.elements.php:539 #: ../../enterprise/operation/services/massive/service.edit.elements.php:298 -#: ../../include/functions_visual_map_editor.php:1146 -#: ../../include/rest-api/models/VisualConsole/Item.php:2528 +#: ../../include/functions_visual_map_editor.php:1198 +#: ../../include/rest-api/models/VisualConsole/Item.php:2531 msgid "Critical weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../enterprise/operation/services/massive/services.create.php:1205 #: ../../enterprise/operation/services/massive/service.create.elements.php:552 #: ../../enterprise/operation/services/massive/service.edit.elements.php:311 -#: ../../include/functions_visual_map_editor.php:1172 -#: ../../include/rest-api/models/VisualConsole/Item.php:2542 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/rest-api/models/VisualConsole/Item.php:2545 msgid "Warning weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../enterprise/operation/services/massive/services.create.php:1217 #: ../../enterprise/operation/services/massive/service.create.elements.php:565 #: ../../enterprise/operation/services/massive/service.edit.elements.php:324 msgid "Unknown weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../enterprise/operation/services/massive/services.create.php:1229 #: ../../enterprise/operation/services/massive/service.create.elements.php:578 #: ../../enterprise/operation/services/massive/service.edit.elements.php:337 msgid "Normal weight" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../enterprise/operation/services/massive/services.create.php:1301 #: ../../enterprise/operation/services/massive/service.delete.elements.php:246 #: ../../enterprise/operation/services/massive/service.create.elements.php:594 #: ../../enterprise/operation/services/massive/service.edit.elements.php:353 msgid "Selected services" msgstr "" -#: ../../enterprise/operation/services/massive/services.create.php:1370 +#: ../../enterprise/operation/services/massive/services.create.php:1382 msgid "Create service" msgstr "" @@ -31510,10 +31680,10 @@ msgid "Show sunburst" msgstr "" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/agents_modules.php:1067 #: ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 -#: ../../include/functions_reporting_html.php:2281 +#: ../../include/functions_reporting_html.php:2302 #: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "" @@ -31552,23 +31722,24 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:281 #: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89 -#: ../../godmode/groups/group_list.php:1074 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:1234 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:694 -#: ../../operation/tree.php:463 ../../operation/tree.php:493 +#: ../../godmode/groups/group_list.php:1086 +#: ../../include/functions_inventory.php:310 +#: ../../include/class/Heatmap.class.php:1272 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:465 ../../operation/tree.php:495 #: ../../operation/network/network_report.php:391 msgid "No data found" msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:282 -#: ../../godmode/groups/group_list.php:1075 +#: ../../godmode/groups/group_list.php:1087 msgid "Found groups" msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 -#: ../../operation/agentes/estado_monitores.php:430 +#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421 +#: ../../operation/agentes/estado_monitores.php:427 +#: ../../operation/search_modules.php:302 msgid "Module: " msgstr "" @@ -31971,8 +32142,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:990 -#: ../../include/functions_visual_map_editor.php:791 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 +#: ../../include/functions_visual_map_editor.php:831 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727 msgid "Show statistics" msgstr "" @@ -32036,7 +32207,7 @@ msgstr "" #: ../../operation/agentes/interface_view.functions.php:97 #: ../../operation/agentes/interface_view.functions.php:150 #: ../../operation/agentes/ver_agente.php:1419 -#: ../../operation/agentes/ver_agente.php:1844 +#: ../../operation/agentes/ver_agente.php:1840 msgid "Interfaces" msgstr "" @@ -32061,7 +32232,7 @@ msgid "Please enter adress, for search vlans" msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 -#: ../../godmode/wizards/HostDevices.class.php:1287 +#: ../../godmode/wizards/HostDevices.class.php:1283 msgid "Context" msgstr "" @@ -32104,13 +32275,13 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1689 +#: ../../operation/agentes/pandora_networkmap.view.php:1690 msgid "Could not be updated." msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:451 #: ../../update_manager_client/views/offline.php:78 -#: ../../update_manager_client/views/online.php:94 +#: ../../update_manager_client/views/online.php:96 msgid "Successfully updated." msgstr "" @@ -32126,8 +32297,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:143 -#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125 -#: ../../godmode/events/event_edit_filter.php:243 +#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125 +#: ../../godmode/events/event_edit_filter.php:245 msgid "Not updated. Error updating data" msgstr "" @@ -32197,7 +32368,7 @@ msgid "leased expiration" msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:476 -#: ../../include/class/NetworkMap.class.php:3067 +#: ../../include/class/NetworkMap.class.php:3073 msgid "MAC" msgstr "" @@ -32219,7 +32390,7 @@ msgid "Executing command: %s" msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:554 -#: ../../include/functions_events.php:5965 +#: ../../include/functions_events.php:5970 msgid "Execute again" msgstr "" @@ -32462,8 +32633,8 @@ msgid "Click on the file below to begin." msgstr "" #: ../../update_manager_client/views/offline.php:70 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 +#: ../../update_manager_client/views/online.php:125 +#: ../../update_manager_client/views/online.php:166 msgid "This action will upgrade this console to version " msgstr "" @@ -32472,27 +32643,27 @@ msgid "This action will upgrade all servers to version " msgstr "" #: ../../update_manager_client/views/offline.php:73 -#: ../../update_manager_client/views/online.php:89 +#: ../../update_manager_client/views/online.php:91 msgid "Updating to" msgstr "" #: ../../update_manager_client/views/offline.php:74 -#: ../../update_manager_client/views/online.php:90 +#: ../../update_manager_client/views/online.php:92 msgid "Do you really want to leave our brilliant application?" msgstr "" #: ../../update_manager_client/views/offline.php:75 -#: ../../update_manager_client/views/online.php:91 +#: ../../update_manager_client/views/online.php:93 msgid "There are no updates available" msgstr "" #: ../../update_manager_client/views/offline.php:76 -#: ../../update_manager_client/views/online.php:92 +#: ../../update_manager_client/views/online.php:94 msgid "Searching for updates..." msgstr "" #: ../../update_manager_client/views/offline.php:77 -#: ../../update_manager_client/views/online.php:93 +#: ../../update_manager_client/views/online.php:95 msgid "Package" msgstr "" @@ -32555,16 +32726,16 @@ msgid "" "manager settings." msgstr "" -#: ../../update_manager_client/views/register.php:47 +#: ../../update_manager_client/views/register.php:48 msgid "Register to Warp Update" msgstr "" -#: ../../update_manager_client/views/register.php:54 +#: ../../update_manager_client/views/register.php:55 #, php-format msgid "Keep this %s console up to date with latest updates." msgstr "" -#: ../../update_manager_client/views/register.php:61 +#: ../../update_manager_client/views/register.php:62 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" @@ -32575,34 +32746,34 @@ msgid "" " said database at any time from the Warp update options." msgstr "" -#: ../../update_manager_client/views/register.php:74 +#: ../../update_manager_client/views/register.php:75 msgid "Visit our privacy policy for more information" msgstr "" -#: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1938 +#: ../../update_manager_client/views/register.php:79 +#: ../../include/class/Diagnostics.class.php:1942 msgid "Your email" msgstr "" -#: ../../update_manager_client/views/register.php:97 +#: ../../update_manager_client/views/register.php:98 msgid "OK!" msgstr "" -#: ../../update_manager_client/views/register.php:112 +#: ../../update_manager_client/views/register.php:113 msgid "Are you sure you don't want to use Warp update?" msgstr "" -#: ../../update_manager_client/views/register.php:116 +#: ../../update_manager_client/views/register.php:117 msgid "" "You will need to update your system manually, through source code or RPM\n" " packages to be up to date with latest updates." msgstr "" -#: ../../update_manager_client/views/register.php:208 +#: ../../update_manager_client/views/register.php:209 msgid "Unsuccessful subscription" msgstr "" -#: ../../update_manager_client/views/register.php:213 +#: ../../update_manager_client/views/register.php:214 msgid "Pandora successfully subscribed with UID: " msgstr "" @@ -32610,25 +32781,25 @@ msgstr "" msgid "The latest version of package installed is" msgstr "" -#: ../../update_manager_client/views/online.php:64 +#: ../../update_manager_client/views/online.php:65 msgid "Update to next version" msgstr "" -#: ../../update_manager_client/views/online.php:65 +#: ../../update_manager_client/views/online.php:66 msgid "Update to latest version" msgstr "" -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 +#: ../../update_manager_client/views/online.php:126 +#: ../../update_manager_client/views/online.php:167 msgid "Update to" msgstr "" -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 +#: ../../update_manager_client/views/online.php:147 +#: ../../update_manager_client/views/online.php:151 msgid "Failed to update to " msgstr "" -#: ../../update_manager_client/views/online.php:188 +#: ../../update_manager_client/views/online.php:190 msgid "Failed to update:" msgstr "" @@ -32657,25 +32828,25 @@ msgstr "" msgid "Failed storing uploaded file." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657 msgid "Failed uploading file." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692 msgid "Signatures does not match." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751 #, php-format msgid "Update %s successfully installed." msgstr "" -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754 #, php-format msgid "Failed while updating: %s" msgstr "" @@ -32747,6 +32918,7 @@ msgid "Matrix events" msgstr "" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 +#: ../../godmode/setup/setup_websocket_engine.php:162 msgid "WebService engine has not been started, please check documentation." msgstr "" @@ -32975,7 +33147,7 @@ msgstr "" #: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132 #: ../../godmode/category/category.php:81 #: ../../godmode/category/edit_category.php:92 -#: ../../operation/agentes/ver_agente.php:1934 +#: ../../operation/agentes/ver_agente.php:1930 msgid "Resources" msgstr "" @@ -33025,8 +33197,8 @@ msgid "%s Console URL" msgstr "" #: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 -#: ../../godmode/users/configure_user.php:1029 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1077 #: ../../operation/users/user_edit.php:299 #: ../../operation/users/user_edit.php:338 msgid "API Token" @@ -33085,7 +33257,7 @@ msgid "Show URL" msgstr "" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 -#: ../../godmode/menu.php:478 +#: ../../godmode/menu.php:476 msgid "DB Schema check" msgstr "" @@ -33252,84 +33424,84 @@ msgstr "" msgid "Error querying database node" msgstr "" -#: ../../extensions/agents_modules.php:396 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/reporting/reporting_builder.item_editor.php:2000 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255 msgid "Show module status" msgstr "" -#: ../../extensions/agents_modules.php:397 +#: ../../extensions/agents_modules.php:405 #: ../../godmode/reporting/reporting_builder.item_editor.php:2001 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256 msgid "Show module data" msgstr "" -#: ../../extensions/agents_modules.php:401 +#: ../../extensions/agents_modules.php:409 #: ../../godmode/reporting/reporting_builder.item_editor.php:1996 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265 msgid "Information to be shown" msgstr "" -#: ../../extensions/agents_modules.php:543 +#: ../../extensions/agents_modules.php:551 #: ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "" -#: ../../extensions/agents_modules.php:636 +#: ../../extensions/agents_modules.php:644 msgid "Agent/module view" msgstr "" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Filters " msgstr "" -#: ../../extensions/agents_modules.php:681 +#: ../../extensions/agents_modules.php:690 msgid "Secondary groups and agent subgroups will be taken into account." msgstr "" -#: ../../extensions/agents_modules.php:833 -#: ../../include/functions_reporting.php:3376 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting.php:3385 msgid "There are no agents with modules" msgstr "" -#: ../../extensions/agents_modules.php:848 +#: ../../extensions/agents_modules.php:872 msgid "Previous modules" msgstr "" -#: ../../extensions/agents_modules.php:874 +#: ../../extensions/agents_modules.php:898 msgid "More modules" msgstr "" -#: ../../extensions/agents_modules.php:1030 -#: ../../include/functions_reporting_html.php:2282 +#: ../../extensions/agents_modules.php:1054 +#: ../../include/functions_reporting_html.php:2303 msgid "Orange cell when the module has fired alerts" msgstr "" -#: ../../extensions/agents_modules.php:1032 -#: ../../include/functions_reporting_html.php:2283 +#: ../../extensions/agents_modules.php:1056 +#: ../../include/functions_reporting_html.php:2304 msgid "Red cell when the module has a critical status" msgstr "" -#: ../../extensions/agents_modules.php:1035 -#: ../../include/functions_reporting_html.php:2284 +#: ../../extensions/agents_modules.php:1059 +#: ../../include/functions_reporting_html.php:2305 msgid "Yellow cell when the module has a warning status" msgstr "" -#: ../../extensions/agents_modules.php:1037 -#: ../../include/functions_reporting_html.php:2285 +#: ../../extensions/agents_modules.php:1061 +#: ../../include/functions_reporting_html.php:2306 msgid "Green cell when the module has a normal status" msgstr "" -#: ../../extensions/agents_modules.php:1039 -#: ../../include/functions_reporting_html.php:2286 +#: ../../extensions/agents_modules.php:1063 +#: ../../include/functions_reporting_html.php:2307 msgid "Grey cell when the module has an unknown status" msgstr "" -#: ../../extensions/agents_modules.php:1041 +#: ../../extensions/agents_modules.php:1065 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "" -#: ../../extensions/agents_modules.php:1055 +#: ../../extensions/agents_modules.php:1079 msgid "Agents/Modules view" msgstr "" @@ -33418,7 +33590,7 @@ msgid "Public link" msgstr "" #: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:660 msgid "Last modification" msgstr "" @@ -33427,8 +33599,8 @@ msgid "Copy to clipboard" msgstr "" #: ../../extensions/files_repo/files_repo_list.php:167 -#: ../../include/functions_reporting_html.php:2314 -#: ../../include/functions_reporting_html.php:2318 +#: ../../include/functions_reporting_html.php:2335 +#: ../../include/functions_reporting_html.php:2339 msgid "No items" msgstr "" @@ -33532,7 +33704,7 @@ msgid "Save agent (%s), module (%s) data xml." msgstr "" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:301 msgid "Realtime graphs" msgstr "" @@ -33579,12 +33751,12 @@ msgstr "" msgid "Incremental" msgstr "" -#: ../../extensions/realtime_graphs.php:203 +#: ../../extensions/realtime_graphs.php:199 msgid "Clear graph" msgstr "" -#: ../../extensions/realtime_graphs.php:276 -#: ../../godmode/agentes/module_manager_editor_network.php:44 +#: ../../extensions/realtime_graphs.php:282 +#: ../../godmode/agentes/module_manager_editor_network.php:45 msgid "Use this OID" msgstr "" @@ -33673,8 +33845,8 @@ msgid "No modules for this profile" msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:260 -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:180 msgid "Add modules" msgstr "" @@ -33746,15 +33918,15 @@ msgid "You can find more information at:" msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2270 +#: ../../godmode/agentes/module_manager_editor_common.php:2280 msgid "Please introduce a positive percentage value" msgstr "" -#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/modules/manage_network_components_form_network.php:98 msgid "SNMP Enterprise String" msgstr "" -#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_network.php:193 #: ../../godmode/modules/manage_network_components_form_wizard.php:315 msgid "Name OID" msgstr "" @@ -33762,58 +33934,58 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:106 #: ../../include/class/CredentialStore.class.php:1009 -#: ../../include/class/CredentialStore.class.php:1347 +#: ../../include/class/CredentialStore.class.php:1353 msgid "Namespace" msgstr "" -#: ../../godmode/modules/manage_network_components_form.php:358 +#: ../../godmode/modules/manage_network_components_form.php:361 msgid "Update Network Component" msgstr "" -#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/modules/manage_network_components_form.php:363 msgid "Create Network Component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:289 +#: ../../godmode/modules/manage_network_components.php:290 msgid "Remote component management" msgstr "" -#: ../../godmode/modules/manage_network_components.php:321 +#: ../../godmode/modules/manage_network_components.php:322 #, php-format msgid "" "This node is configured with centralized mode. All remote components are " "read only. Go to %s to manage them." msgstr "" -#: ../../godmode/modules/manage_network_components.php:433 +#: ../../godmode/modules/manage_network_components.php:435 msgid "Could not be created because the component exists" msgstr "" -#: ../../godmode/modules/manage_network_components.php:686 +#: ../../godmode/modules/manage_network_components.php:689 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" -#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:782 msgid "Max/Min" msgstr "" -#: ../../godmode/modules/manage_network_components.php:888 +#: ../../godmode/modules/manage_network_components.php:891 msgid "There are no defined network components" msgstr "" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "" @@ -33928,6 +34100,7 @@ msgstr "" #: ../../godmode/massive/massive_enable_disable_alerts.php:196 #: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../include/class/ModuleTemplates.class.php:1184 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491 msgid "Format" msgstr "" @@ -34011,7 +34184,7 @@ msgstr "" #: ../../godmode/db/db_main.php:108 #: ../../include/class/Diagnostics.class.php:603 -#: ../../include/functions_reporting.php:14740 +#: ../../include/functions_reporting.php:14813 msgid "Total events" msgstr "" @@ -34064,7 +34237,7 @@ msgid "Update group" msgstr "" #: ../../godmode/groups/configure_group.php:95 -#: ../../godmode/groups/group_list.php:1006 +#: ../../godmode/groups/group_list.php:1018 msgid "Create group" msgstr "" @@ -34073,44 +34246,44 @@ msgstr "" msgid "Manage agents group" msgstr "" -#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/groups/configure_group.php:179 msgid "You have not access to the parent." msgstr "" -#: ../../godmode/groups/configure_group.php:218 +#: ../../godmode/groups/configure_group.php:237 msgid "Group Password" msgstr "" -#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/groups/configure_group.php:243 msgid "Enable alert use in this group." msgstr "" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate ACL" msgstr "" -#: ../../godmode/groups/configure_group.php:229 +#: ../../godmode/groups/configure_group.php:248 msgid "Propagate the same ACL security into the child subgroups." msgstr "" -#: ../../godmode/groups/configure_group.php:244 -#: ../../include/functions_events.php:5068 +#: ../../godmode/groups/configure_group.php:263 +#: ../../include/functions_events.php:5073 msgid "Contact" msgstr "" -#: ../../godmode/groups/configure_group.php:244 +#: ../../godmode/groups/configure_group.php:263 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "" -#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/groups/configure_group.php:268 msgid "Information accessible through the _group_other_ macro" msgstr "" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Max agents allowed" msgstr "" -#: ../../godmode/groups/configure_group.php:254 +#: ../../godmode/groups/configure_group.php:273 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" @@ -34128,8 +34301,8 @@ msgid "Groups defined in %s" msgstr "" #: ../../godmode/groups/group_list.php:352 -#: ../../godmode/agentes/module_manager_editor_network.php:172 -#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723 #: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "" @@ -34152,70 +34325,70 @@ msgid "There was a problem creating group" msgstr "" #: ../../godmode/groups/group_list.php:470 -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:543 msgid "Each group must have a different name" msgstr "" #: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:546 msgid "Group must have a name" msgstr "" -#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/group_list.php:538 #: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "" -#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/group_list.php:540 #: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "" -#: ../../godmode/groups/group_list.php:602 +#: ../../godmode/groups/group_list.php:603 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:676 +#: ../../godmode/groups/group_list.php:677 msgid "" "The group has not been deleted in the metaconsole due to an error in the " "node database" msgstr "" -#: ../../godmode/groups/group_list.php:685 +#: ../../godmode/groups/group_list.php:686 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/group_list.php:726 #: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "" -#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/group_list.php:729 #: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "" -#: ../../godmode/groups/group_list.php:735 +#: ../../godmode/groups/group_list.php:736 #, php-format msgid "The group is not empty. It is use in %s." msgstr "" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:775 +#: ../../godmode/groups/group_list.php:1006 msgid "There are no defined groups" msgstr "" -#: ../../godmode/groups/group_list.php:832 +#: ../../godmode/groups/group_list.php:833 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" -#: ../../godmode/groups/group_list.php:958 +#: ../../godmode/groups/group_list.php:970 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "" -#: ../../godmode/groups/group_list.php:964 +#: ../../godmode/groups/group_list.php:976 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -34261,24 +34434,20 @@ msgstr "" msgid "Tactical group view" msgstr "" -#: ../../godmode/groups/tactical.php:115 +#: ../../godmode/groups/tactical.php:114 msgid "Distribution by os" msgstr "" -#: ../../godmode/groups/tactical.php:146 +#: ../../godmode/groups/tactical.php:145 #: ../../include/functions_reporting_html.php:1204 -#: ../../include/functions_reporting_html.php:1419 +#: ../../include/functions_reporting_html.php:1428 msgid "Events by agent" msgstr "" -#: ../../godmode/groups/tactical.php:155 +#: ../../godmode/groups/tactical.php:154 msgid "Alerts and events" msgstr "" -#: ../../godmode/groups/tactical.php:182 -msgid "Ultimo contacto remoto" -msgstr "" - #: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "" @@ -34421,7 +34590,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:90 #: ../../godmode/users/configure_profile.php:389 #: ../../godmode/users/user_list.php:301 -#: ../../godmode/users/configure_user.php:280 +#: ../../godmode/users/configure_user.php:218 msgid "Manage users" msgstr "" @@ -34573,7 +34742,7 @@ msgid "Create Profile" msgstr "" #: ../../godmode/users/configure_profile.php:283 -#: ../../operation/agentes/ver_agente.php:1938 +#: ../../operation/agentes/ver_agente.php:1934 msgid "View agents" msgstr "" @@ -34594,7 +34763,7 @@ msgid "Edit events" msgstr "" #: ../../godmode/users/configure_profile.php:317 -#: ../../operation/events/events.php:1545 +#: ../../operation/events/events.php:1599 msgid "Manage events" msgstr "" @@ -34623,7 +34792,7 @@ msgid "Manage network maps" msgstr "" #: ../../godmode/users/configure_profile.php:354 -#: ../../include/functions_menu.php:571 +#: ../../include/functions_menu.php:573 msgid "View visual console" msgstr "" @@ -34653,36 +34822,36 @@ msgid "Profile name already on use, please, change the name before save" msgstr "" #: ../../godmode/users/user_list.php:351 -#: ../../godmode/users/configure_user.php:115 +#: ../../godmode/users/configure_user.php:885 #, php-format msgid "Deleted user %s" msgstr "" #: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:122 +#: ../../godmode/users/configure_user.php:892 msgid "There was a problem deleting the user" msgstr "" #: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:907 #, php-format msgid "Deleted user %s from metaconsole" msgstr "" #: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/configure_user.php:919 #, php-format msgid "Deleted user %s from %s" msgstr "" #: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/configure_user.php:928 #, php-format msgid "Successfully deleted from %s" msgstr "" #: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/configure_user.php:929 #, php-format msgid "There was a problem deleting the user from %s" msgstr "" @@ -34691,15 +34860,15 @@ msgstr "" msgid "ID user cannot be empty" msgstr "" -#: ../../godmode/users/user_list.php:443 +#: ../../godmode/users/user_list.php:444 msgid "There was a problem disabling user" msgstr "" -#: ../../godmode/users/user_list.php:449 +#: ../../godmode/users/user_list.php:450 msgid "There was a problem enabling user" msgstr "" -#: ../../godmode/users/user_list.php:544 +#: ../../godmode/users/user_list.php:545 #: ../../operation/users/user_edit.php:284 #, php-format msgid "" @@ -34707,235 +34876,253 @@ msgid "" "only. Go to %s to manage it." msgstr "" -#: ../../godmode/users/user_list.php:580 +#: ../../godmode/users/user_list.php:581 msgid "Profile / Group" msgstr "" -#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63 msgid "Administrator" msgstr "" -#: ../../godmode/users/user_list.php:794 +#: ../../godmode/users/user_list.php:795 msgid "Show profiles" msgstr "" -#: ../../godmode/users/user_list.php:812 +#: ../../godmode/users/user_list.php:813 msgid "Other profiles are also assigned." msgstr "" -#: ../../godmode/users/user_list.php:814 +#: ../../godmode/users/user_list.php:815 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." msgstr "" -#: ../../godmode/users/user_list.php:823 -#: ../../include/functions_reporting.php:5140 -#: ../../include/functions_reporting.php:5187 +#: ../../godmode/users/user_list.php:824 +#: ../../include/functions_reporting.php:5149 +#: ../../include/functions_reporting.php:5196 #: ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" -#: ../../godmode/users/user_list.php:935 +#: ../../godmode/users/user_list.php:936 #: ../../operation/users/user_edit_header.php:129 msgid "Edit user" msgstr "" -#: ../../godmode/users/user_list.php:1032 +#: ../../godmode/users/user_list.php:1034 msgid "Create user" msgstr "" -#: ../../godmode/users/user_list.php:1046 -#: ../../godmode/users/configure_user.php:357 +#: ../../godmode/users/user_list.php:1048 +#: ../../godmode/users/configure_user.php:295 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:60 +#: ../../godmode/users/user_management.php:39 +#: ../../godmode/massive/massive_edit_users.php:275 +#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808 +#: ../../operation/users/user_edit.php:470 +#: ../../operation/events/events.php:1525 +msgid "Event list" +msgstr "" + +#: ../../godmode/users/configure_user.php:64 +#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812 +msgid "External link" +msgstr "" + +#: ../../godmode/users/configure_user.php:205 msgid "Update User" msgstr "" -#: ../../godmode/users/configure_user.php:267 +#: ../../godmode/users/configure_user.php:205 msgid "Create User" msgstr "" -#: ../../godmode/users/configure_user.php:284 +#: ../../godmode/users/configure_user.php:222 msgid "User Detail Editor" msgstr "" -#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:391 msgid "User ID cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:456 +#: ../../godmode/users/configure_user.php:399 +msgid "User ID already exists" +msgstr "" + +#: ../../godmode/users/configure_user.php:405 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" -#: ../../godmode/users/configure_user.php:464 +#: ../../godmode/users/configure_user.php:413 msgid "Passwords cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:420 msgid "Passwords didn't match" msgstr "" -#: ../../godmode/users/configure_user.php:478 +#: ../../godmode/users/configure_user.php:427 msgid "The password provided is not valid. Please set another one." msgstr "" -#: ../../godmode/users/configure_user.php:540 +#: ../../godmode/users/configure_user.php:489 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "" -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/configure_user.php:963 +#: ../../godmode/users/configure_user.php:573 +#: ../../godmode/users/configure_user.php:1011 msgid "Profile added successfully" msgstr "" -#: ../../godmode/users/configure_user.php:625 -#: ../../godmode/users/configure_user.php:964 +#: ../../godmode/users/configure_user.php:574 +#: ../../godmode/users/configure_user.php:1012 msgid "Profile cannot be added" msgstr "" -#: ../../godmode/users/configure_user.php:754 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:859 -#: ../../godmode/users/configure_user.php:891 +#: ../../godmode/users/configure_user.php:715 +#: ../../godmode/users/configure_user.php:743 +#: ../../godmode/users/configure_user.php:817 +#: ../../godmode/users/configure_user.php:824 +#: ../../godmode/users/configure_user.php:939 #: ../../operation/users/user_edit.php:216 #: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "" -#: ../../godmode/users/configure_user.php:755 -#: ../../godmode/users/configure_user.php:779 -#: ../../godmode/users/configure_user.php:853 -#: ../../godmode/users/configure_user.php:860 -#: ../../godmode/users/configure_user.php:892 +#: ../../godmode/users/configure_user.php:716 +#: ../../godmode/users/configure_user.php:744 +#: ../../godmode/users/configure_user.php:818 +#: ../../godmode/users/configure_user.php:825 +#: ../../godmode/users/configure_user.php:940 msgid "Error updating user info (no change?)" msgstr "" -#: ../../godmode/users/configure_user.php:784 +#: ../../godmode/users/configure_user.php:749 msgid "Password of the active user is required to perform password change" msgstr "" -#: ../../godmode/users/configure_user.php:786 +#: ../../godmode/users/configure_user.php:751 msgid "Password of active user is not correct" msgstr "" -#: ../../godmode/users/configure_user.php:802 +#: ../../godmode/users/configure_user.php:767 msgid "Passwords does not match" msgstr "" -#: ../../godmode/users/configure_user.php:852 +#: ../../godmode/users/configure_user.php:817 #: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "" -#: ../../godmode/users/configure_user.php:881 +#: ../../godmode/users/configure_user.php:846 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" -#: ../../godmode/users/configure_user.php:1014 +#: ../../godmode/users/configure_user.php:1062 #: ../../operation/users/user_edit.php:306 msgid "" "The API token will be renewed. After this action, the last token you were " "using will not work. Are you sure?" msgstr "" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "" -#: ../../godmode/users/configure_user.php:1030 +#: ../../godmode/users/configure_user.php:1078 #: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "" -#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/configure_user.php:1155 #: ../../godmode/users/user_management.php:178 #: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "" -#: ../../godmode/users/configure_user.php:1109 -#: ../../godmode/users/user_management.php:664 +#: ../../godmode/users/configure_user.php:1173 +#: ../../godmode/users/user_management.php:690 #: ../../godmode/massive/massive_edit_users.php:469 -#: ../../operation/users/user_edit.php:537 +#: ../../operation/users/user_edit.php:530 msgid "The timezone must be that of the associated server." msgstr "" -#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/configure_user.php:1206 #: ../../godmode/users/user_management.php:299 #: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/configure_user.php:1224 #: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/configure_user.php:1234 #: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "" -#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/configure_user.php:1261 #: ../../godmode/users/user_management.php:198 #: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1277 #: ../../godmode/users/user_management.php:206 #: ../../godmode/users/user_management.php:218 #: ../../operation/users/user_edit.php:406 msgid "Phone number" msgstr "" -#: ../../godmode/users/configure_user.php:1229 -#: ../../godmode/users/user_management.php:695 -#: ../../operation/users/user_edit.php:755 +#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/user_management.php:721 +#: ../../operation/users/user_edit.php:752 msgid "Login allowed IP list" msgstr "" -#: ../../godmode/users/configure_user.php:1230 -#: ../../godmode/users/user_management.php:712 -#: ../../operation/users/user_edit.php:756 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/user_management.php:738 +#: ../../operation/users/user_edit.php:753 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." msgstr "" -#: ../../godmode/users/configure_user.php:1269 +#: ../../godmode/users/configure_user.php:1333 msgid "Skin" msgstr "" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1344 msgid "Search custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1358 msgid "Load by default the selected view in custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1300 +#: ../../godmode/users/configure_user.php:1364 msgid "Use global conf" msgstr "" -#: ../../godmode/users/configure_user.php:1305 -#: ../../godmode/users/user_management.php:614 +#: ../../godmode/users/configure_user.php:1369 +#: ../../godmode/users/user_management.php:629 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "" -#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/users/configure_user.php:1370 #: ../../godmode/massive/massive_edit_users.php:270 #: ../../operation/users/user_edit.php:466 msgid "" @@ -34944,114 +35131,103 @@ msgid "" "ver_agente&id_agente=1 to show agent detail view" msgstr "" -#: ../../godmode/users/configure_user.php:1410 +#: ../../godmode/users/configure_user.php:1459 msgid "Metaconsole access" msgstr "" -#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/users/configure_user.php:1495 msgid "Default event filter" msgstr "" -#: ../../godmode/users/configure_user.php:1456 +#: ../../godmode/users/configure_user.php:1509 msgid "eHorus user access enabled" msgstr "" -#: ../../godmode/users/configure_user.php:1464 -#: ../../include/functions_config.php:1820 +#: ../../godmode/users/configure_user.php:1517 +#: ../../include/functions_config.php:1832 msgid "eHorus user" msgstr "" -#: ../../godmode/users/configure_user.php:1473 -#: ../../include/functions_config.php:1824 +#: ../../godmode/users/configure_user.php:1526 +#: ../../include/functions_config.php:1836 msgid "eHorus password" msgstr "" -#: ../../godmode/users/configure_user.php:1502 +#: ../../godmode/users/configure_user.php:1555 msgid "User must be created before activating double authentication." msgstr "" -#: ../../godmode/users/configure_user.php:1529 -#: ../../operation/users/user_edit.php:559 +#: ../../godmode/users/configure_user.php:1582 +#: ../../operation/users/user_edit.php:552 msgid "Show information" msgstr "" -#: ../../godmode/users/configure_user.php:1608 +#: ../../godmode/users/configure_user.php:1662 msgid "Enable agents managment" msgstr "" -#: ../../godmode/users/configure_user.php:1616 +#: ../../godmode/users/configure_user.php:1670 msgid "Enable node access" msgstr "" -#: ../../godmode/users/configure_user.php:1617 +#: ../../godmode/users/configure_user.php:1671 msgid "With this option enabled, the user will can access to nodes console" msgstr "" -#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1901 msgid "yes" msgstr "" -#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/users/configure_user.php:1904 msgid "no" msgstr "" -#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1908 msgid "Please select profile and group" msgstr "" -#: ../../godmode/users/configure_user.php:1870 -#: ../../godmode/users/configure_user.php:1921 +#: ../../godmode/users/configure_user.php:1922 +#: ../../godmode/users/configure_user.php:1973 msgid "This profile is already defined" msgstr "" -#: ../../godmode/users/configure_user.php:1935 +#: ../../godmode/users/configure_user.php:1987 msgid "Deleting last profile will delete this user" msgstr "" -#: ../../godmode/users/configure_user.php:1975 +#: ../../godmode/users/configure_user.php:2027 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" msgstr "" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1256 +#: ../../godmode/users/configure_user.php:2134 +#: ../../operation/users/user_edit.php:1253 msgid "Double autentication information" msgstr "" -#: ../../godmode/users/configure_user.php:2171 -#: ../../operation/users/user_edit.php:1345 +#: ../../godmode/users/configure_user.php:2223 +#: ../../operation/users/user_edit.php:1342 msgid "The double authentication will be deactivated" msgstr "" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1346 +#: ../../godmode/users/configure_user.php:2224 +#: ../../operation/users/user_edit.php:1343 msgid "Deactivate" msgstr "" -#: ../../godmode/users/configure_user.php:2207 -#: ../../operation/users/user_edit.php:1378 +#: ../../godmode/users/configure_user.php:2259 +#: ../../operation/users/user_edit.php:1375 msgid "The double autentication was deactivated successfully" msgstr "" -#: ../../godmode/users/configure_user.php:2210 -#: ../../godmode/users/configure_user.php:2214 -#: ../../operation/users/user_edit.php:1381 -#: ../../operation/users/user_edit.php:1385 +#: ../../godmode/users/configure_user.php:2262 +#: ../../godmode/users/configure_user.php:2266 +#: ../../operation/users/user_edit.php:1378 +#: ../../operation/users/user_edit.php:1382 msgid "There was an error deactivating the double autentication" msgstr "" -#: ../../godmode/users/user_management.php:39 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470 -#: ../../operation/events/events.php:1471 -msgid "Event list" -msgstr "" - -#: ../../godmode/users/user_management.php:43 -msgid "External link" -msgstr "" - #: ../../godmode/users/user_management.php:136 msgid "Profile information" msgstr "" @@ -35091,102 +35267,98 @@ msgid "" "authentication." msgstr "" -#: ../../godmode/users/user_management.php:384 +#: ../../godmode/users/user_management.php:390 msgid "Session time" msgstr "" -#: ../../godmode/users/user_management.php:394 +#: ../../godmode/users/user_management.php:400 msgid "" "This is defined in minutes, If you wish a permanent session should putting " "-1 in this field." msgstr "" -#: ../../godmode/users/user_management.php:399 +#: ../../godmode/users/user_management.php:405 #: ../../godmode/massive/massive_edit_users.php:378 -#: ../../operation/users/user_edit.php:645 +#: ../../operation/users/user_edit.php:642 msgid "Autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:434 +#: ../../godmode/users/user_management.php:440 #: ../../godmode/massive/massive_edit_users.php:418 -#: ../../operation/users/user_edit.php:681 +#: ../../operation/users/user_edit.php:678 msgid "Full list of pages" msgstr "" -#: ../../godmode/users/user_management.php:445 +#: ../../godmode/users/user_management.php:451 msgid "Pages with autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:466 -#: ../../godmode/users/user_management.php:467 +#: ../../godmode/users/user_management.php:472 +#: ../../godmode/users/user_management.php:473 #: ../../godmode/massive/massive_edit_users.php:427 #: ../../godmode/massive/massive_edit_users.php:428 -#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382 -#: ../../operation/users/user_edit.php:690 -#: ../../operation/users/user_edit.php:691 +#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387 +#: ../../operation/users/user_edit.php:687 +#: ../../operation/users/user_edit.php:688 msgid "Push selected pages into autorefresh list" msgstr "" -#: ../../godmode/users/user_management.php:483 -#: ../../godmode/users/user_management.php:484 +#: ../../godmode/users/user_management.php:489 +#: ../../godmode/users/user_management.php:490 #: ../../godmode/massive/massive_edit_users.php:437 #: ../../godmode/massive/massive_edit_users.php:438 -#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394 -#: ../../operation/users/user_edit.php:699 -#: ../../operation/users/user_edit.php:700 +#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399 +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:697 msgid "Pop selected pages out of autorefresh list" msgstr "" -#: ../../godmode/users/user_management.php:530 +#: ../../godmode/users/user_management.php:536 msgid "Autorefresh pages" msgstr "" -#: ../../godmode/users/user_management.php:536 +#: ../../godmode/users/user_management.php:542 msgid "Time for autorefresh" msgstr "" -#: ../../godmode/users/user_management.php:549 +#: ../../godmode/users/user_management.php:555 #: ../../godmode/massive/massive_edit_users.php:454 -#: ../../operation/users/user_edit.php:716 +#: ../../operation/users/user_edit.php:713 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" msgstr "" -#: ../../godmode/users/user_management.php:554 +#: ../../godmode/users/user_management.php:560 msgid "Language and Appearance" msgstr "" -#: ../../godmode/users/user_management.php:576 +#: ../../godmode/users/user_management.php:582 msgid "User color scheme" msgstr "" -#: ../../godmode/users/user_management.php:593 +#: ../../godmode/users/user_management.php:603 #: ../../godmode/massive/massive_edit_users.php:340 -#: ../../operation/users/user_edit.php:574 +#: ../../operation/users/user_edit.php:571 msgid "Event filter" msgstr "" -#: ../../godmode/users/user_management.php:661 -#: ../../include/functions_visual_map_editor.php:313 +#: ../../godmode/users/user_management.php:687 +#: ../../include/functions_visual_map_editor.php:309 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 msgid "Time zone" msgstr "" -#: ../../godmode/users/user_management.php:678 +#: ../../godmode/users/user_management.php:704 msgid "Additional settings" msgstr "" -#: ../../godmode/users/user_management.php:717 +#: ../../godmode/users/user_management.php:743 msgid "Allow all IPs" msgstr "" -#: ../../godmode/users/user_management.php:749 -msgid "Generated automatically with the information provided for the user" -msgstr "" - #: ../../godmode/agentes/agent_template.php:83 -#: ../../include/functions_api.php:15092 +#: ../../include/functions_api.php:15103 msgid "Created by template " msgstr "" @@ -35199,14 +35371,14 @@ msgid "Error adding modules. The following errors already exists: " msgstr "" #: ../../godmode/agentes/agent_template.php:179 -#: ../../include/functions_api.php:15186 +#: ../../include/functions_api.php:15197 msgid "Modules successfully added" msgstr "" #: ../../godmode/agentes/agent_template.php:204 #: ../../godmode/agentes/configurar_agente.php:456 #: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/wizards/HostDevices.class.php:1094 msgid "Module templates" msgstr "" @@ -35217,7 +35389,7 @@ msgid "Assign" msgstr "" #: ../../godmode/agentes/agent_template.php:317 -#: ../../mobile/operation/modules.php:772 +#: ../../mobile/operation/modules.php:804 msgid "No modules" msgstr "" @@ -35236,70 +35408,75 @@ msgid "" "Column number to retrieve from the WQL query result (starting from zero)." msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:161 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug remotely this module" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../godmode/agentes/module_manager_editor_web.php:167 msgid "Debug this module once it has been initialized" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:190 +#: ../../godmode/agentes/module_manager_editor_web.php:193 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:219 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Requests" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:222 +#: ../../godmode/agentes/module_manager_editor_web.php:225 msgid "Agent browser id" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:228 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (login)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:234 msgid "HTTP auth (password)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:245 +#: ../../godmode/agentes/module_manager_editor_web.php:248 msgid "Proxy auth (login)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:249 +#: ../../godmode/agentes/module_manager_editor_web.php:252 msgid "Proxy auth (pass)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:259 msgid "Proxy auth (server)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:260 +#: ../../godmode/agentes/module_manager_editor_web.php:263 msgid "Proxy auth (realm)" msgstr "" -#: ../../godmode/agentes/module_manager_editor_web.php:272 +#: ../../godmode/agentes/module_manager_editor_web.php:275 msgid "There isn't get or post" msgstr "" -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 -#: ../../include/functions_reporting_html.php:1784 +#: ../../godmode/agentes/status_monitor_custom_fields.php:35 +#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186 +msgid "Monitor detail" +msgstr "" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:121 +#: ../../godmode/agentes/status_monitor_custom_fields.php:167 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4020 +#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426 +#: ../../include/functions_reporting_html.php:1793 #: ../../include/functions_treeview.php:310 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560 -#: ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/agentes/estado_generalagente.php:529 -#: ../../operation/inventory/inventory.php:1008 -#: ../../operation/inventory/inventory.php:1302 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../operation/agentes/status_monitor.php:1574 +#: ../../operation/agentes/estado_generalagente.php:500 +#: ../../operation/inventory/inventory.php:1254 msgid "Last status change" msgstr "" -#: ../../godmode/agentes/status_monitor_custom_fields.php:165 +#: ../../godmode/agentes/status_monitor_custom_fields.php:185 msgid "Show monitor detail fields" msgstr "" @@ -35321,15 +35498,15 @@ msgid "Could not be created, because IP already exists" msgstr "" #: ../../godmode/agentes/configurar_agente.php:536 -#: ../../operation/agentes/ver_agente.php:1523 -#: ../../operation/agentes/ver_agente.php:1827 +#: ../../operation/agentes/ver_agente.php:1519 +#: ../../operation/agentes/ver_agente.php:1823 msgid "GIS data" msgstr "" #: ../../godmode/agentes/configurar_agente.php:605 #: ../../godmode/agentes/configurar_agente.php:758 -#: ../../operation/agentes/ver_agente.php:1538 -#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657 +#: ../../operation/agentes/ver_agente.php:1534 +#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "" @@ -35359,12 +35536,12 @@ msgid "Manage agents" msgstr "" #: ../../godmode/agentes/configurar_agente.php:874 -#: ../../godmode/servers/modificar_server.php:350 +#: ../../godmode/servers/modificar_server.php:372 msgid "Conf file deleted successfully" msgstr "" #: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/servers/modificar_server.php:351 +#: ../../godmode/servers/modificar_server.php:373 msgid "Could not delete conf file" msgstr "" @@ -35406,81 +35583,81 @@ msgstr "" msgid "There was a problem updating the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1227 +#: ../../godmode/agentes/configurar_agente.php:1243 msgid "There was a problem loading the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1736 +#: ../../godmode/agentes/configurar_agente.php:1797 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1740 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1744 +#: ../../godmode/agentes/configurar_agente.php:1805 msgid "There was a problem updating module. \"No change\"" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1750 +#: ../../godmode/agentes/configurar_agente.php:1811 msgid "There was a problem updating module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1779 +#: ../../godmode/agentes/configurar_agente.php:1840 msgid "Module successfully updated" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1913 +#: ../../godmode/agentes/configurar_agente.php:1974 msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1917 +#: ../../godmode/agentes/configurar_agente.php:1978 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1923 +#: ../../godmode/agentes/configurar_agente.php:1984 msgid "There was a problem adding module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1952 +#: ../../godmode/agentes/configurar_agente.php:2013 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2106 +#: ../../godmode/agentes/configurar_agente.php:2169 msgid "There was a problem deleting the module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2110 +#: ../../godmode/agentes/configurar_agente.php:2173 msgid "Module deleted succesfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../include/functions_api.php:11217 +#: ../../godmode/agentes/configurar_agente.php:2312 +#: ../../include/functions_api.php:11220 #, php-format msgid "Save by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2267 -#: ../../include/functions_api.php:11218 +#: ../../godmode/agentes/configurar_agente.php:2330 +#: ../../include/functions_api.php:11221 #, php-format msgid "Update by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2283 -#: ../../include/functions_api.php:11219 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../include/functions_api.php:11222 #, php-format msgid "Insert by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2356 -#: ../../godmode/agentes/configurar_agente.php:2372 +#: ../../godmode/agentes/configurar_agente.php:2419 +#: ../../godmode/agentes/configurar_agente.php:2435 msgid "Invalid tab specified" msgstr "" @@ -35564,7 +35741,7 @@ msgid "Error forcing inventory module" msgstr "" #: ../../godmode/agentes/inventory_manager.php:235 -#: ../../include/functions_ui.php:7438 +#: ../../include/functions_ui.php:7515 msgid "Target" msgstr "" @@ -35614,49 +35791,54 @@ msgid "" "content" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "Remote agent configuration" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:692 +#: ../../godmode/agentes/modificar_agente.php:702 msgid "R" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:772 -#: ../../godmode/agentes/module_manager.php:788 +#: ../../godmode/agentes/modificar_agente.php:784 +#: ../../godmode/agentes/module_manager.php:798 msgid "Module in scheduled downtime" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:858 +#: ../../godmode/agentes/modificar_agente.php:870 msgid "Edit remote config" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:905 +#: ../../godmode/agentes/modificar_agente.php:917 msgid "Enable agent" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:907 +#: ../../godmode/agentes/modificar_agente.php:919 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../godmode/agentes/modificar_agente.php:922 msgid "Disable agent" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:924 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:943 +#: ../../godmode/agentes/modificar_agente.php:955 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:965 -#: ../../godmode/agentes/agent_manager.php:1067 -#: ../../godmode/agentes/agent_manager.php:1120 +#: ../../godmode/agentes/modificar_agente.php:977 +#: ../../godmode/agentes/agent_manager.php:1073 +#: ../../godmode/agentes/agent_manager.php:1126 msgid "Delete agent" msgstr "" +#: ../../godmode/agentes/modificar_agente.php:1046 +#: ../../include/class/AgentDeployWizard.class.php:706 +msgid "Deploy agent" +msgstr "" + #: ../../godmode/agentes/agent_conf_gis.php:38 #: ../../operation/agentes/gis_view.php:59 msgid "" @@ -35706,7 +35888,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:66 #: ../../godmode/agentes/planned_downtime.editor.php:79 #: ../../include/functions_reporting_html.php:887 -#: ../../include/functions_reporting_html.php:4891 +#: ../../include/functions_reporting_html.php:4919 msgid "Scheduled Downtime" msgstr "" @@ -35801,7 +35983,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:229 #: ../../godmode/agentes/planned_downtime.editor.php:1574 -#: ../../godmode/agentes/planned_downtime.editor.php:1777 +#: ../../godmode/agentes/planned_downtime.editor.php:1775 msgid "This elements cannot be modified while the downtime is being executed" msgstr "" @@ -35951,12 +36133,12 @@ msgid "Type Periodicity" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1069 -#: ../../include/functions_reporting.php:14923 +#: ../../include/functions_reporting.php:14996 msgid "From day" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1085 -#: ../../include/functions_reporting.php:14924 +#: ../../include/functions_reporting.php:14997 msgid "To day" msgstr "" @@ -35973,14 +36155,14 @@ msgid "To hour" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1152 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 -#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 msgid "Cron from" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1155 -#: ../../godmode/agentes/module_manager_editor_common.php:1088 -#: ../../godmode/agentes/module_manager_editor_common.php:1094 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/agentes/module_manager_editor_common.php:1104 msgid "Cron to" msgstr "" @@ -36024,12 +36206,12 @@ msgstr "" msgid "Add Module:" msgstr "" -#: ../../godmode/agentes/planned_downtime.editor.php:1907 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/agentes/planned_downtime.editor.php:1903 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4948 msgid "Please select a module." msgstr "" -#: ../../godmode/agentes/planned_downtime.editor.php:2046 +#: ../../godmode/agentes/planned_downtime.editor.php:2042 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -36086,12 +36268,12 @@ msgstr "" msgid "Create field" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../godmode/agentes/module_manager_editor_network.php:311 #: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:482 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -36099,13 +36281,13 @@ msgid "" "(\\")" msgstr "" -#: ../../godmode/agentes/module_manager_editor_network.php:536 +#: ../../godmode/agentes/module_manager_editor_network.php:541 msgid "Windows remote" msgstr "" #: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/agentes/agent_manager.php:744 -#: ../../godmode/massive/massive_edit_agents.php:1014 +#: ../../godmode/agentes/agent_manager.php:748 +#: ../../godmode/massive/massive_edit_agents.php:1031 msgid "Agent icon" msgstr "" @@ -36115,7 +36297,7 @@ msgstr "" #: ../../godmode/agentes/agent_manager.php:407 #: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../include/functions_config.php:398 msgid "Unique IP" msgstr "" @@ -36140,64 +36322,64 @@ msgstr "" msgid "Primary group" msgstr "" -#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/agentes/agent_manager.php:677 msgid "Cascade protection modules" msgstr "" -#: ../../godmode/agentes/agent_manager.php:689 -#: ../../godmode/massive/massive_edit_agents.php:891 +#: ../../godmode/agentes/agent_manager.php:693 +#: ../../godmode/massive/massive_edit_agents.php:908 msgid "Learning mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:699 -#: ../../godmode/massive/massive_edit_agents.php:902 +#: ../../godmode/agentes/agent_manager.php:703 +#: ../../godmode/massive/massive_edit_agents.php:919 msgid "Normal mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:709 -#: ../../godmode/massive/massive_edit_agents.php:913 +#: ../../godmode/agentes/agent_manager.php:713 +#: ../../godmode/massive/massive_edit_agents.php:930 msgid "Autodisable mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:718 -#: ../../godmode/massive/massive_edit_agents.php:879 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../godmode/massive/massive_edit_agents.php:896 msgid "Module definition" msgstr "" -#: ../../godmode/agentes/agent_manager.php:730 +#: ../../godmode/agentes/agent_manager.php:734 msgid "Cascade protection services" msgstr "" -#: ../../godmode/agentes/agent_manager.php:737 +#: ../../godmode/agentes/agent_manager.php:741 msgid "Update new GIS data" msgstr "" -#: ../../godmode/agentes/agent_manager.php:809 +#: ../../godmode/agentes/agent_manager.php:817 msgid "URL Address" msgstr "" -#: ../../godmode/agentes/agent_manager.php:815 +#: ../../godmode/agentes/agent_manager.php:823 msgid "Disabled mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:892 -#: ../../godmode/massive/massive_edit_agents.php:1128 +#: ../../godmode/agentes/agent_manager.php:900 +#: ../../godmode/massive/massive_edit_agents.php:1144 msgid "Safe operation mode" msgstr "" -#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/agentes/agent_manager.php:975 msgid "Link text:" msgstr "" -#: ../../godmode/agentes/agent_manager.php:980 +#: ../../godmode/agentes/agent_manager.php:986 msgid "Link URL:" msgstr "" -#: ../../godmode/agentes/agent_manager.php:1121 +#: ../../godmode/agentes/agent_manager.php:1127 msgid "This action is not reversible. Are you sure" msgstr "" -#: ../../godmode/agentes/agent_manager.php:1182 +#: ../../godmode/agentes/agent_manager.php:1188 msgid "Secondary group cannot be primary too." msgstr "" @@ -36290,86 +36472,86 @@ msgid "Warning threshold" msgstr "" #: ../../godmode/agentes/module_manager_editor_common.php:448 -#: ../../godmode/agentes/module_manager_editor_common.php:531 +#: ../../godmode/agentes/module_manager_editor_common.php:536 msgid "Min / Max" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:530 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:741 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Identification and Categorization" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:944 +#: ../../godmode/agentes/module_manager_editor_common.php:954 msgid "Module parent" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1004 msgid "Tags from policy" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 msgid "Execution interval" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1111 msgid "Thresholds and state changes" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1119 +#: ../../godmode/agentes/module_manager_editor_common.php:1129 msgid "Dynamic Threshold Interval" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1172 +#: ../../godmode/agentes/module_manager_editor_common.php:1182 msgid "Two Tailed" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1323 +#: ../../godmode/agentes/module_manager_editor_common.php:1333 msgid "Data and their processing" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1353 +#: ../../godmode/agentes/module_manager_editor_common.php:1363 msgid "Notifications and alerts" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1357 +#: ../../godmode/agentes/module_manager_editor_common.php:1367 msgid "Not needed" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1403 +#: ../../godmode/agentes/module_manager_editor_common.php:1413 msgid "Cascade Protection Services" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1486 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 +#: ../../godmode/agentes/module_manager_editor_common.php:1496 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 msgid "Direct" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1487 -#: ../../godmode/agentes/module_manager_editor_common.php:1620 -#: ../../include/functions_reporting_html.php:4132 -#: ../../include/functions_reporting_html.php:4226 -#: ../../include/functions_reporting_html.php:4306 -#: ../../include/functions_reporting_html.php:4315 -#: ../../include/functions_reporting_html.php:4453 -#: ../../include/functions_reporting_html.php:4462 -#: ../../include/functions_reporting_html.php:4788 -#: ../../include/functions_reporting_html.php:4794 +#: ../../godmode/agentes/module_manager_editor_common.php:1497 +#: ../../godmode/agentes/module_manager_editor_common.php:1630 +#: ../../include/functions_reporting_html.php:4160 +#: ../../include/functions_reporting_html.php:4254 +#: ../../include/functions_reporting_html.php:4334 +#: ../../include/functions_reporting_html.php:4343 +#: ../../include/functions_reporting_html.php:4481 +#: ../../include/functions_reporting_html.php:4490 +#: ../../include/functions_reporting_html.php:4816 +#: ../../include/functions_reporting_html.php:4822 msgid "Failover" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1489 +#: ../../godmode/agentes/module_manager_editor_common.php:1499 msgid "Rel. type" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1511 +#: ../../godmode/agentes/module_manager_editor_common.php:1521 msgid "Add relationship" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:1537 +#: ../../godmode/agentes/module_manager_editor_common.php:1547 msgid "Changes" msgstr "" @@ -36398,7 +36580,7 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" #: ../../godmode/agentes/module_manager.php:619 -#: ../../include/ajax/module.php:999 +#: ../../include/ajax/module.php:1022 msgid "P" msgstr "" @@ -36406,42 +36588,43 @@ msgstr "" msgid "S" msgstr "" -#: ../../godmode/agentes/module_manager.php:836 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 +#: ../../godmode/agentes/module_manager.php:846 +#: ../../godmode/agentes/module_manager.php:854 +#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095 msgid "Adopted" msgstr "" -#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:986 msgid "Normalize" msgstr "" -#: ../../godmode/agentes/module_manager.php:985 +#: ../../godmode/agentes/module_manager.php:999 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "" -#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/agentes/module_manager.php:1034 #: ../../godmode/reporting/map_builder.php:485 #: ../../godmode/reporting/map_builder.php:502 -#: ../../operation/agentes/datos_agente.php:295 +#: ../../include/ajax/module.php:609 +#: ../../operation/agentes/datos_agente.php:297 msgid "No available data to show" msgstr "" -#: ../../godmode/agentes/module_manager.php:1037 +#: ../../godmode/agentes/module_manager.php:1051 #: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "" -#: ../../godmode/agentes/module_manager.php:1081 +#: ../../godmode/agentes/module_manager.php:1095 msgid "Select module type" msgstr "" -#: ../../godmode/agentes/module_manager.php:1104 +#: ../../godmode/agentes/module_manager.php:1119 msgid "Get more modules on Monitoring Library" msgstr "" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1260 msgid "" "This module has children modules.The following modules will also be deleted: " msgstr "" @@ -36469,7 +36652,7 @@ msgid "Item list" msgstr "" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Max. values" msgstr "" @@ -36495,97 +36678,153 @@ msgstr "" msgid "There are no defined filters" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 +#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:78 msgid "Add filter" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:181 -#: ../../operation/netflow/nf_live_view.php:261 +#: ../../godmode/netflow/nf_edit_form.php:224 +#: ../../operation/netflow/nf_live_view.php:270 msgid "Src Ip Address" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../operation/netflow/nf_live_view.php:262 +#: ../../godmode/netflow/nf_edit_form.php:225 +#: ../../operation/netflow/nf_live_view.php:271 msgid "Dst Ip Address" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:183 -#: ../../godmode/netflow/nf_edit_form.php:314 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/netflow/nf_edit_form.php:359 +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../operation/netflow/nf_live_view.php:330 msgid "Src Port" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:184 -#: ../../godmode/netflow/nf_edit_form.php:302 -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:227 +#: ../../godmode/netflow/nf_edit_form.php:347 +#: ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Dst Port" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/netflow/nf_edit_form.php:306 msgid "Aggregate by" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:278 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:323 +#: ../../operation/netflow/nf_live_view.php:303 msgid "Dst Ip" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:286 -#: ../../operation/netflow/nf_live_view.php:294 +#: ../../godmode/netflow/nf_edit_form.php:331 +#: ../../operation/netflow/nf_live_view.php:303 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" "
25.46.157.214,160.253.135.249" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:290 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:335 +#: ../../operation/netflow/nf_live_view.php:311 msgid "Src Ip" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:298 -#: ../../operation/netflow/nf_live_view.php:302 +#: ../../godmode/netflow/nf_edit_form.php:343 +#: ../../operation/netflow/nf_live_view.php:311 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:310 -#: ../../operation/netflow/nf_live_view.php:313 +#: ../../godmode/netflow/nf_edit_form.php:355 +#: ../../operation/netflow/nf_live_view.php:322 msgid "" "Destination port. A comma separated list of destination ports. If we leave " "the field blank, will show all ports. Example filter by ports 80 and 22:" "
80,22" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:322 -#: ../../operation/netflow/nf_live_view.php:321 +#: ../../godmode/netflow/nf_edit_form.php:367 +#: ../../operation/netflow/nf_live_view.php:330 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" -#: ../../godmode/netflow/nf_edit_form.php:327 +#: ../../godmode/netflow/nf_edit_form.php:372 msgid "Advanced filters" msgstr "" +#: ../../godmode/netflow/nf_edit_form.php:380 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "Enable Netflow monitoring" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:389 +#: ../../operation/netflow/nf_live_view.php:377 +msgid "" +"Allows you to create an agent that monitors the traffic volume of this " +"filter. It also creates a module that measures if the traffic of any IP of " +"this filter exceeds a certain threshold. A text type module will be created " +"with the traffic rate for each IP within this filter every five minutes (the " +"10 IP's with the most traffic). Only available for Enterprise version." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:395 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:403 +#: ../../operation/netflow/nf_live_view.php:391 +msgid "Netflow monitoring interval in secs." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:407 +#: ../../operation/netflow/nf_live_view.php:401 +msgid "Maximum traffic value of the filter" +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:415 +#: ../../operation/netflow/nf_live_view.php:401 +#, php-format +msgid "" +"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is " +"then used to calculate the % of maximum traffic per IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:421 +#: ../../operation/netflow/nf_live_view.php:415 +#, php-format +msgid "CRITICAL threshold for the maximum % of traffic for an IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:431 +#: ../../operation/netflow/nf_live_view.php:415 +msgid "" +"If this % is exceeded by any IP within the filter, a CRITICAL status will be " +"generated." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:435 +#, php-format +msgid "WARNING threshold for the maximum % of traffic for an IP." +msgstr "" + +#: ../../godmode/netflow/nf_edit_form.php:445 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"If this % is exceeded by any IP within the filter, a WARNING status will be " +"generated." +msgstr "" + #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -msgid "SMNP" -msgstr "" - #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "" @@ -36700,9 +36939,9 @@ msgid "Custom Value/Enterprise String" msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1908 -#: ../../include/functions_reporting_html.php:5373 -#: ../../include/functions_reporting_html.php:5495 -#: ../../include/functions_treeview.php:441 +#: ../../include/functions_reporting_html.php:5401 +#: ../../include/functions_reporting_html.php:5523 +#: ../../include/functions_treeview.php:445 msgid "Times fired" msgstr "" @@ -36722,7 +36961,7 @@ msgstr "" msgid "Do you want delete the selected alerts?" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:2355 +#: ../../godmode/snmpconsole/snmp_alert.php:2343 msgid "Add action " msgstr "" @@ -36809,151 +37048,151 @@ msgstr "" msgid "Private Enterprise Numbers" msgstr "" -#: ../../godmode/menu.php:183 +#: ../../godmode/menu.php:182 msgid "Remote components" msgstr "" -#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "" -#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "" -#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "" -#: ../../godmode/menu.php:234 +#: ../../godmode/menu.php:233 msgid "Event filters" msgstr "" -#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95 #: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "" -#: ../../godmode/menu.php:270 +#: ../../godmode/menu.php:268 msgid "List of Alerts" msgstr "" -#: ../../godmode/menu.php:285 +#: ../../godmode/menu.php:283 msgid "Special days list" msgstr "" -#: ../../godmode/menu.php:290 +#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267 msgid "SNMP alerts" msgstr "" -#: ../../godmode/menu.php:307 +#: ../../godmode/menu.php:305 msgid "Manage servers" msgstr "" -#: ../../godmode/menu.php:314 +#: ../../godmode/menu.php:312 msgid "Manage consoles" msgstr "" -#: ../../godmode/menu.php:325 +#: ../../godmode/menu.php:323 msgid "Register Plugin" msgstr "" -#: ../../godmode/menu.php:351 +#: ../../godmode/menu.php:349 #: ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "" -#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:296 msgid "Sflow" msgstr "" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191 +#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191 #: ../../godmode/setup/setup.php:302 -#: ../../operation/agentes/ver_agente.php:1623 -#: ../../operation/agentes/ver_agente.php:1897 +#: ../../operation/agentes/ver_agente.php:1619 +#: ../../operation/agentes/ver_agente.php:1893 msgid "eHorus" msgstr "" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179 +#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179 #: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681 msgid "Integria IMS" msgstr "" -#: ../../godmode/menu.php:392 +#: ../../godmode/menu.php:390 msgid "Websocket Engine" msgstr "" -#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238 +#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238 #: ../../godmode/setup/setup.php:336 -#: ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1914 +#: ../../operation/agentes/ver_agente.php:1709 +#: ../../operation/agentes/ver_agente.php:1910 msgid "External Tools" msgstr "" -#: ../../godmode/menu.php:398 +#: ../../godmode/menu.php:396 msgid "Welcome Tips" msgstr "" -#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 +#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "" -#: ../../godmode/menu.php:430 +#: ../../godmode/menu.php:428 msgid "Diagnostic info" msgstr "" -#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 +#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "" -#: ../../godmode/menu.php:444 +#: ../../godmode/menu.php:442 msgid "DB Schema Check" msgstr "" -#: ../../godmode/menu.php:447 +#: ../../godmode/menu.php:445 msgid "DB Interface" msgstr "" -#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 -msgid "Accoustic console setup" +#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230 +msgid "Acoustic console setup" msgstr "" -#: ../../godmode/menu.php:533 +#: ../../godmode/menu.php:531 msgid "Extension manager view" msgstr "" -#: ../../godmode/menu.php:569 +#: ../../godmode/menu.php:567 #: ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:572 msgid "Update offline" msgstr "" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:575 msgid "Update online" msgstr "" -#: ../../godmode/menu.php:583 +#: ../../godmode/menu.php:581 msgid "Warp journal" msgstr "" -#: ../../godmode/menu.php:592 +#: ../../godmode/menu.php:590 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "" -#: ../../godmode/menu.php:599 +#: ../../godmode/menu.php:597 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 @@ -37252,10 +37491,10 @@ msgstr "" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:139 -#: ../../godmode/alerts/alert_templates.php:188 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/alert_templates.php:142 +#: ../../godmode/alerts/alert_templates.php:192 +#: ../../godmode/alerts/alert_templates.php:215 +#: ../../godmode/alerts/alert_templates.php:236 msgid "Alert templates" msgstr "" @@ -37277,7 +37516,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 #: ../../include/functions_visual_map.php:2568 -#: ../../include/functions_visual_map.php:2914 +#: ../../include/functions_visual_map.php:2917 msgid "No agents selected" msgstr "" @@ -37365,29 +37604,29 @@ msgstr "" #: ../../godmode/massive/massive_edit_users.php:209 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:12397 +#: ../../include/functions_reporting.php:12470 #: ../../operation/search_results.php:94 msgid "Users" msgstr "" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:646 +#: ../../operation/users/user_edit.php:643 msgid "This will activate autorefresh in selected pages" msgstr "" #: ../../godmode/massive/massive_edit_users.php:443 -#: ../../operation/users/user_edit.php:705 +#: ../../operation/users/user_edit.php:702 msgid "List of pages with autorefresh" msgstr "" #: ../../godmode/massive/massive_edit_users.php:452 -#: ../../operation/users/user_edit.php:714 +#: ../../operation/users/user_edit.php:711 msgid "Time autorefresh" msgstr "" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:566 +#: ../../operation/agentes/alerts_status.php:576 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "" @@ -37503,63 +37742,63 @@ msgstr "" msgid "Configuration files cannot be deleted" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:382 +#: ../../godmode/massive/massive_edit_agents.php:399 #, php-format msgid "Agents updated successfully (%d)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:397 +#: ../../godmode/massive/massive_edit_agents.php:414 #, php-format msgid "Agents cannot be updated (%d), ids (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:429 #, php-format msgid "Agent ID: %s cannot be updated custom fields (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_edit_agents.php:449 #, php-format msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:668 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Cascade protection" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:940 +#: ../../godmode/massive/massive_edit_agents.php:957 msgid "" "If the remote configuration is enabled, it will also go into standby mode " "when disabling it." msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../godmode/massive/massive_edit_agents.php:970 #: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:969 +#: ../../godmode/massive/massive_edit_agents.php:986 msgid "Delete available remote configurations" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:1042 msgid "Without status" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../godmode/massive/massive_edit_agents.php:1069 #: ../../include/lib/Dashboard/Widgets/maps_status.php:371 msgid "Bad" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1072 +#: ../../godmode/massive/massive_edit_agents.php:1089 msgid "Ignore new GIS data:" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1110 +#: ../../godmode/massive/massive_edit_agents.php:1127 msgid "The agent still runs but the alerts and events will be stop" msgstr "" -#: ../../godmode/massive/massive_edit_agents.php:1130 +#: ../../godmode/massive/massive_edit_agents.php:1146 #, php-format msgid "" "This mode allow %s to disable all modules of this agent while the selected " @@ -37607,15 +37846,11 @@ msgid "Error updating the modules (maybe there was no field to update)" msgstr "" #: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:423 msgid "Filter agents" msgstr "" -#: ../../godmode/massive/massive_edit_modules.php:811 -msgid "SMNP community" -msgstr "" - -#: ../../godmode/consoles/consoles.php:59 +#: ../../godmode/consoles/consoles.php:67 msgid "" "If you want to have your consoles registered, you must define them by " "editing config.php in each individual console and wait for cron to run in " @@ -37653,7 +37888,7 @@ msgid "Hide" msgstr "" #: ../../godmode/alerts/alert_actions.php:79 -#: ../../include/functions_reporting.php:3226 +#: ../../include/functions_reporting.php:3235 msgid "Alert actions" msgstr "" @@ -37708,12 +37943,12 @@ msgid "" "no other action is executed" msgstr "" -#: ../../godmode/alerts/alert_list.list.php:1061 +#: ../../godmode/alerts/alert_list.list.php:1060 msgid "View alert advanced details" msgstr "" -#: ../../godmode/alerts/alert_list.list.php:1081 -#: ../../include/functions_reporting_html.php:3441 +#: ../../godmode/alerts/alert_list.list.php:1080 +#: ../../include/functions_reporting_html.php:3469 msgid "No alerts defined" msgstr "" @@ -37753,12 +37988,12 @@ msgid "Alert commands" msgstr "" #: ../../godmode/alerts/alert_commands.php:657 -#: ../../include/functions_alerts.php:2659 +#: ../../include/functions_alerts.php:2660 msgid "No name specified" msgstr "" #: ../../godmode/alerts/alert_commands.php:661 -#: ../../include/functions_alerts.php:2654 +#: ../../include/functions_alerts.php:2655 msgid "No command specified" msgstr "" @@ -37770,20 +38005,20 @@ msgstr "" msgid "No alert commands configured" msgstr "" -#: ../../godmode/alerts/alert_templates.php:273 +#: ../../godmode/alerts/alert_templates.php:277 #, php-format msgid "" "This node is configured with centralized mode. All alert templates " "information is read only. Go to %s to manage it." msgstr "" -#: ../../godmode/alerts/alert_templates.php:438 +#: ../../godmode/alerts/alert_templates.php:442 msgid "" "You cannot edit this alert template, You don't have the permission to edit " "All group." msgstr "" -#: ../../godmode/alerts/alert_templates.php:505 +#: ../../godmode/alerts/alert_templates.php:509 msgid "No alert templates defined" msgstr "" @@ -37800,6 +38035,12 @@ msgstr "" msgid "Create Command" msgstr "" +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "" +"An alert action is executed only once within this time interval, regardless " +"of how many times the alert is triggered." +msgstr "" + #: ../../godmode/alerts/configure_alert_action.php:320 msgid "Triggering" msgstr "" @@ -37827,7 +38068,7 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:104 #: ../../godmode/alerts/configure_alert_template.php:135 #: ../../godmode/alerts/configure_alert_template.php:174 -#: ../../include/functions_menu.php:569 +#: ../../include/functions_menu.php:571 msgid "Configure alert template" msgstr "" @@ -37852,6 +38093,12 @@ msgstr "" msgid "No template name specified" msgstr "" +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "" +"Reset the alert counter within the configured period if there is no manual " +"recovery or validation of the alert." +msgstr "" + #: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those " @@ -37893,7 +38140,7 @@ msgid "No wizard" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1266 -#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547 msgid "The alert would fire when the value matches " msgstr "" @@ -37903,17 +38150,17 @@ msgid "The alert would fire when the value doesn\\'t match %s" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1268 -#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493 +#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536 msgid "The alert would fire when the value is " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1269 -#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541 msgid "The alert would fire when the value is not " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1270 -#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559 msgid "" "The alert would fire when the value is between and " "" @@ -37936,12 +38183,12 @@ msgid "The alert would fire when the value is above " msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1274 -#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578 msgid "The alert would fire when the module is in warning status" msgstr "" #: ../../godmode/alerts/configure_alert_template.php:1275 -#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583 msgid "The alert would fire when the module is in critical status" msgstr "" @@ -37988,12 +38235,12 @@ msgstr "" msgid "Stand by" msgstr "" -#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550 msgid "" "The alert would fire when the value doesn't match " msgstr "" -#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562 msgid "" "The alert would fire when the value is not between " "and " @@ -38074,6 +38321,10 @@ msgstr "" msgid "Create Template" msgstr "" +#: ../../godmode/alerts/alert_list.builder.php:169 +msgid "It takes precedence over the action's threshold configuration." +msgstr "" + #: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "" @@ -38107,12 +38358,12 @@ msgid "Licence" msgstr "" #: ../../godmode/setup/license.php:158 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Customer key" msgstr "" #: ../../godmode/setup/license.php:183 -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Platform Limit" msgstr "" @@ -38128,22 +38379,22 @@ msgid "modules" msgstr "" #: ../../godmode/setup/license.php:196 -#: ../../include/class/Diagnostics.class.php:1187 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count" msgstr "" #: ../../godmode/setup/license.php:209 -#: ../../include/class/Diagnostics.class.php:1191 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (enabled: items)" msgstr "" #: ../../godmode/setup/license.php:222 -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1199 msgid "Current Platform Count (disabled: items)" msgstr "" #: ../../godmode/setup/license.php:235 -#: ../../include/class/Diagnostics.class.php:1199 +#: ../../include/class/Diagnostics.class.php:1203 msgid "License Mode" msgstr "" @@ -38152,7 +38403,7 @@ msgid "NMS" msgstr "" #: ../../godmode/setup/license.php:274 -#: ../../include/class/Diagnostics.class.php:1211 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Licensed to" msgstr "" @@ -38202,40 +38453,44 @@ msgstr "" msgid "Site news management" msgstr "" -#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 +#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "" -#: ../../godmode/setup/news.php:234 +#: ../../godmode/setup/news.php:238 msgid "Modal screen" msgstr "" -#: ../../godmode/setup/news.php:247 +#: ../../godmode/setup/news.php:251 msgid "Expire" msgstr "" -#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 +#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357 msgid "Expiration" msgstr "" -#: ../../godmode/setup/news.php:344 +#: ../../godmode/setup/news.php:348 msgid "There are no defined news" msgstr "" -#: ../../godmode/setup/news.php:351 -#: ../../operation/agentes/estado_generalagente.php:749 +#: ../../godmode/setup/news.php:355 +#: ../../operation/agentes/estado_generalagente.php:718 msgid "Author" msgstr "" -#: ../../godmode/setup/news.php:371 +#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216 +msgid "Welcome to Pandora FMS Console" +msgstr "" + +#: ../../godmode/setup/news.php:370 msgid "Modal" msgstr "" -#: ../../godmode/setup/news.php:373 +#: ../../godmode/setup/news.php:372 msgid "Board" msgstr "" -#: ../../godmode/setup/news.php:384 +#: ../../godmode/setup/news.php:383 msgid "Expired" msgstr "" @@ -38264,7 +38519,7 @@ msgid "Pandora Websocket Engine" msgstr "" #: ../../godmode/setup/setup.php:344 -#: ../../include/class/TipsWindow.class.php:493 +#: ../../include/class/TipsWindow.class.php:505 msgid "Create tip" msgstr "" @@ -38281,7 +38536,7 @@ msgid "Correct update the setup options" msgstr "" #: ../../godmode/setup/setup_ehorus.php:67 -#: ../../include/functions_config.php:1812 +#: ../../include/functions_config.php:1824 msgid "Enable eHorus" msgstr "" @@ -38302,6 +38557,17 @@ msgstr "" msgid "Request timeout" msgstr "" +#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_integria.php:665 +msgid "Connection its OK" +msgstr "" + +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/setup_integria.php:652 +msgid "Test connection" +msgstr "" + #: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "" @@ -38343,24 +38609,24 @@ msgstr "" #: ../../godmode/setup/setup_ehorus.php:297 #: ../../godmode/setup/setup_integria.php:825 #: ../../godmode/setup/setup_integria.php:906 -#: ../../operation/users/user_edit.php:1420 -#: ../../operation/users/user_edit.php:1498 +#: ../../operation/users/user_edit.php:1417 +#: ../../operation/users/user_edit.php:1495 msgid "Empty user or password" msgstr "" #: ../../godmode/setup/setup_ehorus.php:298 #: ../../godmode/setup/setup_integria.php:826 #: ../../godmode/setup/setup_integria.php:907 -#: ../../operation/users/user_edit.php:1421 -#: ../../operation/users/user_edit.php:1499 +#: ../../operation/users/user_edit.php:1418 +#: ../../operation/users/user_edit.php:1496 msgid "User not found" msgstr "" #: ../../godmode/setup/setup_ehorus.php:299 #: ../../godmode/setup/setup_integria.php:827 #: ../../godmode/setup/setup_integria.php:908 -#: ../../operation/users/user_edit.php:1422 -#: ../../operation/users/user_edit.php:1500 +#: ../../operation/users/user_edit.php:1419 +#: ../../operation/users/user_edit.php:1497 msgid "Invalid password" msgstr "" @@ -38370,55 +38636,53 @@ msgid "Data storage path" msgstr "" #: ../../godmode/setup/setup_sflow.php:50 -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1540 -#: ../../include/functions_config.php:1583 +#: ../../include/functions_config.php:1595 msgid "Daemon interval" msgstr "" #: ../../godmode/setup/setup_sflow.php:55 -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:1544 -#: ../../include/functions_config.php:1587 +#: ../../godmode/setup/setup_netflow.php:51 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 msgid "Daemon binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:60 -#: ../../godmode/setup/setup_netflow.php:60 -#: ../../include/functions_config.php:1548 -#: ../../include/functions_config.php:1591 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1560 +#: ../../include/functions_config.php:1603 msgid "Nfdump binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:65 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1552 -#: ../../include/functions_config.php:1595 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1564 +#: ../../include/functions_config.php:1607 msgid "Nfexpire binary path" msgstr "" #: ../../godmode/setup/setup_sflow.php:70 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1556 -#: ../../include/functions_config.php:1599 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 msgid "Maximum chart resolution" msgstr "" #: ../../godmode/setup/setup_sflow.php:80 -#: ../../include/functions_config.php:1607 +#: ../../include/functions_config.php:1619 msgid "Sflow max lifetime" msgstr "" #: ../../godmode/setup/setup_sflow.php:84 -#: ../../godmode/setup/setup_netflow.php:84 -#: ../../operation/netflow/nf_live_view.php:339 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../operation/netflow/nf_live_view.php:348 msgid "IP address resolution can take a lot of time" msgstr "" #: ../../godmode/setup/setup_sflow.php:86 -#: ../../godmode/setup/setup_netflow.php:86 -#: ../../include/functions_config.php:1568 -#: ../../include/functions_config.php:1611 +#: ../../godmode/setup/setup_netflow.php:82 +#: ../../include/functions_config.php:1580 +#: ../../include/functions_config.php:1623 msgid "Name resolution for IP address" msgstr "" @@ -38435,7 +38699,7 @@ msgid "Bind port" msgstr "" #: ../../godmode/setup/setup_websocket_engine.php:71 -#: ../../include/functions_config.php:1964 +#: ../../include/functions_config.php:1976 msgid "WebSocket proxy url" msgstr "" @@ -38446,11 +38710,11 @@ msgid "" "only. Go to %s to manage them." msgstr "" -#: ../../godmode/setup/os.list.php:163 +#: ../../godmode/setup/os.list.php:162 msgid "There are no defined operating systems" msgstr "" -#: ../../godmode/setup/os.list.php:170 +#: ../../godmode/setup/os.list.php:169 msgid "Create OS" msgstr "" @@ -38536,9 +38800,9 @@ msgstr "" #: ../../godmode/setup/gis_step_2.php:254 #: ../../godmode/reporting/visual_console_builder.elements.php:199 -#: ../../include/functions_visual_map_editor.php:1385 -#: ../../include/functions_visual_map.php:4200 -#: ../../operation/visual_console/view.php:316 +#: ../../include/functions_visual_map_editor.php:1443 +#: ../../include/functions_visual_map.php:4209 +#: ../../operation/visual_console/view.php:318 msgid "Static Image" msgstr "" @@ -38587,24 +38851,24 @@ msgid "Corners of the area of the image" msgstr "" #: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1961 +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 msgid "Left" msgstr "" #: ../../godmode/setup/gis_step_2.php:371 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 msgid "Bottom" msgstr "" #: ../../godmode/setup/gis_step_2.php:378 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../include/rest-api/models/VisualConsole/Item.php:1963 msgid "Right" msgstr "" #: ../../godmode/setup/gis_step_2.php:385 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../include/rest-api/models/VisualConsole/Item.php:1962 msgid "Top" msgstr "" @@ -38699,7 +38963,7 @@ msgid "Integria IMS API is not reachable" msgstr "" #: ../../godmode/setup/setup_integria.php:262 -#: ../../include/functions_config.php:1850 +#: ../../include/functions_config.php:1862 msgid "Enable Integria IMS" msgstr "" @@ -38770,272 +39034,272 @@ msgstr "" msgid "Unsucessful save the snmp translation." msgstr "" -#: ../../godmode/setup/setup_netflow.php:80 -#: ../../include/functions_config.php:1564 +#: ../../godmode/setup/setup_netflow.php:76 +#: ../../include/functions_config.php:1576 msgid "Netflow max lifetime" msgstr "" -#: ../../godmode/setup/setup_visuals.php:108 +#: ../../godmode/setup/setup_visuals.php:112 msgid "Click to display lateral menus" msgstr "" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:124 msgid "Paginated module view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:152 -#: ../../include/functions_config.php:1347 +#: ../../godmode/setup/setup_visuals.php:156 +#: ../../include/functions_config.php:1363 msgid "Service label font size" msgstr "" -#: ../../godmode/setup/setup_visuals.php:156 +#: ../../godmode/setup/setup_visuals.php:160 msgid "Space between items in Service maps" msgstr "" -#: ../../godmode/setup/setup_visuals.php:235 +#: ../../godmode/setup/setup_visuals.php:239 msgid "Colors" msgstr "" -#: ../../godmode/setup/setup_visuals.php:236 +#: ../../godmode/setup/setup_visuals.php:240 msgid "Faces" msgstr "" -#: ../../godmode/setup/setup_visuals.php:237 +#: ../../godmode/setup/setup_visuals.php:241 msgid "Colors and text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../include/functions_config.php:1038 +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../include/functions_config.php:1050 msgid "Style template" msgstr "" -#: ../../godmode/setup/setup_visuals.php:357 -#: ../../include/functions_config.php:1058 +#: ../../godmode/setup/setup_visuals.php:361 +#: ../../include/functions_config.php:1070 msgid "Status icon set" msgstr "" -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../include/functions_config.php:1094 +#: ../../godmode/setup/setup_visuals.php:606 +#: ../../include/functions_config.php:1106 msgid "Custom documentation logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:642 -#: ../../include/functions_config.php:1098 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../include/functions_config.php:1110 msgid "Custom support logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:680 -#: ../../include/functions_config.php:1102 -#: ../../include/functions_config.php:1106 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1118 msgid "Custom networkmap center logo" msgstr "" -#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/setup/setup_visuals.php:724 msgid "Custom mobile console icon" msgstr "" -#: ../../godmode/setup/setup_visuals.php:814 +#: ../../godmode/setup/setup_visuals.php:818 msgid "Disable logo in graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:832 +#: ../../godmode/setup/setup_visuals.php:836 msgid "Disable helps" msgstr "" -#: ../../godmode/setup/setup_visuals.php:842 -#: ../../include/functions_config.php:1286 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_config.php:1302 msgid "Fixed header" msgstr "" -#: ../../godmode/setup/setup_visuals.php:854 +#: ../../godmode/setup/setup_visuals.php:858 msgid "Automatically hide submenu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:901 -#: ../../include/functions_config.php:1250 +#: ../../godmode/setup/setup_visuals.php:905 +#: ../../include/functions_config.php:1266 msgid "GIS Labels" msgstr "" -#: ../../godmode/setup/setup_visuals.php:911 -#: ../../include/functions_config.php:1258 +#: ../../godmode/setup/setup_visuals.php:915 +#: ../../include/functions_config.php:1274 msgid "Default icon in GIS" msgstr "" -#: ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:924 msgid "Agent icon group" msgstr "" -#: ../../godmode/setup/setup_visuals.php:970 +#: ../../godmode/setup/setup_visuals.php:974 msgid "Graphs font size" msgstr "" -#: ../../godmode/setup/setup_visuals.php:989 +#: ../../godmode/setup/setup_visuals.php:993 msgid "Show unit along with value in reports" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1000 -#: ../../include/functions_config.php:1226 -#: ../../include/functions_config.php:1230 +#: ../../godmode/setup/setup_visuals.php:1004 +#: ../../include/functions_config.php:1242 +#: ../../include/functions_config.php:1246 msgid "Agent size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1007 -#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../godmode/setup/setup_visuals.php:1011 +#: ../../godmode/setup/setup_visuals.php:1033 msgid "Small" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1022 -#: ../../include/functions_config.php:1234 +#: ../../godmode/setup/setup_visuals.php:1026 +#: ../../include/functions_config.php:1250 msgid "Module size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1046 -#: ../../include/functions_config.php:1238 -#: ../../include/functions_config.php:1242 +#: ../../godmode/setup/setup_visuals.php:1050 +#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1258 msgid "Description size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1057 -#: ../../include/functions_config.php:1246 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../include/functions_config.php:1262 msgid "Item title size text" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1109 +#: ../../godmode/setup/setup_visuals.php:1113 msgid "Graph color #" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1123 +#: ../../godmode/setup/setup_visuals.php:1127 msgid "Data precision" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../godmode/setup/setup_visuals.php:1145 msgid "Data precision in graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1172 -#: ../../include/functions_config.php:1314 +#: ../../godmode/setup/setup_visuals.php:1176 +#: ../../include/functions_config.php:1330 msgid "Default line thickness for the Custom Graph." msgstr "" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1303 msgid "Zoom graphs" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1328 +#: ../../godmode/setup/setup_visuals.php:1332 msgid "Classic view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1333 msgid "View of favorites" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../godmode/setup/setup_visuals.php:1388 msgid "Type of view of visual consoles" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../godmode/setup/setup_visuals.php:1402 msgid "Number of favorite visual consoles to show in the menu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1403 -#: ../../include/functions_config.php:1214 +#: ../../godmode/setup/setup_visuals.php:1407 +#: ../../include/functions_config.php:1226 msgid "Default line thickness for the Visual Console" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1437 +#: ../../godmode/setup/setup_visuals.php:1452 msgid "Number of favorite services to show in the menu" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1535 +#: ../../godmode/setup/setup_visuals.php:1550 msgid "" "The dir of custom logos is in your www Console in 'images/custom_logo'. You " "can upload more files (ONLY JPEG AND PNG) in upload tool in console." msgstr "" -#: ../../godmode/setup/setup_visuals.php:1724 -#: ../../include/functions_config.php:1298 +#: ../../godmode/setup/setup_visuals.php:1739 +#: ../../include/functions_config.php:1314 msgid "Networkmap max width" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1747 +#: ../../godmode/setup/setup_visuals.php:1762 msgid "Show empty groups in group view" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1773 -#: ../../include/functions_config.php:1520 +#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../include/functions_config.php:1536 msgid "Decimal separator" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1788 +#: ../../godmode/setup/setup_visuals.php:1803 msgid "Visible time of successful notifiations" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1816 +#: ../../godmode/setup/setup_visuals.php:1831 msgid "Custom values post process" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1856 -#: ../../godmode/setup/setup_visuals.php:2023 +#: ../../godmode/setup/setup_visuals.php:1871 +#: ../../godmode/setup/setup_visuals.php:2038 msgid "Delete custom values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1906 +#: ../../godmode/setup/setup_visuals.php:1921 msgid "Interval values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1945 +#: ../../godmode/setup/setup_visuals.php:1960 msgid "Delete interval values" msgstr "" -#: ../../godmode/setup/setup_visuals.php:1988 +#: ../../godmode/setup/setup_visuals.php:2003 msgid "Module units" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2084 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Behaviour configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2089 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "GIS configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2094 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Style configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2099 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Charts configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2104 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Font and Text configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2109 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Visual consoles configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2114 +#: ../../godmode/setup/setup_visuals.php:2129 msgid "Reports configuration " msgstr "" -#: ../../godmode/setup/setup_visuals.php:2119 +#: ../../godmode/setup/setup_visuals.php:2134 msgid "Services configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2124 +#: ../../godmode/setup/setup_visuals.php:2139 msgid "Other configuration" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2405 +#: ../../godmode/setup/setup_visuals.php:2425 msgid "Mobile console logo preview" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2441 +#: ../../godmode/setup/setup_visuals.php:2461 msgid "Gis icons preview" msgstr "" -#: ../../godmode/setup/setup_visuals.php:2507 +#: ../../godmode/setup/setup_visuals.php:2527 msgid "Status set preview" msgstr "" @@ -39118,8 +39382,12 @@ msgstr "" msgid "General network path" msgstr "" +#: ../../godmode/setup/setup_general.php:434 +msgid "Server timezone setup" +msgstr "" + #: ../../godmode/setup/setup_general.php:515 -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:431 msgid "Inventory changes blacklist" msgstr "" @@ -39182,11 +39450,11 @@ msgstr "" msgid "Log location" msgstr "" -#: ../../godmode/setup/setup_general.php:710 +#: ../../godmode/setup/setup_general.php:736 msgid "General options" msgstr "" -#: ../../godmode/setup/setup_general.php:729 +#: ../../godmode/setup/setup_general.php:755 msgid "" "Please notice that some providers like Gmail or Office365 need to setup/" "enable manually external connections using SMTP and you need to use STARTTLS " @@ -39196,29 +39464,29 @@ msgid "" "these settings will ignore this console setup." msgstr "" -#: ../../godmode/setup/setup_general.php:744 +#: ../../godmode/setup/setup_general.php:770 msgid "From address" msgstr "" -#: ../../godmode/setup/setup_general.php:768 +#: ../../godmode/setup/setup_general.php:794 msgid "SMTP Server" msgstr "" -#: ../../godmode/setup/setup_general.php:780 +#: ../../godmode/setup/setup_general.php:806 msgid "SMTP Port" msgstr "" -#: ../../godmode/setup/setup_general.php:847 +#: ../../godmode/setup/setup_general.php:873 msgid "Email test" msgstr "" -#: ../../godmode/setup/setup_general.php:896 -#: ../../include/class/TipsWindow.class.php:767 -#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 +#: ../../godmode/setup/setup_general.php:922 +#: ../../include/class/TipsWindow.class.php:787 +#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833 msgid "Send" msgstr "" -#: ../../godmode/setup/setup_general.php:910 +#: ../../godmode/setup/setup_general.php:936 msgid "Check mail configuration" msgstr "" @@ -39231,34 +39499,34 @@ msgid "not executed" msgstr "" #: ../../godmode/setup/performance.php:278 -#: ../../include/functions_config.php:834 +#: ../../include/functions_config.php:846 msgid "Max. days before delete traps" msgstr "" #: ../../godmode/setup/performance.php:308 #: ../../godmode/setup/performance.php:518 -#: ../../include/functions_config.php:838 +#: ../../include/functions_config.php:850 msgid "Max. days before delete string data" msgstr "" #: ../../godmode/setup/performance.php:323 -#: ../../include/functions_config.php:846 +#: ../../include/functions_config.php:858 msgid "Max. days before delete GIS data" msgstr "" #: ../../godmode/setup/performance.php:353 #: ../../godmode/setup/performance.php:482 -#: ../../include/functions_config.php:862 +#: ../../include/functions_config.php:874 msgid "Max. days before compact data" msgstr "" #: ../../godmode/setup/performance.php:368 -#: ../../include/functions_config.php:854 +#: ../../include/functions_config.php:866 msgid "Max. days before delete unknown modules" msgstr "" #: ../../godmode/setup/performance.php:383 -#: ../../include/functions_config.php:858 +#: ../../include/functions_config.php:870 msgid "Max. days before delete not initialized modules" msgstr "" @@ -39267,28 +39535,28 @@ msgid "Max. days before delete autodisabled agents" msgstr "" #: ../../godmode/setup/performance.php:413 -#: ../../include/functions_config.php:914 +#: ../../include/functions_config.php:926 msgid "Retention period of past special days" msgstr "" #: ../../godmode/setup/performance.php:494 #: ../../godmode/setup/performance.php:615 -#: ../../include/functions_config.php:878 +#: ../../include/functions_config.php:890 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "" #: ../../godmode/setup/performance.php:537 -#: ../../include/functions_config.php:928 +#: ../../include/functions_config.php:940 msgid "Max. days before delete old messages" msgstr "" #: ../../godmode/setup/performance.php:549 -#: ../../include/functions_config.php:932 +#: ../../include/functions_config.php:944 msgid "Max. days before delete old network matrix data" msgstr "" #: ../../godmode/setup/performance.php:565 -#: ../../include/functions_config.php:923 +#: ../../include/functions_config.php:935 msgid "Max. days before delete inventory data" msgstr "" @@ -39309,22 +39577,22 @@ msgid "2 weeks" msgstr "" #: ../../godmode/setup/performance.php:652 -#: ../../include/functions_config.php:886 +#: ../../include/functions_config.php:898 msgid "Use realtime statistics" msgstr "" #: ../../godmode/setup/performance.php:662 -#: ../../include/functions_config.php:890 +#: ../../include/functions_config.php:902 msgid "Batch statistics period (secs)" msgstr "" #: ../../godmode/setup/performance.php:685 -#: ../../include/functions_config.php:898 +#: ../../include/functions_config.php:910 msgid "Max. recommended number of files in attachment directory" msgstr "" #: ../../godmode/setup/performance.php:697 -#: ../../include/functions_config.php:902 +#: ../../include/functions_config.php:914 msgid "Delete not init modules" msgstr "" @@ -39333,12 +39601,12 @@ msgid "Big Operation Step to purge old data" msgstr "" #: ../../godmode/setup/performance.php:722 -#: ../../include/functions_config.php:910 +#: ../../include/functions_config.php:922 msgid "Small Operation Step to purge old data" msgstr "" #: ../../godmode/setup/performance.php:737 -#: ../../include/functions_config.php:936 +#: ../../include/functions_config.php:948 msgid "Graph container - Max. Items" msgstr "" @@ -39377,7 +39645,7 @@ msgstr "" #: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2097 -#: ../../include/functions_reporting.php:4063 +#: ../../include/functions_reporting.php:4072 msgid "Others" msgstr "" @@ -39386,7 +39654,7 @@ msgid "Agent SNMP Interface Wizard defaults" msgstr "" #: ../../godmode/setup/file_manager.php:83 -#: ../../include/functions_filemanager.php:630 +#: ../../include/functions_filemanager.php:645 #, php-format msgid "Index of %s" msgstr "" @@ -39426,8 +39694,8 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:182 #: ../../godmode/reporting/visual_console_builder.elements.php:167 #: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:575 +#: ../../include/functions_visual_map_editor.php:626 +#: ../../include/lib/Dashboard/Widget.php:576 msgid "Background" msgstr "" @@ -39436,10 +39704,10 @@ msgid "Background image" msgstr "" #: ../../godmode/reporting/visual_console_builder.data.php:227 -#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/functions_visual_map_editor.php:343 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247 msgid "Background color" msgstr "" @@ -39488,122 +39756,122 @@ msgstr "" msgid "Problems with move file to target." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:304 msgid "Successfully update." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:322 +#: ../../godmode/reporting/visual_console_builder.php:323 msgid "Could not be update." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:342 +#: ../../godmode/reporting/visual_console_builder.php:343 msgid "Successfully created." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:361 +#: ../../godmode/reporting/visual_console_builder.php:362 msgid "Could not be created." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:409 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Successfully multiple delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:410 +#: ../../godmode/reporting/visual_console_builder.php:411 msgid "Unsuccessful multiple delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:530 +#: ../../godmode/reporting/visual_console_builder.php:531 msgid "Successfully delete." msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:801 -#: ../../operation/visual_console/view.php:130 +#: ../../godmode/reporting/visual_console_builder.php:809 +#: ../../operation/visual_console/view.php:132 #: ../../operation/visual_console/legacy_view.php:117 msgid "Visual consoles list" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:810 -#: ../../operation/visual_console/view.php:164 +#: ../../godmode/reporting/visual_console_builder.php:818 +#: ../../operation/visual_console/view.php:166 #: ../../operation/visual_console/legacy_view.php:133 msgid "Show link to public Visual Console" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/visual_console_builder.php:822 #: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.php:3634 -#: ../../operation/visual_console/view.php:174 +#: ../../godmode/reporting/reporting_builder.php:3651 +#: ../../operation/visual_console/view.php:176 #: ../../operation/visual_console/legacy_view.php:143 #: ../../operation/reporting/reporting_viewer.php:138 #: ../../operation/reporting/graph_viewer.php:193 msgid "Main data" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:818 -#: ../../operation/visual_console/view.php:182 +#: ../../godmode/reporting/visual_console_builder.php:826 +#: ../../operation/visual_console/view.php:184 #: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../operation/visual_console/view.php:192 +#: ../../godmode/reporting/visual_console_builder.php:832 +#: ../../operation/visual_console/view.php:194 #: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "" -#: ../../godmode/reporting/visual_console_builder.php:849 +#: ../../godmode/reporting/visual_console_builder.php:857 msgid "New visual console" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:701 +#: ../../godmode/reporting/reporting_builder.list_items.php:702 msgid "Sort selected items from position: " msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:704 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move before to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:706 msgid "Move after to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:754 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +#: ../../godmode/reporting/reporting_builder.list_items.php:755 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 msgid "Sort items" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:763 +#: ../../godmode/reporting/reporting_builder.list_items.php:764 msgid "Delete selected items from position: " msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:766 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete above to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:768 msgid "Delete below to" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:779 +#: ../../godmode/reporting/reporting_builder.list_items.php:780 msgid "Poisition" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:845 +#: ../../godmode/reporting/reporting_builder.list_items.php:846 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:867 -#: ../../godmode/reporting/graph_builder.graph_editor.php:463 +#: ../../godmode/reporting/reporting_builder.list_items.php:868 +#: ../../godmode/reporting/graph_builder.graph_editor.php:478 msgid "Please select any item to order" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:897 +#: ../../godmode/reporting/reporting_builder.list_items.php:898 msgid "Are you sure to delete the items into the report?\\n" msgstr "" -#: ../../godmode/reporting/reporting_builder.list_items.php:925 +#: ../../godmode/reporting/reporting_builder.list_items.php:926 msgid "Please select any item to delete" msgstr "" @@ -39652,7 +39920,7 @@ msgstr "" #: ../../godmode/reporting/create_container.php:498 #: ../../godmode/reporting/create_container.php:686 #: ../../godmode/reporting/graph_builder.main.php:219 -#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:548 msgid "Type of graph" msgstr "" @@ -39660,8 +39928,8 @@ msgstr "" #: ../../godmode/reporting/create_container.php:576 #: ../../godmode/reporting/create_container.php:691 #: ../../godmode/reporting/graph_builder.main.php:290 -#: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/stat_win.php:403 +#: ../../operation/agentes/interface_traffic_graph_win.php:256 msgid "Show full scale graph (TIP)" msgstr "" @@ -39719,7 +39987,7 @@ msgid "Graph editor" msgstr "" #: ../../godmode/reporting/graph_builder.php:326 -#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php:4547 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "" @@ -39808,23 +40076,23 @@ msgid "" "first %d will be displayed." msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:228 msgid "Sort selected items" msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:231 msgid "before to" msgstr "" -#: ../../godmode/reporting/graph_builder.graph_editor.php:319 +#: ../../godmode/reporting/graph_builder.graph_editor.php:232 msgid "after to" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1069 msgid "Not valid" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 msgid "" "This type of report brings a lot of data loading, it is recommended to use " "it for scheduled reports and not for real-time view." @@ -39851,241 +40119,241 @@ msgstr "" msgid "Show modules" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 -#: ../../include/functions_ui.php:2494 -#: ../../operation/inventory/inventory.php:687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2230 +#: ../../include/functions_ui.php:2537 +#: ../../operation/inventory/inventory.php:688 msgid "Last" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2309 msgid "Target server" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2627 msgid "Macros definition" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2638 msgid "Render definition" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2737 msgid "Greater or equal (>=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 msgid "Less or equal (<=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Less (<)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2740 msgid "Greater (>)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2741 msgid "Equal (=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2742 msgid "Not equal (!=)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "" "Show a summary chart with max, min and average number of total modules at " "the end of the report and Checks." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2922 msgid "Checks in Warning status" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2992 msgid "Only data" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3090 msgid "Include extended events" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3107 msgid "Show custom data" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "By agent " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "By user validator " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3146 msgid "By criticity " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3156 msgid "Validated vs unvalidated " msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Include filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 #: ../../godmode/reporting/reporting_builder.item_editor.php:3360 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3369 msgid "Free text string search on event description" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3365 msgid "Exclude filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3473 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3511 +#: ../../include/functions_reporting.php:5172 msgid "Unassigned group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 -#: ../../include/functions_reporting.php:5157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3557 +#: ../../include/functions_reporting.php:5166 msgid "Unnasigned group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Select by group" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3668 msgid "Display options" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3726 msgid "Agent group filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3761 msgid "Agent OS filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 msgid "Agent custom field" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3809 msgid "Agent custom field filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 msgid "Agent status filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3871 msgid "Agent version filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3895 msgid "Agent has remote configuration" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3896 msgid "Filter agents by remote configuration enabled." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3907 msgid "Agent module filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 msgid "Module group filter" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3961 msgid "Search module name" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 msgid "Agent Failover" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4119 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4632 msgid "Module Failover" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4159 msgid "Please save the item before adding entries to this list." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 msgid "rate" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4653 msgid "" "Please be careful, when the module have diferent intervals in their life, " "the summatory maybe get bad result." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4673 msgid "Please save the report to start adding items into the list." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4930 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4934 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4938 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4942 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4950 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4954 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4963 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4967 msgid "Item Editor Information" msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4940 msgid "Please select a name." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4944 msgid "Please select an agent." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4952 msgid "Please insert a SQL query." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4956 msgid "Please insert a URL." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4960 msgid "Please checked a custom interval option." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4964 msgid "Please select a user." msgstr "" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4968 msgid "Please select a group." msgstr "" @@ -40106,26 +40374,26 @@ msgid "Percentile Bubble" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:244 -#: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../mobile/operation/events.php:866 +#: ../../include/functions_visual_map_editor.php:1445 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:326 +#: ../../operation/visual_console/view.php:328 msgid "Module Graph" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:346 +#: ../../include/functions_visual_map_editor.php:1448 +#: ../../include/functions_visual_map.php:4189 +#: ../../operation/visual_console/view.php:348 msgid "Event history graph" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:266 -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../include/functions_visual_map.php:4205 -#: ../../include/rest-api/models/VisualConsole/Item.php:2132 -#: ../../operation/visual_console/view.php:351 +#: ../../include/functions_visual_map_editor.php:1449 +#: ../../include/functions_visual_map.php:4214 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../operation/visual_console/view.php:353 msgid "Simple Value" msgstr "" @@ -40143,52 +40411,54 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:376 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map.php:4169 +#: ../../operation/visual_console/view.php:378 msgid "Box" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:354 -#: ../../include/functions_visual_map_editor.php:1403 -#: ../../operation/visual_console/view.php:391 +#: ../../include/functions_visual_map_editor.php:1461 +#: ../../operation/visual_console/view.php:393 msgid "Network link" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4220 -#: ../../include/rest-api/models/VisualConsole/Item.php:2144 -#: ../../operation/visual_console/view.php:386 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_visual_map.php:4229 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../operation/visual_console/view.php:388 msgid "Color cloud" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:387 -#: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:331 +#: ../../include/rest-api/models/VisualConsole/Item.php:2159 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653 +#: ../../operation/visual_console/view.php:333 msgid "Basic chart" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:398 -#: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:396 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:398 msgid "Odometer" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4170 -#: ../../include/rest-api/models/VisualConsole/Item.php:2104 +#: ../../include/functions_visual_map_editor.php:1452 +#: ../../include/functions_visual_map.php:4179 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:366 +#: ../../operation/visual_console/view.php:368 msgid "Clock" msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:438 -#: ../../godmode/reporting/visual_console_builder.elements.php:910 +#: ../../godmode/reporting/visual_console_builder.elements.php:895 msgid "Edit label" msgstr "" @@ -40229,14 +40499,14 @@ msgid "An error has ocurred" msgstr "" #: ../../godmode/reporting/reporting_builder.php:515 -#: ../../godmode/reporting/reporting_builder.php:3560 -#: ../../godmode/reporting/reporting_builder.php:3627 -#: ../../godmode/reporting/reporting_builder.php:3675 +#: ../../godmode/reporting/reporting_builder.php:3577 +#: ../../godmode/reporting/reporting_builder.php:3644 +#: ../../godmode/reporting/reporting_builder.php:3692 msgid "Reports list" msgstr "" #: ../../godmode/reporting/reporting_builder.php:531 -#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../godmode/reporting/reporting_builder.php:3588 #: ../../operation/menu.php:457 #: ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" @@ -40258,16 +40528,16 @@ msgstr "" msgid "Create report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../godmode/reporting/reporting_builder.php:3676 #: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3678 +#: ../../godmode/reporting/reporting_builder.php:3695 msgid "Create Custom Report" msgstr "" -#: ../../godmode/reporting/reporting_builder.php:3750 +#: ../../godmode/reporting/reporting_builder.php:3767 msgid "Unsuccessful action

" msgstr "" @@ -40278,16 +40548,16 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1386 -#: ../../operation/visual_console/view.php:321 +#: ../../include/functions_visual_map_editor.php:1444 +#: ../../operation/visual_console/view.php:323 msgid "Percentile Item" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 -#: ../../mobile/operation/home.php:102 -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4165 -#: ../../include/rest-api/models/VisualConsole/Item.php:2100 +#: ../../mobile/operation/home.php:118 +#: ../../include/functions_visual_map_editor.php:391 +#: ../../include/functions_visual_map.php:4174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 msgid "Module graph" msgstr "" @@ -40305,30 +40575,30 @@ msgid "Size (px)" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_config.php:1066 +#: ../../include/functions_config.php:1078 msgid "Font size" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/functions_visual_map_editor.php:606 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:263 -#: ../../include/functions_visual_map_editor.php:615 +#: ../../include/functions_visual_map_editor.php:609 msgid "Min value" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:264 #: ../../godmode/reporting/visual_console_builder.wizard.php:284 -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:680 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_visual_map_editor.php:730 msgid "Max value" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:265 -#: ../../include/functions_visual_map_editor.php:617 +#: ../../include/functions_visual_map_editor.php:611 msgid "Avg value" msgstr "" @@ -40337,20 +40607,20 @@ msgid "Width (px)" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map_editor.php:685 +#: ../../include/functions_visual_map_editor.php:735 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:690 +#: ../../include/functions_visual_map_editor.php:740 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:345 -#: ../../include/functions_visual_map_editor.php:709 -#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:777 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 msgid "Value to show" msgstr "" @@ -40405,7 +40675,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.editor.php:177 #: ../../godmode/reporting/visual_console_builder.editor.php:179 #: ../../godmode/reporting/visual_console_builder.editor.php:181 -#: ../../operation/snmpconsole/snmp_browser.php:225 +#: ../../operation/snmpconsole/snmp_browser.php:230 msgid "Action in progress" msgstr "" @@ -40537,88 +40807,88 @@ msgid "" "event response" msgstr "" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "Save in group" msgstr "" -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:306 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "" -#: ../../godmode/events/event_edit_filter.php:502 +#: ../../godmode/events/event_edit_filter.php:504 msgid "Choose between the users who have validated an event. " msgstr "" -#: ../../godmode/events/event_edit_filter.php:520 +#: ../../godmode/events/event_edit_filter.php:522 msgid "Owner." msgstr "" -#: ../../godmode/events/event_edit_filter.php:535 -#: ../../operation/events/events.php:1783 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../operation/events/events.php:1837 msgid "All events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:536 -#: ../../operation/events/events.php:1784 -#: ../../operation/events/events.php:2435 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1838 +#: ../../operation/events/events.php:2489 msgid "Group events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../godmode/events/event_edit_filter.php:539 +#: ../../include/ajax/heatmap.ajax.php:99 #: ../../include/lib/Dashboard/Widgets/heatmap.php:252 -#: ../../operation/events/events.php:1785 +#: ../../operation/events/events.php:1839 msgid "Group agents" msgstr "" -#: ../../godmode/events/event_edit_filter.php:538 -#: ../../operation/events/events.php:1786 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events.php:1840 msgid "Group extra id" msgstr "" -#: ../../godmode/events/event_edit_filter.php:763 -#: ../../operation/events/events.php:2033 +#: ../../godmode/events/event_edit_filter.php:765 +#: ../../operation/events/events.php:2087 msgid "Filter alert events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:764 -#: ../../operation/events/events.php:2034 +#: ../../godmode/events/event_edit_filter.php:766 +#: ../../operation/events/events.php:2088 msgid "Only alert events" msgstr "" -#: ../../godmode/events/event_edit_filter.php:813 -#: ../../operation/events/events.php:1893 +#: ../../godmode/events/event_edit_filter.php:815 +#: ../../operation/events/events.php:1947 msgid "Extra ID" msgstr "" -#: ../../godmode/events/event_edit_filter.php:845 +#: ../../godmode/events/event_edit_filter.php:847 msgid "Custom data filter type" msgstr "" -#: ../../godmode/events/event_edit_filter.php:848 +#: ../../godmode/events/event_edit_filter.php:850 msgid "Filter custom data by name field" msgstr "" -#: ../../godmode/events/event_edit_filter.php:849 +#: ../../godmode/events/event_edit_filter.php:851 msgid "Filter custom data by value field" msgstr "" -#: ../../godmode/events/event_edit_filter.php:864 +#: ../../godmode/events/event_edit_filter.php:866 #: ../../godmode/events/custom_events.php:117 #: ../../include/functions_reporting_html.php:1074 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:2648 -#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221 #: ../../include/functions_events.php:323 msgid "Custom data" msgstr "" -#: ../../godmode/events/event_edit_filter.php:881 +#: ../../godmode/events/event_edit_filter.php:883 msgid "Id souce event" msgstr "" -#: ../../godmode/events/event_edit_filter.php:911 +#: ../../godmode/events/event_edit_filter.php:913 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 #: ../../operation/events/events.php:265 @@ -40691,7 +40961,7 @@ msgstr "" #: ../../godmode/events/custom_events.php:116 #: ../../include/functions_events.php:307 -#: ../../include/functions_events.php:5103 +#: ../../include/functions_events.php:5108 msgid "Module custom ID" msgstr "" @@ -40780,136 +41050,136 @@ msgstr "" msgid "Manual interval means that it will be executed only On-demand" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:814 -#: ../../include/class/CustomNetScan.class.php:551 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "" - -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:865 msgid "Use CSV file definition" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:866 msgid "Define targets using csv o network definition." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:884 msgid "Networks (csv)" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:885 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK " "format. For instance: 192.168.1.1/32" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:897 msgid "Networks (current)" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:898 msgid "Please upload a new file to overwrite this content." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:918 +#: ../../godmode/wizards/HostDevices.class.php:914 msgid "" "You can specify networks or fully qualified domain names of a specific host, " "separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." "artica.es" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1064 msgid "Filter by opened ports" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1070 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) " "is open." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1079 msgid "Auto discover known hardware" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1085 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1100 +#: ../../godmode/wizards/HostDevices.class.php:1096 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1148 +#: ../../godmode/wizards/HostDevices.class.php:1144 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " "'review results' is mandatory." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/HostDevices.class.php:1152 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1158 +#: ../../godmode/wizards/HostDevices.class.php:1154 msgid "Targets must be validated by user before create agents." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1184 +#: ../../godmode/wizards/HostDevices.class.php:1180 msgid "Apply autoconfiguration rules" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1186 +#: ../../godmode/wizards/HostDevices.class.php:1182 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1198 msgid "SNMP enabled" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1243 +#: ../../godmode/wizards/HostDevices.class.php:1239 msgid "Skip non-enabled interfaces" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1262 +#: ../../godmode/wizards/HostDevices.class.php:1258 msgid "SNMP communities to try with" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1264 +#: ../../godmode/wizards/HostDevices.class.php:1260 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1391 +#: ../../godmode/wizards/HostDevices.class.php:1387 msgid "OS detection" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1403 +#: ../../godmode/wizards/HostDevices.class.php:1399 msgid "Name resolution" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1414 +#: ../../godmode/wizards/HostDevices.class.php:1410 msgid "Parent detection" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1425 +#: ../../godmode/wizards/HostDevices.class.php:1421 msgid "Parent recursion" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1436 +#: ../../godmode/wizards/HostDevices.class.php:1432 msgid "VLAN enabled" msgstr "" -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1443 msgid "WMI enabled" msgstr "" +#: ../../godmode/wizards/HostDevices.class.php:1590 +#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387 +msgid "Please select..." +msgstr "" + #: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "" @@ -41215,6 +41485,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/class/AgentDeployWizard.class.php:558 msgid "Done" msgstr "" @@ -41227,47 +41498,42 @@ msgstr "" msgid "Searching" msgstr "" -#: ../../godmode/servers/servers.build_table.php:122 +#: ../../godmode/servers/servers.build_table.php:124 +#: ../../mobile/operation/server_status.php:269 +#: ../../mobile/operation/server_status.php:307 +#: ../../mobile/operation/server_status.php:337 msgid "Server has crashed." msgstr "" -#: ../../godmode/servers/servers.build_table.php:130 +#: ../../godmode/servers/servers.build_table.php:132 +#: ../../mobile/operation/server_status.php:275 +#: ../../mobile/operation/server_status.php:313 +#: ../../mobile/operation/server_status.php:343 msgid "Server is stopped." msgstr "" -#: ../../godmode/servers/servers.build_table.php:142 +#: ../../godmode/servers/servers.build_table.php:144 msgid "Exec server enabled" msgstr "" -#: ../../godmode/servers/servers.build_table.php:200 +#: ../../godmode/servers/servers.build_table.php:213 msgid "Manage Discovery tasks" msgstr "" -#: ../../godmode/servers/servers.build_table.php:214 +#: ../../godmode/servers/servers.build_table.php:227 msgid "Reset module status and fired alert counts" msgstr "" -#: ../../godmode/servers/servers.build_table.php:225 +#: ../../godmode/servers/servers.build_table.php:238 msgid "Claim back SNMP modules" msgstr "" -#: ../../godmode/servers/servers.build_table.php:249 -msgid "Manage satellite hosts" -msgstr "" - #: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "" -#: ../../godmode/servers/modificar_server.php:63 -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/servers/modificar_server.php:262 -#, php-format -msgid "%s servers" -msgstr "" - #: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072 #: ../../include/ajax/consoles.ajax.php:61 msgid "Standard" msgstr "" @@ -41296,34 +41562,35 @@ msgstr "" msgid "Advanced editor" msgstr "" -#: ../../godmode/servers/modificar_server.php:209 +#: ../../godmode/servers/modificar_server.php:210 +#: ../../godmode/servers/modificar_server.php:229 msgid "Remote Configuration" msgstr "" -#: ../../godmode/servers/modificar_server.php:235 +#: ../../godmode/servers/modificar_server.php:257 msgid "Dynamic search" msgstr "" -#: ../../godmode/servers/modificar_server.php:275 +#: ../../godmode/servers/modificar_server.php:297 #: ../../include/class/OrderInterpreter.class.php:247 msgid "Manage Servers" msgstr "" -#: ../../godmode/servers/modificar_server.php:287 -#: ../../godmode/servers/modificar_server.php:298 +#: ../../godmode/servers/modificar_server.php:309 +#: ../../godmode/servers/modificar_server.php:320 msgid "Successfully action" msgstr "" -#: ../../godmode/servers/modificar_server.php:329 +#: ../../godmode/servers/modificar_server.php:351 msgid "Server updated successfully" msgstr "" -#: ../../godmode/servers/modificar_server.php:331 +#: ../../godmode/servers/modificar_server.php:353 msgid "There was a problem updating the server" msgstr "" #: ../../godmode/servers/plugin_registration.php:58 -#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743 msgid "To manage plugin you must activate centralized management" msgstr "" @@ -41342,55 +41609,62 @@ msgid "" "from feature from %s." msgstr "" -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:101 msgid "Plugin Registration" msgstr "" -#: ../../godmode/servers/plugin_registration.php:113 +#: ../../godmode/servers/plugin_registration.php:107 +msgid "" +"This extension makes registering server plugins an easier task. Here you can " +"upload a server plugin in .pspz zipped format. Please refer to the official " +"documentation on how to obtain and use Server Plugins." +msgstr "" + +#: ../../godmode/servers/plugin_registration.php:109 msgid "You can get more plugins in our" msgstr "" -#: ../../godmode/servers/plugin_registration.php:115 +#: ../../godmode/servers/plugin_registration.php:111 msgid "Public Resource Library" msgstr "" -#: ../../godmode/servers/plugin_registration.php:143 +#: ../../godmode/servers/plugin_registration.php:139 msgid "Failed to create temporary directory" msgstr "" -#: ../../godmode/servers/plugin_registration.php:162 +#: ../../godmode/servers/plugin_registration.php:158 msgid "Cannot load INI file" msgstr "" -#: ../../godmode/servers/plugin_registration.php:187 +#: ../../godmode/servers/plugin_registration.php:183 msgid "Plugin exec not found. Aborting!" msgstr "" -#: ../../godmode/servers/plugin_registration.php:198 +#: ../../godmode/servers/plugin_registration.php:194 msgid "Plugin already registered. Aborting!" msgstr "" -#: ../../godmode/servers/plugin_registration.php:365 +#: ../../godmode/servers/plugin_registration.php:361 msgid "Plug-in Remote Registered unsuccessfull" msgstr "" -#: ../../godmode/servers/plugin_registration.php:368 +#: ../../godmode/servers/plugin_registration.php:364 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "" -#: ../../godmode/servers/plugin_registration.php:508 +#: ../../godmode/servers/plugin_registration.php:504 msgid "Module plugin registered" msgstr "" -#: ../../godmode/servers/plugin_registration.php:513 +#: ../../godmode/servers/plugin_registration.php:509 msgid "Registered successfully" msgstr "" -#: ../../godmode/servers/plugin_registration.php:526 +#: ../../godmode/servers/plugin_registration.php:522 msgid "Unable to uncompress uploaded file" msgstr "" -#: ../../godmode/servers/plugin_registration.php:544 +#: ../../godmode/servers/plugin_registration.php:540 #, php-format msgid "Cannot move uploaded file to %s." msgstr "" @@ -41399,15 +41673,15 @@ msgstr "" msgid "Network Components" msgstr "" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767 msgid "Attachments" msgstr "" -#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777 msgid "Index of attachment/plugin" msgstr "" -#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780 #, php-format msgid "Plug-ins registered on %s" msgstr "" @@ -41416,14 +41690,14 @@ msgstr "" msgid "Plugin update" msgstr "" -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " "(Metaconsole)." msgstr "" -#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072 msgid "Nagios" msgstr "" @@ -41462,84 +41736,88 @@ msgstr "" msgid "Plug-in parameters" msgstr "" -#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681 msgid "Parameters macros" msgstr "" #: ../../godmode/servers/plugin.php:585 -#: ../../include/class/ManageNetScanScripts.class.php:675 +#: ../../include/class/ManageNetScanScripts.class.php:671 msgid "Hide value" msgstr "" #: ../../godmode/servers/plugin.php:596 -#: ../../include/class/ManageNetScanScripts.class.php:677 +#: ../../include/class/ManageNetScanScripts.class.php:673 msgid "This field will show up as dots like a password" msgstr "" -#: ../../godmode/servers/plugin.php:824 +#: ../../godmode/servers/plugin.php:655 +msgid "Remove macro" +msgstr "" + +#: ../../godmode/servers/plugin.php:816 msgid "You need to create your own plugins with Windows compatibility" msgstr "" -#: ../../godmode/servers/plugin.php:890 +#: ../../godmode/servers/plugin.php:882 msgid "Problem updating plugin" msgstr "" -#: ../../godmode/servers/plugin.php:892 +#: ../../godmode/servers/plugin.php:884 msgid "Plugin updated successfully" msgstr "" -#: ../../godmode/servers/plugin.php:950 +#: ../../godmode/servers/plugin.php:942 msgid "Problem creating plugin" msgstr "" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:944 msgid "Plugin created successfully" msgstr "" -#: ../../godmode/servers/plugin.php:964 +#: ../../godmode/servers/plugin.php:956 msgid "Problem deleting plugin" msgstr "" -#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 +#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970 msgid "Plugin deleted successfully" msgstr "" -#: ../../godmode/servers/plugin.php:1034 +#: ../../godmode/servers/plugin.php:1026 msgid "Lock" msgstr "" -#: ../../godmode/servers/plugin.php:1062 +#: ../../godmode/servers/plugin.php:1054 msgid "All the modules that are using this plugin will be deleted" msgstr "" -#: ../../godmode/servers/plugin.php:1096 +#: ../../godmode/servers/plugin.php:1088 msgid "There are no plugins in the system" msgstr "" -#: ../../godmode/servers/plugin.php:1104 +#: ../../godmode/servers/plugin.php:1096 msgid "Add plugin" msgstr "" -#: ../../godmode/servers/plugin.php:1117 +#: ../../godmode/servers/plugin.php:1109 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "" -#: ../../godmode/servers/plugin.php:1221 +#: ../../godmode/servers/plugin.php:1213 msgid "Some modules or components are using the plugin" msgstr "" -#: ../../godmode/servers/plugin.php:1222 +#: ../../godmode/servers/plugin.php:1214 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" msgstr "" -#: ../../godmode/servers/plugin.php:1224 +#: ../../godmode/servers/plugin.php:1216 msgid "Are you sure you want to perform this action?" msgstr "" -#: ../../godmode/servers/plugin.php:1233 +#: ../../godmode/servers/plugin.php:1225 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -41580,37 +41858,37 @@ msgid "" "only. Go to %s to manage it." msgstr "" -#: ../../godmode/tag/tag.php:302 +#: ../../godmode/tag/tag.php:303 msgid "Tag name" msgstr "" -#: ../../godmode/tag/tag.php:304 +#: ../../godmode/tag/tag.php:305 msgid "Detail information" msgstr "" -#: ../../godmode/tag/tag.php:305 +#: ../../godmode/tag/tag.php:306 msgid "Number of modules affected" msgstr "" -#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 +#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237 msgid "Phone" msgstr "" -#: ../../godmode/tag/tag.php:336 +#: ../../godmode/tag/tag.php:337 msgid "Tag details" msgstr "" -#: ../../godmode/tag/tag.php:369 +#: ../../godmode/tag/tag.php:370 #, php-format msgid "Emails for the tag: %s" msgstr "" -#: ../../godmode/tag/tag.php:392 +#: ../../godmode/tag/tag.php:393 #, php-format msgid "Phones for the tag: %s" msgstr "" -#: ../../godmode/tag/tag.php:455 +#: ../../godmode/tag/tag.php:456 msgid "Create tag" msgstr "" @@ -41626,23 +41904,23 @@ msgstr "" msgid "Error updating tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:160 +#: ../../godmode/tag/edit_tag.php:163 msgid "Successfully created tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:164 msgid "Error creating tag" msgstr "" -#: ../../godmode/tag/edit_tag.php:213 +#: ../../godmode/tag/edit_tag.php:217 msgid "Hyperlink to help information that has to exist previously." msgstr "" -#: ../../godmode/tag/edit_tag.php:225 +#: ../../godmode/tag/edit_tag.php:229 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" -#: ../../godmode/tag/edit_tag.php:234 +#: ../../godmode/tag/edit_tag.php:238 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" @@ -41753,19 +42031,26 @@ msgstr "" msgid "Pandora FMS %s - Build %s" msgstr "" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 msgid "" "Access to this page is restricted to authorized users only, please contact " "your system administrator if you should need help." msgstr "" -#: ../../mobile/include/system.class.php:156 +#: ../../mobile/include/system.class.php:175 +#: ../../mobile/include/system.class.php:181 #, php-format msgid "" "Please remember that any attempts to access this page will be recorded on " "the %s System Database." msgstr "" +#: ../../mobile/include/system.class.php:181 +msgid "" +"Invalid license, please contact your system administrator if you should need " +"help." +msgstr "" + #: ../../mobile/include/ui.class.php:120 #, php-format msgid "%s mobile" @@ -41776,7 +42061,7 @@ msgstr "" msgid "%s : Mobile" msgstr "" -#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180 msgid "Home" msgstr "" @@ -41785,27 +42070,27 @@ msgstr "" msgid "%s %s - Build %s" msgstr "" -#: ../../mobile/include/ui.class.php:773 +#: ../../mobile/include/ui.class.php:803 msgid "Not found header." msgstr "" -#: ../../mobile/include/ui.class.php:775 +#: ../../mobile/include/ui.class.php:805 msgid "Not found content." msgstr "" -#: ../../mobile/include/ui.class.php:777 +#: ../../mobile/include/ui.class.php:807 msgid "Not found footer." msgstr "" -#: ../../mobile/include/ui.class.php:779 +#: ../../mobile/include/ui.class.php:809 msgid "Incorrect form." msgstr "" -#: ../../mobile/include/ui.class.php:781 +#: ../../mobile/include/ui.class.php:811 msgid "Incorrect grid." msgstr "" -#: ../../mobile/include/ui.class.php:783 +#: ../../mobile/include/ui.class.php:813 msgid "Incorrect collapsible." msgstr "" @@ -41843,52 +42128,64 @@ msgstr "" msgid "Login out" msgstr "" -#: ../../mobile/include/user.class.php:391 +#: ../../mobile/include/user.class.php:445 msgid "user" msgstr "" -#: ../../mobile/include/user.class.php:398 +#: ../../mobile/include/user.class.php:453 msgid "password" msgstr "" -#: ../../mobile/include/user.class.php:488 -#: ../../mobile/include/user.class.php:489 +#: ../../mobile/include/user.class.php:589 msgid "Authenticator code" msgstr "" -#: ../../mobile/operation/agents.php:218 +#: ../../mobile/operation/agents.php:219 #, php-format msgid "Filter Agents by %s" msgstr "" -#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053 msgid "Apply Filter" msgstr "" -#: ../../mobile/operation/agents.php:454 +#: ../../mobile/operation/agents.php:459 msgid "No agents" msgstr "" -#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 -#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981 +#: ../../mobile/operation/alerts.php:388 +#: ../../mobile/operation/module_data.php:299 +#: ../../mobile/operation/events.php:1575 +#: ../../mobile/operation/server_status.php:501 msgid "(Default)" msgstr "" -#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 -#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987 +#: ../../mobile/operation/alerts.php:401 +#: ../../mobile/operation/module_data.php:305 +#: ../../mobile/operation/events.php:1608 +#: ../../mobile/operation/server_status.php:507 #, php-format msgid "Group: %s" msgstr "" -#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 -#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#: ../../mobile/operation/agents.php:574 +#: ../../mobile/operation/modules.php:1009 +#: ../../mobile/operation/alerts.php:408 +#: ../../mobile/operation/module_data.php:327 +#: ../../mobile/operation/events.php:1628 +#: ../../mobile/operation/server_status.php:529 #, php-format msgid "Status: %s" msgstr "" -#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 -#: ../../mobile/operation/alerts.php:406 +#: ../../mobile/operation/agents.php:581 +#: ../../mobile/operation/modules.php:1016 +#: ../../mobile/operation/alerts.php:415 +#: ../../mobile/operation/module_data.php:334 +#: ../../mobile/operation/server_status.php:536 #, php-format msgid "Free Search: %s" msgstr "" @@ -41898,20 +42195,28 @@ msgstr "" msgid "Filter Modules by %s" msgstr "" -#: ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:670 msgid "Interval." msgstr "" -#: ../../mobile/operation/modules.php:661 +#: ../../mobile/operation/modules.php:672 msgid "Last update." msgstr "" -#: ../../mobile/operation/modules.php:906 +#: ../../mobile/operation/modules.php:850 +msgid "Choose option" +msgstr "" + +#: ../../mobile/operation/modules.php:1002 +#: ../../mobile/operation/module_data.php:320 +#: ../../mobile/operation/server_status.php:522 #, php-format msgid "Module group: %s" msgstr "" -#: ../../mobile/operation/modules.php:928 +#: ../../mobile/operation/modules.php:1024 +#: ../../mobile/operation/module_data.php:342 +#: ../../mobile/operation/server_status.php:544 #, php-format msgid "Tag: %s" msgstr "" @@ -41921,21 +42226,30 @@ msgstr "" msgid "Visual consoles" msgstr "" -#: ../../mobile/operation/agent.php:162 +#: ../../mobile/operation/home.php:95 +#: ../../mobile/operation/server_status.php:227 +msgid "Server status" +msgstr "" + +#: ../../mobile/operation/services.php:139 +msgid "No services found" +msgstr "" + +#: ../../mobile/operation/agent.php:168 msgid "No agent found" msgstr "" -#: ../../mobile/operation/agent.php:238 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 +#: ../../mobile/operation/agent.php:241 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589 msgid "Modules by status" msgstr "" -#: ../../mobile/operation/agent.php:268 -#: ../../include/functions_treeview.php:724 +#: ../../mobile/operation/agent.php:271 +#: ../../include/functions_treeview.php:728 msgid "Events (24h)" msgstr "" -#: ../../mobile/operation/agent.php:369 +#: ../../mobile/operation/agent.php:372 #, php-format msgid "Last %s Events" msgstr "" @@ -41945,15 +42259,22 @@ msgstr "" msgid "Filter Alerts by %s" msgstr "" -#: ../../mobile/operation/alerts.php:346 +#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337 +#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344 +#: ../../mobile/operation/alerts.php:347 +msgid "Module/Agent" +msgstr "" + +#: ../../mobile/operation/alerts.php:353 msgid "Last Fired" msgstr "" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 +#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509 +#: ../../operation/events/sound_events.php:394 msgid "No alerts" msgstr "" -#: ../../mobile/operation/alerts.php:385 +#: ../../mobile/operation/alerts.php:394 #, php-format msgid "Standby: %s" msgstr "" @@ -41966,133 +42287,161 @@ msgstr "" msgid "Favourite visual consoles" msgstr "" -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" +#: ../../mobile/operation/visualmaps.php:265 +msgid "There are no favorite maps to show" msgstr "" -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 +#: ../../mobile/operation/module_data.php:125 +msgid "Module data" +msgstr "" + +#: ../../mobile/operation/module_data.php:184 +#: ../../include/graphs/functions_flot.php:515 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832 +#: ../../include/functions_treeview.php:299 +msgid "No data" +msgstr "" + +#: ../../mobile/operation/module_graph.php:360 +#: ../../mobile/operation/module_graph.php:373 #, php-format msgid "%s: %s" msgstr "" -#: ../../mobile/operation/module_graph.php:405 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "" -#: ../../mobile/operation/module_graph.php:412 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "" -#: ../../mobile/operation/module_graph.php:420 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "" -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:377 -#: ../../operation/agentes/stat_win.php:439 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:385 +#: ../../operation/agentes/stat_win.php:455 msgid "Time compare (Separated)" msgstr "" -#: ../../mobile/operation/module_graph.php:444 -#: ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:325 msgid "Show unknown graph" msgstr "" -#: ../../mobile/operation/module_graph.php:449 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "" -#: ../../mobile/operation/module_graph.php:461 +#: ../../mobile/operation/module_graph.php:462 #: ../../operation/agentes/stat_win.php:289 -#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/stat_win.php:416 #: ../../operation/agentes/interface_traffic_graph_win.php:183 #: ../../operation/agentes/graphs.php:222 #: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "" -#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "" -#: ../../mobile/operation/events.php:450 +#: ../../mobile/operation/events.php:442 #: ../../include/functions_reporting_html.php:1095 #: ../../include/functions_reporting_html.php:1337 -#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_reporting_html.php:2677 #: ../../include/functions_events.php:2571 -#: ../../include/functions_events.php:4742 -#: ../../operation/events/events.php:779 +#: ../../include/functions_events.php:4747 +#: ../../operation/events/events.php:784 msgid "New event" msgstr "" -#: ../../mobile/operation/events.php:455 +#: ../../mobile/operation/events.php:447 #: ../../include/functions_reporting_html.php:1084 #: ../../include/functions_reporting_html.php:1342 -#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_events.php:2576 -#: ../../include/functions_events.php:4748 -#: ../../operation/events/events.php:792 +#: ../../include/functions_events.php:4753 +#: ../../operation/events/events.php:797 msgid "Event validated" msgstr "" -#: ../../mobile/operation/events.php:460 +#: ../../mobile/operation/events.php:452 #: ../../include/functions_reporting_html.php:1089 #: ../../include/functions_reporting_html.php:1347 -#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_reporting_html.php:2687 #: ../../include/functions_events.php:2581 -#: ../../include/functions_events.php:4754 -#: ../../operation/events/events.php:804 +#: ../../include/functions_events.php:4759 +#: ../../operation/events/events.php:809 msgid "Event in process" msgstr "" -#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/events.php:797 msgid "ERROR: Event detail" msgstr "" -#: ../../mobile/operation/events.php:769 +#: ../../mobile/operation/events.php:798 msgid "Error connecting to DB." msgstr "" -#: ../../mobile/operation/events.php:789 +#: ../../mobile/operation/events.php:818 msgid "Event detail" msgstr "" -#: ../../mobile/operation/events.php:800 -#: ../../include/functions_events.php:4895 +#: ../../mobile/operation/events.php:829 +#: ../../include/functions_events.php:4900 msgid "Event ID" msgstr "" -#: ../../mobile/operation/events.php:828 -#: ../../include/functions_events.php:5013 +#: ../../mobile/operation/events.php:857 +#: ../../include/functions_events.php:5018 msgid "Acknowledged by" msgstr "" -#: ../../mobile/operation/events.php:878 +#: ../../mobile/operation/events.php:894 +#: ../../include/functions_events.php:3275 +#: ../../include/functions_events.php:3548 +#: ../../include/functions_events.php:3557 +msgid "In process" +msgstr "" + +#: ../../mobile/operation/events.php:915 msgid "Sucessful validate" msgstr "" -#: ../../mobile/operation/events.php:880 +#: ../../mobile/operation/events.php:917 msgid "Fail validate" msgstr "" +#: ../../mobile/operation/events.php:922 +msgid "Sucessful in process" +msgstr "" + #: ../../mobile/operation/events.php:924 +msgid "Fail in process" +msgstr "" + +#: ../../mobile/operation/events.php:968 #, php-format msgid "Filter Events by %s" msgstr "" -#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979 msgid "Preset Filters" msgstr "" -#: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6176 -#: ../../include/functions_reporting_html.php:6335 +#: ../../mobile/operation/events.php:1191 +#: ../../include/functions_reporting_html.php:6210 +#: ../../include/functions_reporting_html.php:6369 #: ../../include/functions_reporting.php:2189 #: ../../include/functions_reporting.php:2564 #: ../../include/functions_events.php:2497 @@ -42100,31 +42449,35 @@ msgstr "" msgid "No events" msgstr "" -#: ../../mobile/operation/events.php:1455 +#: ../../mobile/operation/events.php:1580 #, php-format msgid "Filter: %s" msgstr "" -#: ../../mobile/operation/events.php:1467 +#: ../../mobile/operation/events.php:1592 #, php-format msgid "Severity: %s" msgstr "" -#: ../../mobile/operation/events.php:1496 +#: ../../mobile/operation/events.php:1621 #, php-format msgid "Type: %s" msgstr "" -#: ../../mobile/operation/events.php:1510 +#: ../../mobile/operation/events.php:1635 #, php-format msgid "Free search: %s" msgstr "" -#: ../../mobile/operation/events.php:1517 +#: ../../mobile/operation/events.php:1642 #, php-format msgid "Hours: %s" msgstr "" +#: ../../mobile/operation/server_status.php:371 +msgid "No servers" +msgstr "" + #: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "" @@ -42150,388 +42503,384 @@ msgstr "" msgid "Border color" msgstr "" -#: ../../include/functions_visual_map_editor.php:151 +#: ../../include/functions_visual_map_editor.php:149 msgid "Border width" msgstr "" -#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/functions_visual_map_editor.php:158 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 msgid "Fill color" msgstr "" -#: ../../include/functions_visual_map_editor.php:239 +#: ../../include/functions_visual_map_editor.php:235 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "" -#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/functions_visual_map_editor.php:251 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 msgid "Clock animation" msgstr "" -#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/functions_visual_map_editor.php:254 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 msgid "Simple analogic" msgstr "" -#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/functions_visual_map_editor.php:255 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 msgid "Simple digital" msgstr "" -#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/functions_visual_map_editor.php:269 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 msgid "Time format" msgstr "" -#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/functions_visual_map_editor.php:272 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 msgid "Only time" msgstr "" -#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_visual_map_editor.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 msgid "Time and date" msgstr "" -#: ../../include/functions_visual_map_editor.php:329 +#: ../../include/functions_visual_map_editor.php:325 msgid "Enable link" msgstr "" -#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/functions_visual_map_editor.php:346 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "" -#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:347 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "" -#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/functions_visual_map_editor.php:348 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "" -#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/functions_visual_map_editor.php:374 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "" -#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:492 msgid "Data image" msgstr "" -#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/functions_visual_map_editor.php:498 msgid "Resume data color" msgstr "" -#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/functions_visual_map_editor.php:511 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "" -#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/functions_visual_map_editor.php:512 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "" -#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/functions_visual_map_editor.php:513 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "" -#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/functions_visual_map_editor.php:514 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "" -#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/functions_visual_map_editor.php:518 #: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "" -#: ../../include/functions_visual_map_editor.php:640 +#: ../../include/functions_visual_map_editor.php:634 msgid "Original Size" msgstr "" -#: ../../include/functions_visual_map_editor.php:648 +#: ../../include/functions_visual_map_editor.php:654 msgid "Aspect ratio" msgstr "" -#: ../../include/functions_visual_map_editor.php:649 +#: ../../include/functions_visual_map_editor.php:657 msgid "Proportional Width" msgstr "" -#: ../../include/functions_visual_map_editor.php:657 +#: ../../include/functions_visual_map_editor.php:677 msgid "Height proportional" msgstr "" -#: ../../include/functions_visual_map_editor.php:668 -msgid "Widtzzzzh" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/functions_visual_map.php:4190 +#: ../../include/functions_visual_map_editor.php:736 +#: ../../include/functions_visual_map.php:4199 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 msgid "Circular progress bar" msgstr "" -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/functions_visual_map.php:4195 +#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map.php:4204 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 msgid "Circular progress bar (interior)" msgstr "" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:787 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "" -#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_visual_map_editor.php:802 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "" -#: ../../include/functions_visual_map_editor.php:799 +#: ../../include/functions_visual_map_editor.php:839 msgid "Diameter" msgstr "" -#: ../../include/functions_visual_map_editor.php:806 +#: ../../include/functions_visual_map_editor.php:846 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "" -#: ../../include/functions_visual_map_editor.php:810 +#: ../../include/functions_visual_map_editor.php:850 msgid "" "The color of the element will be the one selected in the first range created " "in which the value of the module is found (with the initial and final values " "of the range included)" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "Ranges" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "From value" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 msgid "To value" msgstr "" -#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/functions_visual_map_editor.php:853 #: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942 msgid "Color" msgstr "" -#: ../../include/functions_visual_map_editor.php:818 +#: ../../include/functions_visual_map_editor.php:859 msgid "Always show on top" msgstr "" -#: ../../include/functions_visual_map_editor.php:819 +#: ../../include/functions_visual_map_editor.php:861 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" msgstr "" -#: ../../include/functions_visual_map_editor.php:822 +#: ../../include/functions_visual_map_editor.php:870 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "" -#: ../../include/functions_visual_map_editor.php:828 +#: ../../include/functions_visual_map_editor.php:876 msgid "Show last value" msgstr "" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:980 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" -#: ../../include/functions_visual_map_editor.php:972 -#: ../../include/rest-api/models/VisualConsole/Item.php:2439 +#: ../../include/functions_visual_map_editor.php:1020 +#: ../../include/rest-api/models/VisualConsole/Item.php:2442 msgid "Linked visual console" msgstr "" -#: ../../include/functions_visual_map_editor.php:1079 -#: ../../include/rest-api/models/VisualConsole/Item.php:2490 +#: ../../include/functions_visual_map_editor.php:1131 +#: ../../include/rest-api/models/VisualConsole/Item.php:2493 msgid "By status weight" msgstr "" -#: ../../include/functions_visual_map_editor.php:1080 -#: ../../include/rest-api/models/VisualConsole/Item.php:2491 +#: ../../include/functions_visual_map_editor.php:1132 +#: ../../include/rest-api/models/VisualConsole/Item.php:2494 msgid "By critical elements" msgstr "" -#: ../../include/functions_visual_map_editor.php:1095 -#: ../../include/rest-api/models/VisualConsole/Item.php:2498 +#: ../../include/functions_visual_map_editor.php:1147 +#: ../../include/rest-api/models/VisualConsole/Item.php:2501 msgid "Type of the status calculation of the linked visual console" msgstr "" -#: ../../include/functions_visual_map_editor.php:1100 -#: ../../include/rest-api/models/VisualConsole/Item.php:2489 +#: ../../include/functions_visual_map_editor.php:1152 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 msgid "By default" msgstr "" -#: ../../include/functions_visual_map_editor.php:1120 -#: ../../include/rest-api/models/VisualConsole/Item.php:2514 +#: ../../include/functions_visual_map_editor.php:1172 +#: ../../include/rest-api/models/VisualConsole/Item.php:2517 msgid "Linked visual console weight" msgstr "" -#: ../../include/functions_visual_map_editor.php:1187 +#: ../../include/functions_visual_map_editor.php:1239 msgid "Lines haven't advanced options" msgstr "" -#: ../../include/functions_visual_map_editor.php:1204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2189 +#: ../../include/functions_visual_map_editor.php:1257 +#: ../../include/rest-api/models/VisualConsole/Item.php:2192 msgid "Restrict access to group" msgstr "" -#: ../../include/functions_visual_map_editor.php:1215 +#: ../../include/functions_visual_map_editor.php:1259 msgid "" "If selected, restrict visualization of this item in the visual console to " "users who have access to selected group. This is also used on calculating " "child visual consoles." msgstr "" -#: ../../include/functions_visual_map_editor.php:1246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2202 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../include/rest-api/models/VisualConsole/Item.php:2205 msgid "Cache expiration" msgstr "" -#: ../../include/functions_visual_map_editor.php:1285 +#: ../../include/functions_visual_map_editor.php:1343 msgid "Click start point
of the line" msgstr "" -#: ../../include/functions_visual_map_editor.php:1288 +#: ../../include/functions_visual_map_editor.php:1346 msgid "Click end point
of the line" msgstr "" -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:336 +#: ../../include/functions_visual_map_editor.php:1446 +#: ../../operation/visual_console/view.php:338 msgid "Serialized pie graph" msgstr "" -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../operation/visual_console/view.php:341 +#: ../../include/functions_visual_map_editor.php:1447 +#: ../../operation/visual_console/view.php:343 msgid "Bars Graph" msgstr "" -#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1476 msgid "Show grid" msgstr "" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1478 msgid "Delete item" msgstr "" -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../include/functions_visual_map_editor.php:1479 msgid "Copy item" msgstr "" -#: ../../include/functions_visual_map_editor.php:1458 -#: ../../include/functions_visual_map_editor.php:1462 -#: ../../include/functions_visual_map_editor.php:1466 -#: ../../include/functions_visual_map_editor.php:1470 -#: ../../include/functions_visual_map_editor.php:1474 -#: ../../include/functions_visual_map_editor.php:1478 -#: ../../include/functions_visual_map_editor.php:1482 -#: ../../include/functions_visual_map_editor.php:1486 -#: ../../include/functions_visual_map_editor.php:1490 -#: ../../include/functions_visual_map_editor.php:1494 -#: ../../include/functions_visual_map_editor.php:1498 -#: ../../include/functions_visual_map_editor.php:1502 -#: ../../include/functions_visual_map_editor.php:1506 -#: ../../include/functions_visual_map_editor.php:1510 -#: ../../include/functions_visual_map_editor.php:1514 -#: ../../include/functions_visual_map_editor.php:1518 -#: ../../include/functions_visual_map_editor.php:1522 -#: ../../include/functions_visual_map_editor.php:1526 -#: ../../include/functions_visual_map_editor.php:1530 +#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1540 +#: ../../include/functions_visual_map_editor.php:1544 +#: ../../include/functions_visual_map_editor.php:1548 +#: ../../include/functions_visual_map_editor.php:1552 +#: ../../include/functions_visual_map_editor.php:1556 +#: ../../include/functions_visual_map_editor.php:1560 +#: ../../include/functions_visual_map_editor.php:1564 +#: ../../include/functions_visual_map_editor.php:1568 +#: ../../include/functions_visual_map_editor.php:1572 +#: ../../include/functions_visual_map_editor.php:1576 +#: ../../include/functions_visual_map_editor.php:1580 +#: ../../include/functions_visual_map_editor.php:1584 +#: ../../include/functions_visual_map_editor.php:1588 msgid "Visual Console Builder Information" msgstr "" -#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1517 msgid "Min allowed size is 1024x768." msgstr "" -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1521 +#: ../../include/functions_visual_map_editor.php:1589 msgid "No custom graph defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1525 msgid "No image or name defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1529 msgid "No label defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1533 msgid "No service defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1537 msgid "No image defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1541 msgid "No process defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1545 msgid "No Max value defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1549 msgid "No width defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1553 msgid "No height defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1557 msgid "The width must not exceed the size of the visual console container." msgstr "" -#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1561 msgid "The height must not exceed the size of the visual console container." msgstr "" -#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1565 msgid "No period defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1569 msgid "No agent defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1573 msgid "No module defined." msgstr "" -#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1577 msgid "No module defined. This module must be string type." msgstr "" -#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1581 msgid "Successfully save the changes." msgstr "" -#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1585 msgid "Could not be save." msgstr "" @@ -42545,101 +42894,97 @@ msgid "Selected" msgstr "" #: ../../include/graphs/functions_gd.php:183 -#: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2774 -#: ../../include/functions_graph.php:2822 +#: ../../include/graphs/functions_gd.php:470 +#: ../../include/functions_graph.php:2784 +#: ../../include/functions_graph.php:2832 msgid "Out of limits" msgstr "" -#: ../../include/graphs/functions_flot.php:370 +#: ../../include/graphs/functions_flot.php:371 msgid "Cancel zoom" msgstr "" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:373 msgid "Warning and Critical thresholds" msgstr "" -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:378 msgid "Overview graph" msgstr "" -#: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:4681 -#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822 -#: ../../include/functions_treeview.php:299 -msgid "No data" -msgstr "" - -#: ../../include/functions_servers.php:582 +#: ../../include/functions_servers.php:590 msgid "SNMP Trap server" msgstr "" -#: ../../include/functions_servers.php:699 +#: ../../include/functions_servers.php:707 msgid "Correlation server" msgstr "" -#: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1230 +#: ../../include/functions_servers.php:720 +#: ../../include/functions_servers.php:1253 msgid "Enterprise ICMP server" msgstr "" -#: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1233 +#: ../../include/functions_servers.php:733 +#: ../../include/functions_servers.php:1256 msgid "Enterprise SNMP server" msgstr "" -#: ../../include/functions_servers.php:738 +#: ../../include/functions_servers.php:746 #: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "" -#: ../../include/functions_servers.php:751 +#: ../../include/functions_servers.php:759 msgid "Enterprise Transactional server" msgstr "" -#: ../../include/functions_servers.php:764 +#: ../../include/functions_servers.php:772 msgid "Mainframe server" msgstr "" -#: ../../include/functions_servers.php:777 +#: ../../include/functions_servers.php:785 msgid "Sync server" msgstr "" -#: ../../include/functions_servers.php:790 +#: ../../include/functions_servers.php:798 msgid "Wux server" msgstr "" -#: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1260 +#: ../../include/functions_servers.php:811 +#: ../../include/functions_servers.php:1283 msgid "Log server" msgstr "" -#: ../../include/functions_servers.php:829 +#: ../../include/functions_servers.php:837 msgid "Autoprovision server" msgstr "" -#: ../../include/functions_servers.php:842 +#: ../../include/functions_servers.php:850 msgid "Migration server" msgstr "" -#: ../../include/functions_servers.php:1239 +#: ../../include/functions_servers.php:876 +msgid "Netflow server" +msgstr "" + +#: ../../include/functions_servers.php:1262 msgid "Prediction Server" msgstr "" -#: ../../include/functions_servers.php:1266 +#: ../../include/functions_servers.php:1289 #: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "" #: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5823 +#: ../../include/functions_reporting_html.php:5851 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "" @@ -42666,31 +43011,31 @@ msgid "Downtime" msgstr "" #: ../../include/functions_reporting_html.php:1003 -#: ../../include/functions_reporting_html.php:2514 -#: ../../include/functions_reporting_html.php:4563 -#: ../../include/functions_reporting_html.php:5102 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:5130 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "" #: ../../include/functions_reporting_html.php:1004 -#: ../../include/functions_reporting_html.php:2515 -#: ../../include/functions_reporting_html.php:4564 -#: ../../include/functions_reporting_html.php:5103 +#: ../../include/functions_reporting_html.php:2536 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:5131 msgid "Average Value" msgstr "" #: ../../include/functions_reporting_html.php:1005 -#: ../../include/functions_reporting_html.php:2516 -#: ../../include/functions_reporting_html.php:4561 -#: ../../include/functions_reporting_html.php:5105 +#: ../../include/functions_reporting_html.php:2537 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:5133 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "" #: ../../include/functions_reporting_html.php:1061 #: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:2645 +#: ../../include/functions_reporting_html.php:2664 msgid "Val. by" msgstr "" @@ -42700,203 +43045,208 @@ msgid "%s System" msgstr "" #: ../../include/functions_reporting_html.php:1221 -#: ../../include/functions_reporting_html.php:1436 +#: ../../include/functions_reporting_html.php:1445 msgid "Events by user validator" msgstr "" #: ../../include/functions_reporting_html.php:1238 -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1462 msgid "Events by Severity" msgstr "" #: ../../include/functions_reporting_html.php:1255 -#: ../../include/functions_reporting_html.php:1470 +#: ../../include/functions_reporting_html.php:1479 msgid "Events validated vs unvalidated" msgstr "" -#: ../../include/functions_reporting_html.php:1612 +#: ../../include/functions_reporting_html.php:1621 msgid "Sec. groups" msgstr "" -#: ../../include/functions_reporting_html.php:1632 +#: ../../include/functions_reporting_html.php:1641 msgid "Remote conf." msgstr "" -#: ../../include/functions_reporting_html.php:1919 -#: ../../include/functions_inventory.php:1068 -#: ../../include/functions_inventory.php:1131 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_inventory.php:1178 +#: ../../include/functions_inventory.php:1241 msgid "Added" msgstr "" -#: ../../include/functions_reporting_html.php:1930 -#: ../../include/functions_inventory.php:1074 -#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_reporting_html.php:1939 +#: ../../include/functions_inventory.php:1184 +#: ../../include/functions_inventory.php:1249 #: ../../include/functions_filemanager.php:343 #: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "" -#: ../../include/functions_reporting_html.php:2287 +#: ../../include/functions_reporting_html.php:2308 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "" -#: ../../include/functions_reporting_html.php:2580 -#: ../../include/functions_reporting_html.php:5691 +#: ../../include/functions_reporting_html.php:2601 +#: ../../include/functions_reporting_html.php:5719 msgid "Monitors" msgstr "" -#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2620 msgid "Events (not validated)" msgstr "" -#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2783 msgid "Events validated by user" msgstr "" -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:5980 +#: ../../include/functions_reporting_html.php:2800 +#: ../../include/functions_reporting_html.php:6008 msgid "Events by severity" msgstr "" -#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2817 msgid "Amount events validated" msgstr "" -#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3247 msgid "Total summary" msgstr "" -#: ../../include/functions_reporting_html.php:3226 +#: ../../include/functions_reporting_html.php:3254 msgid "No alerts fired" msgstr "" -#: ../../include/functions_reporting_html.php:3326 +#: ../../include/functions_reporting_html.php:3354 #, php-format msgid "Interface '%s' throughput graph" msgstr "" -#: ../../include/functions_reporting_html.php:3330 +#: ../../include/functions_reporting_html.php:3358 msgid "Mac" msgstr "" -#: ../../include/functions_reporting_html.php:3331 +#: ../../include/functions_reporting_html.php:3359 msgid "Actual status" msgstr "" -#: ../../include/functions_reporting_html.php:3702 -#: ../../include/functions_reporting_html.php:3704 +#: ../../include/functions_reporting_html.php:3730 +#: ../../include/functions_reporting_html.php:3732 msgid "Empty modules" msgstr "" -#: ../../include/functions_reporting_html.php:4175 +#: ../../include/functions_reporting_html.php:4203 msgid "Time Not Init Module" msgstr "" -#: ../../include/functions_reporting_html.php:4186 +#: ../../include/functions_reporting_html.php:4214 msgid "% Ok" msgstr "" -#: ../../include/functions_reporting_html.php:4263 +#: ../../include/functions_reporting_html.php:4291 msgid "Checks Uknown" msgstr "" -#: ../../include/functions_reporting_html.php:4302 -#: ../../include/functions_reporting_html.php:4449 -#: ../../include/functions_reporting_html.php:4776 -#: ../../include/functions_reporting_html.php:4782 +#: ../../include/functions_reporting_html.php:4330 +#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4804 +#: ../../include/functions_reporting_html.php:4810 msgid "Primary" msgstr "" -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12115 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12124 +#: ../../include/functions_reporting.php:12169 msgid "Alert level" msgstr "" -#: ../../include/functions_reporting_html.php:5465 +#: ../../include/functions_reporting_html.php:5493 #, php-format msgid "Agents in group: %s" msgstr "" -#: ../../include/functions_reporting_html.php:5567 +#: ../../include/functions_reporting_html.php:5595 msgid "Last failure" msgstr "" -#: ../../include/functions_reporting_html.php:5657 +#: ../../include/functions_reporting_html.php:5685 msgid "N/A(*)" msgstr "" -#: ../../include/functions_reporting_html.php:5905 -#: ../../include/functions_reporting.php:12322 -#: ../../include/functions_groups.php:2650 +#: ../../include/functions_reporting_html.php:5933 +#: ../../include/functions_reporting.php:12395 +#: ../../include/functions_groups.php:2675 msgid "Monitor checks" msgstr "" -#: ../../include/functions_reporting_html.php:5912 -#: ../../include/functions_reporting.php:12341 -#: ../../include/functions_groups.php:2669 +#: ../../include/functions_reporting_html.php:5940 +#: ../../include/functions_reporting.php:12414 +#: ../../include/functions_groups.php:2694 msgid "Total agents and monitors" msgstr "" -#: ../../include/functions_reporting_html.php:5931 -#: ../../include/functions_reporting_html.php:5936 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5964 msgid "Node overview" msgstr "" -#: ../../include/functions_reporting_html.php:5956 -#: ../../include/functions_reporting_html.php:5968 +#: ../../include/functions_reporting_html.php:5984 +#: ../../include/functions_reporting_html.php:5996 msgid "Critical events" msgstr "" -#: ../../include/functions_reporting_html.php:5959 -#: ../../include/functions_reporting_html.php:5970 +#: ../../include/functions_reporting_html.php:5987 +#: ../../include/functions_reporting_html.php:5998 msgid "Warning events" msgstr "" -#: ../../include/functions_reporting_html.php:5962 -#: ../../include/functions_reporting_html.php:5972 +#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6000 msgid "OK events" msgstr "" -#: ../../include/functions_reporting_html.php:5965 -#: ../../include/functions_reporting_html.php:5974 +#: ../../include/functions_reporting_html.php:5993 +#: ../../include/functions_reporting_html.php:6002 msgid "Unknown events" msgstr "" -#: ../../include/functions_reporting_html.php:5990 +#: ../../include/functions_reporting_html.php:6019 +msgid "Event count corresponds to events within the last hour" +msgstr "" + +#: ../../include/functions_reporting_html.php:6024 msgid "Important Events by Criticity" msgstr "" -#: ../../include/functions_reporting_html.php:6017 +#: ../../include/functions_reporting_html.php:6051 #, php-format msgid "Last activity in %s console" msgstr "" -#: ../../include/functions_reporting_html.php:6066 -#: ../../include/functions_reporting_html.php:6208 +#: ../../include/functions_reporting_html.php:6100 +#: ../../include/functions_reporting_html.php:6242 msgid "Events info (1hr.)" msgstr "" -#: ../../include/functions_reporting_html.php:6365 +#: ../../include/functions_reporting_html.php:6399 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "" -#: ../../include/functions_reporting_html.php:6366 +#: ../../include/functions_reporting_html.php:6400 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" msgstr "" -#: ../../include/functions_reporting_html.php:6373 +#: ../../include/functions_reporting_html.php:6407 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "This item is affected by a malformed scheduled downtime" msgstr "" -#: ../../include/functions_reporting_html.php:6404 +#: ../../include/functions_reporting_html.php:6438 msgid "Go to the scheduled downtimes section to solve this" msgstr "" @@ -42914,7 +43264,7 @@ msgstr "" #: ../../include/functions.php:501 ../../include/functions.php:653 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2037 +#: ../../include/rest-api/models/VisualConsole/Item.php:2040 msgid "Y" msgstr "" @@ -42931,51 +43281,51 @@ msgid "N" msgstr "" #: ../../include/functions.php:1079 ../../include/functions.php:1325 -#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3319 -#: ../../include/functions_graph.php:4834 +#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327 +#: ../../include/functions_graph.php:3329 +#: ../../include/functions_graph.php:4844 #: ../../include/functions_incidents.php:34 #: ../../include/functions_incidents.php:75 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 -#: ../../include/functions_events.php:3210 -#: ../../operation/visual_console/view.php:451 +#: ../../include/functions_events.php:3215 +#: ../../operation/visual_console/view.php:453 msgid "Maintenance" msgstr "" #: ../../include/functions.php:1083 ../../include/functions.php:1326 -#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323 -#: ../../include/functions_graph.php:3325 -#: ../../include/functions_graph.php:4838 +#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333 +#: ../../include/functions_graph.php:3335 +#: ../../include/functions_graph.php:4848 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552 -#: ../../include/functions_events.php:3214 +#: ../../include/functions_events.php:3219 msgid "Informational" msgstr "" #: ../../include/functions.php:1099 ../../include/functions.php:1328 -#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335 -#: ../../include/functions_graph.php:3337 -#: ../../include/functions_graph.php:4854 +#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345 +#: ../../include/functions_graph.php:3347 +#: ../../include/functions_graph.php:4864 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "" #: ../../include/functions.php:1103 ../../include/functions.php:1330 -#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347 -#: ../../include/functions_graph.php:3349 -#: ../../include/functions_graph.php:4858 +#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357 +#: ../../include/functions_graph.php:3359 +#: ../../include/functions_graph.php:4868 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "" -#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3135 msgid "Monitor Critical" msgstr "" -#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3139 msgid "Monitor Warning" msgstr "" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3143 msgid "Monitor Normal" msgstr "" @@ -42983,17 +43333,17 @@ msgstr "" msgid "Monitor Unknown" msgstr "" -#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 -#: ../../include/functions_events.php:3146 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2919 +#: ../../include/functions_events.php:3151 msgid "Alert recovered" msgstr "" -#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 -#: ../../include/functions_events.php:3150 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2967 +#: ../../include/functions_events.php:3155 msgid "Alert ceased" msgstr "" -#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3159 msgid "Alert manual validation" msgstr "" @@ -43001,12 +43351,12 @@ msgstr "" msgid "Agent created" msgstr "" -#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3163 msgid "Recon host detected" msgstr "" -#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 -#: ../../include/functions_events.php:3170 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2963 +#: ../../include/functions_events.php:3175 msgid "Configuration change" msgstr "" @@ -43016,9 +43366,9 @@ msgstr "" #: ../../include/functions.php:1413 ../../include/functions.php:1450 #: ../../include/functions_modules.php:4263 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598 -#: ../../operation/agentes/status_monitor.php:1868 -#: ../../operation/agentes/status_monitor.php:1881 +#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598 +#: ../../operation/agentes/status_monitor.php:1870 +#: ../../operation/agentes/status_monitor.php:1883 msgid "NO DATA" msgstr "" @@ -43114,7 +43464,7 @@ msgid "2 minutes" msgstr "" #: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55 -#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181 +#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181 #: ../../operation/gis_maps/render_view.php:155 msgid "5 minutes" msgstr "" @@ -43123,55 +43473,60 @@ msgstr "" msgid "15 minutes" msgstr "" -#: ../../include/functions.php:3422 ../../include/ajax/module.php:220 +#: ../../include/functions.php:3422 ../../include/ajax/module.php:243 msgid "30 minutes" msgstr "" -#: ../../include/functions.php:3949 +#: ../../include/functions.php:3975 msgid "Summatory series" msgstr "" -#: ../../include/functions.php:3953 +#: ../../include/functions.php:3979 msgid "Average series" msgstr "" -#: ../../include/functions.php:3981 ../../include/functions.php:4000 -#: ../../include/functions.php:4014 ../../include/functions.php:4036 -#: ../../include/functions.php:4117 ../../include/functions.php:4194 +#: ../../include/functions.php:4007 ../../include/functions.php:4026 +#: ../../include/functions.php:4040 ../../include/functions.php:4062 +#: ../../include/functions.php:4143 ../../include/functions.php:4220 msgid "Unit " msgstr "" -#: ../../include/functions.php:4062 ../../include/functions.php:4127 +#: ../../include/functions.php:4102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "" + +#: ../../include/functions.php:4153 msgid "Min:" msgstr "" -#: ../../include/functions.php:4069 ../../include/functions.php:4136 +#: ../../include/functions.php:4162 msgid "Max:" msgstr "" -#: ../../include/functions.php:4076 ../../include/functions.php:4145 +#: ../../include/functions.php:4171 msgid "Avg:" msgstr "" -#: ../../include/functions.php:4191 ../../include/functions.php:4199 +#: ../../include/functions.php:4217 ../../include/functions.php:4225 msgid "of module" msgstr "" -#: ../../include/functions.php:4218 +#: ../../include/functions.php:4244 msgid "Projection" msgstr "" -#: ../../include/functions.php:6064 +#: ../../include/functions.php:6094 msgid "Testing Pandora FMS email" msgstr "" -#: ../../include/functions.php:6077 +#: ../../include/functions.php:6107 msgid "" "This is an email test sent from Pandora FMS. If you can read this, your " "configuration works." msgstr "" -#: ../../include/functions.php:6311 +#: ../../include/functions.php:6341 #: ../../include/class/ConsoleSupervisor.php:1645 #: ../../include/class/ConsoleSupervisor.php:1669 #: ../../include/class/ConsoleSupervisor.php:1698 @@ -43180,11 +43535,11 @@ msgstr "" msgid "Not recommended '%s' value in PHP configuration" msgstr "" -#: ../../include/functions.php:6312 +#: ../../include/functions.php:6342 msgid "Recommended value is: -1" msgstr "" -#: ../../include/functions.php:6313 +#: ../../include/functions.php:6343 #: ../../include/class/ConsoleSupervisor.php:1704 #: ../../include/class/ConsoleSupervisor.php:1785 msgid "" @@ -43192,7 +43547,7 @@ msgid "" "administrator" msgstr "" -#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96 +#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41 msgid "Documentation" msgstr "" @@ -43315,9 +43670,9 @@ msgstr "" msgid "Successful delete of alert template." msgstr "" -#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016 -#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363 -#: ../../include/functions_api.php:12443 +#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019 +#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366 +#: ../../include/functions_api.php:12446 #, php-format msgid "%d agents affected" msgstr "" @@ -43413,159 +43768,159 @@ msgstr "" msgid "Successful deletion" msgstr "" -#: ../../include/functions_api.php:9624 +#: ../../include/functions_api.php:9625 msgid "User created." msgstr "" -#: ../../include/functions_api.php:9717 +#: ../../include/functions_api.php:9720 msgid "User updated." msgstr "" -#: ../../include/functions_api.php:9794 +#: ../../include/functions_api.php:9797 msgid "Enabled user." msgstr "" -#: ../../include/functions_api.php:9802 +#: ../../include/functions_api.php:9805 msgid "Disabled user." msgstr "" -#: ../../include/functions_api.php:10097 +#: ../../include/functions_api.php:10100 #, php-format msgid "Template have been inserted in %d agents." msgstr "" -#: ../../include/functions_api.php:10273 +#: ../../include/functions_api.php:10276 msgid "XML file was generated successfully in path: " msgstr "" -#: ../../include/functions_api.php:10413 +#: ../../include/functions_api.php:10416 #, php-format msgid "Module has been created in %d agents." msgstr "" -#: ../../include/functions_api.php:10541 +#: ../../include/functions_api.php:10544 #, php-format msgid "Action has been set for %d agents." msgstr "" -#: ../../include/functions_api.php:11616 +#: ../../include/functions_api.php:11619 msgid "User deleted." msgstr "" -#: ../../include/functions_api.php:11675 +#: ../../include/functions_api.php:11678 msgid "User profile added." msgstr "" -#: ../../include/functions_api.php:11740 +#: ../../include/functions_api.php:11743 msgid "User profile deleted." msgstr "" -#: ../../include/functions_api.php:12023 +#: ../../include/functions_api.php:12026 msgid "Module disabled successfully." msgstr "" -#: ../../include/functions_api.php:12025 +#: ../../include/functions_api.php:12028 msgid "The module could not be disabled." msgstr "" -#: ../../include/functions_api.php:12089 +#: ../../include/functions_api.php:12092 msgid "Module enabled successfully." msgstr "" -#: ../../include/functions_api.php:12091 +#: ../../include/functions_api.php:12094 msgid "The module could not be enabled." msgstr "" -#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192 +#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195 msgid "The alert could not be disabled." msgstr "" -#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292 +#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295 msgid "The alert could not be enabled." msgstr "" -#: ../../include/functions_api.php:13586 +#: ../../include/functions_api.php:13597 msgid "Enabled agent." msgstr "" -#: ../../include/functions_api.php:13594 +#: ../../include/functions_api.php:13605 msgid "Disabled agent." msgstr "" -#: ../../include/functions_api.php:14573 +#: ../../include/functions_api.php:14584 msgid "Metaconsole and the licenses of all nodes were updated." msgstr "" -#: ../../include/functions_api.php:14575 +#: ../../include/functions_api.php:14586 #, php-format msgid "Metaconsole license updated but %d of %d node failed to sync." msgstr "" -#: ../../include/functions_api.php:14578 +#: ../../include/functions_api.php:14589 msgid "This function is for metaconsole only." msgstr "" -#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039 +#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050 msgid "Successfully deleted." msgstr "" -#: ../../include/functions_api.php:14998 +#: ../../include/functions_api.php:15009 msgid "The user cannot access the cluster." msgstr "" -#: ../../include/functions_api.php:15884 +#: ../../include/functions_api.php:15895 msgid "Event filter successfully created." msgstr "" -#: ../../include/functions_api.php:16117 +#: ../../include/functions_api.php:16128 msgid "Event filter successfully updated." msgstr "" -#: ../../include/functions_api.php:16158 +#: ../../include/functions_api.php:16169 msgid "Event filter successfully deleted." msgstr "" -#: ../../include/functions_api.php:16474 +#: ../../include/functions_api.php:16485 msgid "Validated traps." msgstr "" -#: ../../include/functions_api.php:16501 +#: ../../include/functions_api.php:16512 msgid "Deleted traps." msgstr "" -#: ../../include/functions_api.php:16694 +#: ../../include/functions_api.php:16705 #, php-format msgid "Successfully updated module/alert count in id agent %d." msgstr "" -#: ../../include/functions_api.php:16696 +#: ../../include/functions_api.php:16707 msgid "Successfully updated module/alert count in all agents" msgstr "" -#: ../../include/functions_api.php:17170 +#: ../../include/functions_api.php:17181 #, php-format msgid "Successfully added to delete pending id agent %d to id policy %d." msgstr "" -#: ../../include/functions_api.php:17359 +#: ../../include/functions_api.php:17370 msgid "Error enable/disable discovery task. Id_user cannot be left blank." msgstr "" -#: ../../include/functions_api.php:17367 +#: ../../include/functions_api.php:17378 msgid "" "Error enable/disable discovery task. Enable/disable value cannot be left " "blank." msgstr "" -#: ../../include/functions_api.php:17392 +#: ../../include/functions_api.php:17403 msgid "Error in discovery task enabling/disabling." msgstr "" -#: ../../include/functions_api.php:17400 +#: ../../include/functions_api.php:17411 msgid "Enabled discovery task." msgstr "" -#: ../../include/functions_api.php:17408 +#: ../../include/functions_api.php:17419 msgid "Disabled discovery task." msgstr "" @@ -43691,25 +44046,39 @@ msgstr "" msgid "3 minutes" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:81 +#: ../../include/ajax/heatmap.ajax.php:100 #: ../../include/lib/Dashboard/Widgets/heatmap.php:253 msgid "Group modules by tag" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:82 +#: ../../include/ajax/heatmap.ajax.php:101 #: ../../include/lib/Dashboard/Widgets/heatmap.php:254 msgid "Group modules by module group" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:83 +#: ../../include/ajax/heatmap.ajax.php:102 #: ../../include/lib/Dashboard/Widgets/heatmap.php:255 msgid "Group modules by agents" msgstr "" -#: ../../include/ajax/heatmap.ajax.php:100 +#: ../../include/ajax/heatmap.ajax.php:123 msgid "Show groups" msgstr "" +#: ../../include/ajax/heatmap.ajax.php:356 +msgid "Date of last data" +msgstr "" + +#: ../../include/ajax/heatmap.ajax.php:491 +#: ../../operation/agentes/estado_generalagente.php:406 +msgid "Out of bounds" +msgstr "" + +#: ../../include/ajax/heatmap.ajax.php:494 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Next contact" +msgstr "" + #: ../../include/ajax/alert_list.ajax.php:289 #: ../../include/ajax/alert_list.ajax.php:314 msgid "Force execution" @@ -43721,13 +44090,17 @@ msgid "F." msgstr "" #: ../../include/ajax/alert_list.ajax.php:341 -#: ../../operation/agentes/alerts_status.php:372 -#: ../../operation/agentes/alerts_status.php:373 -#: ../../operation/agentes/alerts_status.php:414 -#: ../../operation/agentes/alerts_status.php:415 +#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:375 +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:417 msgid "No alerts found" msgstr "" +#: ../../include/ajax/alert_list.ajax.php:540 +msgid "If a value of 0 is assigned, the Threshold of the action will be used." +msgstr "" + #: ../../include/ajax/alert_list.ajax.php:633 msgid "Insufficient permissions to validate alerts" msgstr "" @@ -43758,49 +44131,45 @@ msgstr "" msgid "Policy created succesfully" msgstr "" -#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215 +#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215 msgid "3 months" msgstr "" -#: ../../include/ajax/module.php:231 +#: ../../include/ajax/module.php:254 msgid "2 years" msgstr "" -#: ../../include/ajax/module.php:232 +#: ../../include/ajax/module.php:255 msgid "3 years" msgstr "" -#: ../../include/ajax/module.php:243 -#: ../../operation/agentes/datos_agente.php:194 +#: ../../include/ajax/module.php:266 +#: ../../operation/agentes/datos_agente.php:196 msgid "Choose a time from now" msgstr "" -#: ../../include/ajax/module.php:269 -#: ../../operation/agentes/datos_agente.php:197 +#: ../../include/ajax/module.php:292 +#: ../../operation/agentes/datos_agente.php:199 msgid "Specify time range" msgstr "" -#: ../../include/ajax/module.php:327 +#: ../../include/ajax/module.php:350 msgid "Exact phrase" msgstr "" -#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485 -#: ../../operation/agentes/interface_traffic_graph_win.php:310 +#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501 +#: ../../operation/agentes/interface_traffic_graph_win.php:319 msgid "" "In Pandora FMS, data is stored compressed. The data visualization in " "database, charts or CSV exported data won't match, because is interpreted at " "runtime. Please check 'Pandora FMS Engineering' chapter from documentation." msgstr "" -#: ../../include/ajax/module.php:586 -msgid "No available data to showaaaa" -msgstr "" - -#: ../../include/ajax/module.php:1000 +#: ../../include/ajax/module.php:1023 msgid "T" msgstr "" -#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650 +#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650 #: ../../include/functions_reports.php:654 #: ../../include/functions_reports.php:659 #: ../../include/functions_reports.php:665 @@ -43813,41 +44182,41 @@ msgstr "" #: ../../include/functions_groups.php:123 #: ../../include/functions_groups.php:187 #: ../../operation/search_results.php:120 -#: ../../operation/agentes/ver_agente.php:1578 -#: ../../operation/agentes/ver_agente.php:1881 +#: ../../operation/agentes/ver_agente.php:1574 +#: ../../operation/agentes/ver_agente.php:1877 msgid "Graphs" msgstr "" -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1182 msgid "Time elapsed since last status change: " msgstr "" -#: ../../include/ajax/module.php:1281 -#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../include/ajax/module.php:1309 +#: ../../operation/agentes/estado_generalagente.php:382 msgid "Force checks" msgstr "" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "Any monitors aren't with this filter." msgstr "" -#: ../../include/ajax/module.php:1360 +#: ../../include/ajax/module.php:1388 msgid "This agent doesn't have any active monitors." msgstr "" -#: ../../include/ajax/module.php:2138 +#: ../../include/ajax/module.php:2167 msgid "Load" msgstr "" -#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582 +#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582 msgid "Update/delete filter" msgstr "" -#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672 +#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672 msgid "Save current filter" msgstr "" -#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687 +#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687 #: ../../include/ajax/custom_fields.php:702 msgid "Delete filter" msgstr "" @@ -43930,108 +44299,116 @@ msgstr "" msgid "Console successfully deleted" msgstr "" -#: ../../include/ajax/events.php:98 +#: ../../include/ajax/events.php:99 msgid "Failed to retrieve comments" msgstr "" -#: ../../include/ajax/events.php:897 +#: ../../include/ajax/events.php:898 msgid "Save/Update filters" msgstr "" -#: ../../include/ajax/events.php:1287 +#: ../../include/ajax/events.php:1288 msgid "unauthorized" msgstr "" -#: ../../include/ajax/events.php:1393 +#: ../../include/ajax/events.php:1394 msgid "Error executing response" msgstr "" -#: ../../include/ajax/events.php:1746 +#: ../../include/ajax/events.php:1747 msgid "Related" msgstr "" -#: ../../include/ajax/events.php:1758 +#: ../../include/ajax/events.php:1759 msgid "Agent fields" msgstr "" -#: ../../include/ajax/events.php:1896 +#: ../../include/ajax/events.php:1897 msgid "Error adding comment" msgstr "" -#: ../../include/ajax/events.php:1903 +#: ../../include/ajax/events.php:1904 msgid "Comment added successfully" msgstr "" -#: ../../include/ajax/events.php:1910 +#: ../../include/ajax/events.php:1911 msgid "Error changing event status" msgstr "" -#: ../../include/ajax/events.php:1917 +#: ../../include/ajax/events.php:1918 msgid "Event status changed successfully" msgstr "" -#: ../../include/ajax/events.php:1924 +#: ../../include/ajax/events.php:1925 msgid "Error changing event owner" msgstr "" -#: ../../include/ajax/events.php:1931 +#: ../../include/ajax/events.php:1932 msgid "Event owner changed successfully" msgstr "" -#: ../../include/ajax/events.php:1938 +#: ../../include/ajax/events.php:1939 msgid "Error deleting event" msgstr "" -#: ../../include/ajax/events.php:2073 +#: ../../include/ajax/events.php:2074 msgid "Show all Events 24h" msgstr "" -#: ../../include/ajax/events.php:2170 +#: ../../include/ajax/events.php:2171 msgid "These commands will apply to all selected events" msgstr "" -#: ../../include/ajax/events.php:2232 +#: ../../include/ajax/events.php:2233 msgid "Total number of events in this node reached" msgstr "" -#: ../../include/ajax/events.php:2266 +#: ../../include/ajax/events.php:2267 msgid "Total Events per node" msgstr "" -#: ../../include/ajax/events.php:2331 +#: ../../include/ajax/events.php:2332 +#: ../../operation/events/sound_events.php:208 msgid "Console configuration" msgstr "" -#: ../../include/ajax/events.php:2338 +#: ../../include/ajax/events.php:2339 +#: ../../operation/events/sound_events.php:215 msgid "Set condition" msgstr "" -#: ../../include/ajax/events.php:2345 -#: ../../operation/events/sound_events.php:192 +#: ../../include/ajax/events.php:2346 +#: ../../operation/events/sound_events.php:222 msgid "All new events" msgstr "" -#: ../../include/ajax/events.php:2382 +#: ../../include/ajax/events.php:2383 +#: ../../operation/events/sound_events.php:259 msgid "Sound duration" msgstr "" -#: ../../include/ajax/events.php:2418 +#: ../../include/ajax/events.php:2419 +#: ../../operation/events/sound_events.php:295 msgid "Sound melody" msgstr "" -#: ../../include/ajax/events.php:2432 +#: ../../include/ajax/events.php:2433 +#: ../../operation/events/sound_events.php:309 msgid "Test sound" msgstr "" -#: ../../include/ajax/events.php:2456 +#: ../../include/ajax/events.php:2457 +#: ../../operation/events/sound_events.php:333 msgid "Discovered alerts" msgstr "" -#: ../../include/ajax/events.php:2463 +#: ../../include/ajax/events.php:2464 +#: ../../operation/events/sound_events.php:340 msgid "No alerts discovered" msgstr "" -#: ../../include/ajax/events.php:2468 +#: ../../include/ajax/events.php:2469 +#: ../../operation/events/sound_events.php:345 msgid "Congrats! there’s nothing to show" msgstr "" @@ -44054,28 +44431,28 @@ msgstr "" #: ../../include/functions_agents.php:3030 #: ../../include/functions_agents.php:3091 #: ../../include/functions_agents.php:3158 -#: ../../include/functions_reporting.php:13111 +#: ../../include/functions_reporting.php:13184 msgid "At least one module in CRITICAL status" msgstr "" #: ../../include/functions_agents.php:3036 #: ../../include/functions_agents.php:3104 #: ../../include/functions_agents.php:3166 -#: ../../include/functions_reporting.php:13118 +#: ../../include/functions_reporting.php:13191 msgid "At least one module in WARNING status" msgstr "" #: ../../include/functions_agents.php:3042 #: ../../include/functions_agents.php:3117 #: ../../include/functions_agents.php:3174 -#: ../../include/functions_reporting.php:13125 +#: ../../include/functions_reporting.php:13198 msgid "At least one module is in UKNOWN status" msgstr "" #: ../../include/functions_agents.php:3048 #: ../../include/functions_agents.php:3130 #: ../../include/functions_agents.php:3182 -#: ../../include/functions_reporting.php:13132 +#: ../../include/functions_reporting.php:13205 msgid "All Monitors OK" msgstr "" @@ -44087,12 +44464,12 @@ msgstr "" msgid "Dialog response time" msgstr "" -#: ../../include/functions_inventory.php:115 -#: ../../include/functions_inventory.php:1051 +#: ../../include/functions_inventory.php:116 +#: ../../include/functions_inventory.php:1161 msgid "No changes found" msgstr "" -#: ../../include/functions_inventory.php:214 +#: ../../include/functions_inventory.php:215 msgid "Get CSV file" msgstr "" @@ -44200,7 +44577,7 @@ msgstr "" msgid "Could not changes password on remote pandora" msgstr "" -#: ../../include/auth/mysql.php:858 +#: ../../include/auth/mysql.php:886 msgid "Your installation of PHP does not support LDAP" msgstr "" @@ -44220,19 +44597,19 @@ msgstr "" msgid "User, group or profile status not specified" msgstr "" -#: ../../include/functions_graph.php:2607 +#: ../../include/functions_graph.php:2617 msgid "Not fired alerts" msgstr "" -#: ../../include/functions_graph.php:3235 -#: ../../include/functions_graph.php:5490 ../../include/functions_ui.php:4233 +#: ../../include/functions_graph.php:3245 +#: ../../include/functions_graph.php:5500 ../../include/functions_ui.php:4307 #: ../../include/functions_events.php:108 -#: ../../include/functions_events.php:2946 -#: ../../operation/events/events.php:698 +#: ../../include/functions_events.php:2951 +#: ../../operation/events/events.php:703 msgid "SYSTEM" msgstr "" -#: ../../include/functions_graph.php:5237 +#: ../../include/functions_graph.php:5247 msgid "Main node" msgstr "" @@ -44253,240 +44630,264 @@ msgstr "" msgid "Module information" msgstr "" -#: ../../include/functions_treeview.php:380 +#: ../../include/functions_treeview.php:329 +msgid "Go to module edition" +msgstr "" + +#: ../../include/functions_treeview.php:384 msgid "There was a problem loading alerts" msgstr "" -#: ../../include/functions_treeview.php:467 +#: ../../include/functions_treeview.php:471 msgid "Go to alerts edition" msgstr "" -#: ../../include/functions_treeview.php:559 +#: ../../include/functions_treeview.php:563 #: ../../operation/agentes/agent_fields.php:24 #: ../../operation/agentes/custom_fields.php:24 #: ../../operation/agentes/estado_generalagente.php:62 msgid "There was a problem loading agent" msgstr "" -#: ../../include/functions_treeview.php:611 +#: ../../include/functions_treeview.php:615 msgid "Click here for view this agent" msgstr "" -#: ../../include/functions_treeview.php:633 -#: ../../operation/agentes/estado_generalagente.php:588 +#: ../../include/functions_treeview.php:637 +#: ../../operation/agentes/estado_generalagente.php:557 msgid "Other IP addresses" msgstr "" -#: ../../include/functions_treeview.php:676 +#: ../../include/functions_treeview.php:680 msgid "Remote contact" msgstr "" -#: ../../include/functions_treeview.php:684 +#: ../../include/functions_treeview.php:688 msgid "Next agent contact" msgstr "" -#: ../../include/functions_treeview.php:697 +#: ../../include/functions_treeview.php:701 msgid "Agent information" msgstr "" -#: ../../include/functions_treeview.php:744 +#: ../../include/functions_treeview.php:748 msgid "Agent access rate (24h)" msgstr "" -#: ../../include/functions_treeview.php:800 +#: ../../include/functions_treeview.php:804 #: ../../operation/agentes/interface_view.functions.php:722 -#: ../../operation/agentes/pandora_networkmap.view.php:1303 -#: ../../operation/agentes/estado_generalagente.php:826 +#: ../../operation/agentes/pandora_networkmap.view.php:1304 +#: ../../operation/agentes/estado_generalagente.php:784 msgid "Interface traffic" msgstr "" -#: ../../include/functions_treeview.php:823 +#: ../../include/functions_treeview.php:827 msgid "Interface information" msgstr "" -#: ../../include/functions_treeview.php:863 -#: ../../operation/agentes/estado_generalagente.php:549 +#: ../../include/functions_treeview.php:867 +#: ../../operation/agentes/estado_generalagente.php:524 msgid "Position (Long, Lat)" msgstr "" -#: ../../include/functions_treeview.php:872 -#: ../../operation/agentes/ver_agente.php:1552 -#: ../../operation/agentes/ver_agente.php:1889 -#: ../../operation/agentes/estado_generalagente.php:575 +#: ../../include/functions_treeview.php:876 +#: ../../operation/agentes/ver_agente.php:1548 +#: ../../operation/agentes/ver_agente.php:1885 +#: ../../operation/agentes/estado_generalagente.php:544 msgid "Url address" msgstr "" -#: ../../include/functions_treeview.php:886 -#: ../../operation/agentes/estado_generalagente.php:600 +#: ../../include/functions_treeview.php:890 +#: ../../operation/agentes/estado_generalagente.php:569 msgid "Timezone Offset" msgstr "" -#: ../../include/functions_treeview.php:917 +#: ../../include/functions_treeview.php:921 msgid "Advanced information" msgstr "" -#: ../../include/functions_menu.php:561 +#: ../../include/functions_treeview.php:940 +msgid "Go to cluster edition" +msgstr "" + +#: ../../include/functions_treeview.php:949 +msgid "Go to module creation" +msgstr "" + +#: ../../include/functions_treeview.php:958 +msgid "Go to agent edition" +msgstr "" + +#: ../../include/functions_menu.php:563 msgid "Configure user" msgstr "" -#: ../../include/functions_menu.php:562 +#: ../../include/functions_menu.php:564 msgid "Configure profile" msgstr "" -#: ../../include/functions_menu.php:564 +#: ../../include/functions_menu.php:566 msgid "Module templates management" msgstr "" -#: ../../include/functions_menu.php:565 +#: ../../include/functions_menu.php:567 msgid "Inventory modules management" msgstr "" -#: ../../include/functions_menu.php:572 +#: ../../include/functions_menu.php:574 msgid "Builder visual console" msgstr "" -#: ../../include/functions_menu.php:574 +#: ../../include/functions_menu.php:576 msgid "View reporting" msgstr "" -#: ../../include/functions_menu.php:575 +#: ../../include/functions_menu.php:577 msgid "Graph viewer" msgstr "" -#: ../../include/functions_menu.php:577 +#: ../../include/functions_menu.php:579 msgid "Manage custom graphs" msgstr "" -#: ../../include/functions_menu.php:578 +#: ../../include/functions_menu.php:580 msgid "View graph containers" msgstr "" -#: ../../include/functions_menu.php:579 +#: ../../include/functions_menu.php:581 msgid "Manage graph containers" msgstr "" -#: ../../include/functions_menu.php:580 +#: ../../include/functions_menu.php:582 msgid "View graph templates" msgstr "" -#: ../../include/functions_menu.php:581 +#: ../../include/functions_menu.php:583 msgid "Manage graph templates" msgstr "" -#: ../../include/functions_menu.php:582 +#: ../../include/functions_menu.php:584 msgid "Graph template items" msgstr "" -#: ../../include/functions_menu.php:583 +#: ../../include/functions_menu.php:585 msgid "Graph template wizard" msgstr "" -#: ../../include/functions_menu.php:586 +#: ../../include/functions_menu.php:588 +msgid "New custom reports" +msgstr "" + +#: ../../include/functions_menu.php:589 msgid "Edit custom reports" msgstr "" -#: ../../include/functions_menu.php:588 -msgid "Edit item" -msgstr "" - #: ../../include/functions_menu.php:590 -msgid "Wizard sla" -msgstr "" - -#: ../../include/functions_menu.php:591 -msgid "Global custom reports" +msgid "Remove custom reports" msgstr "" #: ../../include/functions_menu.php:592 -msgid "Avanced options" +msgid "Edit item" +msgstr "" + +#: ../../include/functions_menu.php:594 +msgid "Wizard sla" msgstr "" #: ../../include/functions_menu.php:595 +msgid "Global custom reports" +msgstr "" + +#: ../../include/functions_menu.php:596 +msgid "Avanced options" +msgstr "" + +#: ../../include/functions_menu.php:599 msgid "Manage GIS Maps" msgstr "" -#: ../../include/functions_menu.php:598 +#: ../../include/functions_menu.php:602 msgid "Manage messages" msgstr "" -#: ../../include/functions_menu.php:600 +#: ../../include/functions_menu.php:604 msgid "Manage module groups" msgstr "" -#: ../../include/functions_menu.php:601 +#: ../../include/functions_menu.php:605 msgid "Manage custom field" msgstr "" -#: ../../include/functions_menu.php:603 +#: ../../include/functions_menu.php:607 msgid "Manage alert actions" msgstr "" -#: ../../include/functions_menu.php:604 +#: ../../include/functions_menu.php:608 msgid "Manage commands" msgstr "" -#: ../../include/functions_menu.php:606 +#: ../../include/functions_menu.php:610 msgid "Manage export targets" msgstr "" -#: ../../include/functions_menu.php:608 ../../operation/menu.php:254 +#: ../../include/functions_menu.php:612 ../../operation/menu.php:254 msgid "SNMP trap generator" msgstr "" -#: ../../include/functions_menu.php:611 +#: ../../include/functions_menu.php:615 msgid "Manage incident" msgstr "" -#: ../../include/functions_menu.php:613 +#: ../../include/functions_menu.php:617 msgid "Manage groups" msgstr "" -#: ../../include/functions_menu.php:673 +#: ../../include/functions_menu.php:677 msgid "Administration" msgstr "" -#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303 +#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303 msgid "Information" msgstr "" -#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109 +#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114 #: ../../include/class/Diagnostics.class.php:251 msgid "System Info" msgstr "" -#: ../../include/functions_menu.php:939 +#: ../../include/functions_menu.php:944 msgid "PHP System" msgstr "" -#: ../../include/functions_menu.php:954 +#: ../../include/functions_menu.php:959 msgid "MR version" msgstr "" -#: ../../include/functions_menu.php:962 +#: ../../include/functions_menu.php:967 msgid "Update manager" msgstr "" -#: ../../include/functions_menu.php:974 +#: ../../include/functions_menu.php:979 msgid "System report" msgstr "" -#: ../../include/functions_menu.php:1006 +#: ../../include/functions_menu.php:1011 #: ../../include/class/Diagnostics.class.php:243 msgid "Database health status" msgstr "" -#: ../../include/functions_menu.php:1036 +#: ../../include/functions_menu.php:1041 #: ../../include/class/Diagnostics.class.php:247 msgid "Database status info" msgstr "" -#: ../../include/functions_menu.php:1074 +#: ../../include/functions_menu.php:1079 #: ../../include/class/Diagnostics.class.php:260 #, php-format msgid "Tables fragmentation in the %s database" msgstr "" -#: ../../include/functions_menu.php:1168 +#: ../../include/functions_menu.php:1173 msgid "PHP system" msgstr "" @@ -44598,6 +44999,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. " msgstr "" #: ../../include/help/clippy/module_unknow.php:35 +#: ../../include/functions_clippy.php:321 msgid "You have unknown modules in this agent." msgstr "" @@ -44914,8 +45316,8 @@ msgid "Please check if the email configuration is correct." msgstr "" #: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 -#: ../../operation/users/user_edit.php:981 +#: ../../operation/users/user_edit.php:969 +#: ../../operation/users/user_edit.php:978 msgid "Profiles/Groups assigned to this user" msgstr "" @@ -44949,150 +45351,150 @@ msgid "" "access" msgstr "" -#: ../../include/functions_ui.php:985 +#: ../../include/functions_ui.php:1017 msgid "Software" msgstr "" -#: ../../include/functions_ui.php:1281 +#: ../../include/functions_ui.php:1318 msgid "Force check" msgstr "" -#: ../../include/functions_ui.php:1525 +#: ../../include/functions_ui.php:1568 msgid "The alert would fire when the value is over " msgstr "" -#: ../../include/functions_ui.php:1530 +#: ../../include/functions_ui.php:1573 msgid "The alert would fire when the value is under " msgstr "" -#: ../../include/functions_ui.php:1545 +#: ../../include/functions_ui.php:1588 msgid "Unknown option." msgstr "" -#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666 +#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686 msgid "the Flexible Monitoring System" msgstr "" -#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312 +#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355 #, php-format msgid "Total items: %s" msgstr "" -#: ../../include/functions_ui.php:2341 +#: ../../include/functions_ui.php:2384 msgid "First" msgstr "" -#: ../../include/functions_ui.php:2797 +#: ../../include/functions_ui.php:2840 msgid "Unknown type" msgstr "" -#: ../../include/functions_ui.php:3752 +#: ../../include/functions_ui.php:3800 msgid "No matching records found" msgstr "" -#: ../../include/functions_ui.php:3753 +#: ../../include/functions_ui.php:3801 msgid "No data available in table" msgstr "" -#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995 +#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067 msgid "Export current page to CSV" msgstr "" -#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:689 -#: ../../operation/events/events.php:753 +#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:694 +#: ../../operation/events/events.php:758 msgid "ALERT" msgstr "" -#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:613 +#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:618 msgid "MAINTENANCE" msgstr "" -#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:618 +#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:623 msgid "INFORMATIONAL" msgstr "" -#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:628 +#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:633 msgid "MINOR" msgstr "" -#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:623 +#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:628 msgid "MAJOR" msgstr "" -#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962 -#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158 -#: ../../include/functions_reporting.php:12166 -#: ../../include/functions_reporting.php:12319 -#: ../../include/functions_reporting.php:12333 -#: ../../include/functions_reporting.php:14672 -#: ../../include/functions_reporting.php:14747 -#: ../../include/functions_groups.php:2647 -#: ../../include/functions_groups.php:2661 -#: ../../include/functions_groups.php:2711 +#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967 +#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174 +#: ../../include/functions_reporting.php:12239 +#: ../../include/functions_reporting.php:12392 +#: ../../include/functions_reporting.php:12406 +#: ../../include/functions_reporting.php:14745 +#: ../../include/functions_reporting.php:14820 +#: ../../include/functions_groups.php:2672 +#: ../../include/functions_groups.php:2686 +#: ../../include/functions_groups.php:2736 msgid "Enterprise version not installed" msgstr "" -#: ../../include/functions_ui.php:5563 +#: ../../include/functions_ui.php:5638 msgid "Type at least two characters to search." msgstr "" -#: ../../include/functions_ui.php:6503 +#: ../../include/functions_ui.php:6578 msgid "Unhandled error" msgstr "" -#: ../../include/functions_ui.php:6504 +#: ../../include/functions_ui.php:6579 msgid "An unhandled error occurs" msgstr "" -#: ../../include/functions_ui.php:6775 +#: ../../include/functions_ui.php:6850 #, php-format msgid "" "These controls are using the timezone of the system (%s) instead of yours " "(%s). The difference with your time zone in hours is %s." msgstr "" -#: ../../include/functions_ui.php:7127 +#: ../../include/functions_ui.php:7199 msgid "Results" msgstr "" -#: ../../include/functions_ui.php:7173 +#: ../../include/functions_ui.php:7245 msgid "Execute query" msgstr "" -#: ../../include/functions_ui.php:7196 +#: ../../include/functions_ui.php:7266 msgid "Show password" msgstr "" -#: ../../include/functions_ui.php:7296 +#: ../../include/functions_ui.php:7366 msgid "WEB server" msgstr "" -#: ../../include/functions_ui.php:7306 +#: ../../include/functions_ui.php:7376 msgid "Wizard Module" msgstr "" -#: ../../include/functions_ui.php:7399 +#: ../../include/functions_ui.php:7469 msgid "Select inventory module" msgstr "" -#: ../../include/functions_ui.php:7455 +#: ../../include/functions_ui.php:7532 msgid "Use custom fields" msgstr "" -#: ../../include/functions_ui.php:7581 +#: ../../include/functions_ui.php:7672 msgid "Field name" msgstr "" -#: ../../include/functions_ui.php:7598 +#: ../../include/functions_ui.php:7689 msgid "It's a password" msgstr "" -#: ../../include/functions_ui.php:7606 +#: ../../include/functions_ui.php:7697 msgid "Add field" msgstr "" @@ -45111,21 +45513,21 @@ msgstr "" msgid "Modules successfully added to layout" msgstr "" -#: ../../include/functions_visual_map.php:3108 +#: ../../include/functions_visual_map.php:3111 msgid "Agents successfully added to layout" msgstr "" -#: ../../include/functions_visual_map.php:3504 +#: ../../include/functions_visual_map.php:3512 msgid "Cannot load the visualmap" msgstr "" -#: ../../include/functions_visual_map.php:4175 -#: ../../include/rest-api/models/VisualConsole/Item.php:2108 +#: ../../include/functions_visual_map.php:4184 +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 msgid "Bars graph" msgstr "" -#: ../../include/functions_visual_map.php:4185 -#: ../../include/rest-api/models/VisualConsole/Item.php:2116 +#: ../../include/functions_visual_map.php:4194 +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 msgid "Percentile bar" msgstr "" @@ -45175,7 +45577,7 @@ msgstr "" msgid "No actions defined" msgstr "" -#: ../../include/functions_alerts.php:2665 +#: ../../include/functions_alerts.php:2666 msgid "Alert and command group does not match" msgstr "" @@ -45305,24 +45707,24 @@ msgid "Current ranges" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1995 +#: ../../include/rest-api/models/VisualConsole/Item.php:1998 msgid "width" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2005 +#: ../../include/rest-api/models/VisualConsole/Item.php:2008 msgid "height" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2027 +#: ../../include/rest-api/models/VisualConsole/Item.php:2030 msgid "X" msgstr "" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2064 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954 +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 msgid "Show on top" msgstr "" @@ -45365,11 +45767,15 @@ msgstr "" msgid "Show legend" msgstr "" +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715 +msgid "Recursive" +msgstr "" + #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:721 -#: ../../include/rest-api/models/VisualConsole/View.php:800 +#: ../../include/rest-api/models/VisualConsole/View.php:687 +#: ../../include/rest-api/models/VisualConsole/View.php:766 msgid "Failed to connect to node" msgstr "" @@ -45392,67 +45798,67 @@ msgstr "" msgid "Specific settings" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:221 +#: ../../include/rest-api/models/VisualConsole/View.php:183 msgid "Item type not valid [" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:226 +#: ../../include/rest-api/models/VisualConsole/View.php:188 msgid "Item type has no getFormInputs method [" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:704 msgid "NetworkLink from" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:742 -#: ../../include/rest-api/models/VisualConsole/View.php:821 +#: ../../include/rest-api/models/VisualConsole/View.php:708 +#: ../../include/rest-api/models/VisualConsole/View.php:787 #, php-format msgid "Interface %s status" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:747 -#: ../../include/rest-api/models/VisualConsole/View.php:826 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:748 -#: ../../include/rest-api/models/VisualConsole/View.php:827 +#: ../../include/rest-api/models/VisualConsole/View.php:714 +#: ../../include/rest-api/models/VisualConsole/View.php:793 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:783 msgid "NetworkLink to" msgstr "" -#: ../../include/rest-api/models/VisualConsole/View.php:869 +#: ../../include/rest-api/models/VisualConsole/View.php:835 #, php-format msgid "Failed to generate charts: %s" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:1965 +#: ../../include/rest-api/models/VisualConsole/Item.php:1968 msgid "Label position" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2052 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 msgid "Link enabled" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2094 +#: ../../include/rest-api/models/VisualConsole/Item.php:2097 msgid "Static graph" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2112 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 msgid "Event History Graph" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2120 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 msgid "Percentile bubble" msgstr "" -#: ../../include/rest-api/models/VisualConsole/Item.php:2590 -#: ../../include/rest-api/models/VisualConsole/Item.php:2591 +#: ../../include/rest-api/models/VisualConsole/Item.php:2593 +#: ../../include/rest-api/models/VisualConsole/Item.php:2594 msgid "Image Vc" msgstr "" @@ -45494,8 +45900,8 @@ msgstr "" #: ../../include/functions_reports.php:651 #: ../../include/functions_reports.php:1102 -#: ../../include/functions_reporting.php:10729 -#: ../../include/functions_reporting.php:10889 +#: ../../include/functions_reporting.php:10738 +#: ../../include/functions_reporting.php:10898 msgid "Simple graph" msgstr "" @@ -45616,12 +46022,12 @@ msgid "Inventory changes" msgstr "" #: ../../include/functions_reports.php:918 -#: ../../include/functions_reporting.php:6921 +#: ../../include/functions_reporting.php:6930 msgid "Agent configuration" msgstr "" #: ../../include/functions_reports.php:922 -#: ../../include/functions_reporting.php:5230 +#: ../../include/functions_reporting.php:5239 msgid "Group configuration" msgstr "" @@ -45651,60 +46057,61 @@ msgstr "" msgid "Graph Sql" msgstr "" -#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001 +#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006 msgid "Please select an item from this list." msgstr "" -#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363 -msgid "Please select..." -msgstr "" - -#: ../../include/functions_html.php:1622 +#: ../../include/functions_html.php:1630 msgid "Type to search agents" msgstr "" -#: ../../include/functions_html.php:1636 +#: ../../include/functions_html.php:1644 msgid "Type to search modules" msgstr "" -#: ../../include/functions_html.php:1704 +#: ../../include/functions_html.php:1713 msgid "Only common modules" msgstr "" -#: ../../include/functions_html.php:2139 +#: ../../include/functions_html.php:2147 msgid "weeks" msgstr "" -#: ../../include/functions_html.php:2321 +#: ../../include/functions_html.php:2336 msgid "Month day" msgstr "" -#: ../../include/functions_html.php:2323 +#: ../../include/functions_html.php:2338 msgid "Week day" msgstr "" -#: ../../include/functions_html.php:4800 +#: ../../include/functions_html.php:4824 msgid "Select a file" msgstr "" -#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020 +#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044 msgid "Type at least two characters to search the module." msgstr "" -#: ../../include/functions_html.php:5182 ../../index.php:533 -#: ../../index.php:817 ../../index.php:891 +#: ../../include/functions_html.php:5206 ../../index.php:533 +#: ../../index.php:818 ../../index.php:892 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "" -#: ../../include/functions_html.php:6104 +#: ../../include/functions_html.php:6128 msgid "Type at least two characters to search the user." msgstr "" -#: ../../include/functions_html.php:6507 +#: ../../include/functions_html.php:6535 msgid "Primary group cannot be secondary too." msgstr "" +#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938 +#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942 +msgid "Go to top" +msgstr "" + #: ../../include/functions_register.php:105 #, php-format msgid "%s configuration wizard" @@ -45766,7 +46173,7 @@ msgid "Integria inventory" msgstr "" #: ../../include/functions_config.php:252 -#: ../../include/functions_config.php:1876 +#: ../../include/functions_config.php:1888 msgid "Integria API password" msgstr "" @@ -45814,479 +46221,487 @@ msgid "alias_as_name" msgstr "" #: ../../include/functions_config.php:374 -msgid "Console log enabled" +msgid "keep_in_process_status_extra_id" msgstr "" #: ../../include/functions_config.php:378 -msgid "Audit log enabled" +msgid "Console log enabled" msgstr "" #: ../../include/functions_config.php:382 +msgid "Audit log enabled" +msgstr "" + +#: ../../include/functions_config.php:386 msgid "Module Custom ID read only" msgstr "" -#: ../../include/functions_config.php:446 +#: ../../include/functions_config.php:454 msgid "Replication DB host" msgstr "" -#: ../../include/functions_config.php:450 +#: ../../include/functions_config.php:458 msgid "Replication DB database" msgstr "" -#: ../../include/functions_config.php:454 +#: ../../include/functions_config.php:462 msgid "Replication DB user" msgstr "" -#: ../../include/functions_config.php:458 +#: ../../include/functions_config.php:466 msgid "Replication DB password" msgstr "" -#: ../../include/functions_config.php:462 +#: ../../include/functions_config.php:470 msgid "Replication DB port" msgstr "" -#: ../../include/functions_config.php:466 +#: ../../include/functions_config.php:474 msgid "Metaconsole agent cache" msgstr "" -#: ../../include/functions_config.php:474 +#: ../../include/functions_config.php:482 msgid "Enable Update Manager" msgstr "" -#: ../../include/functions_config.php:478 +#: ../../include/functions_config.php:486 msgid "Legacy database HA" msgstr "" -#: ../../include/functions_config.php:482 +#: ../../include/functions_config.php:490 msgid "Ipam Ocuppied Manager Critical" msgstr "" -#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:494 msgid "Ipam Ocuppied Manager Warning" msgstr "" -#: ../../include/functions_config.php:583 +#: ../../include/functions_config.php:591 msgid "Automatically timezone visual" msgstr "" -#: ../../include/functions_config.php:655 +#: ../../include/functions_config.php:611 +msgid "Recursive search" +msgstr "" + +#: ../../include/functions_config.php:667 msgid "Ldap search timeout" msgstr "" -#: ../../include/functions_config.php:671 +#: ../../include/functions_config.php:683 msgid "Secontary start TLS" msgstr "" -#: ../../include/functions_config.php:787 +#: ../../include/functions_config.php:799 msgid "Saml profile parameters" msgstr "" -#: ../../include/functions_config.php:803 +#: ../../include/functions_config.php:815 msgid "2FA all users" msgstr "" -#: ../../include/functions_config.php:810 +#: ../../include/functions_config.php:822 msgid "Session timeout forced to 90 minutes" msgstr "" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:842 msgid "Event purge" msgstr "" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:878 msgid "Max. days before autodisable deletion" msgstr "" -#: ../../include/functions_config.php:870 +#: ../../include/functions_config.php:882 msgid "Item limit for realtime reports)" msgstr "" -#: ../../include/functions_config.php:906 +#: ../../include/functions_config.php:918 msgid "Big Operatiopn Step to purge old data" msgstr "" -#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:952 msgid "Max execution event response" msgstr "" -#: ../../include/functions_config.php:948 +#: ../../include/functions_config.php:960 msgid "SNMP walk binary path" msgstr "" -#: ../../include/functions_config.php:952 +#: ../../include/functions_config.php:964 msgid "SNMP walk binary path (fallback for v1)" msgstr "" -#: ../../include/functions_config.php:956 +#: ../../include/functions_config.php:968 msgid "Default WMI Binary" msgstr "" -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:978 msgid "SNMP Interface Agent Wizard" msgstr "" -#: ../../include/functions_config.php:977 +#: ../../include/functions_config.php:989 msgid "Notification Autoclose time" msgstr "" -#: ../../include/functions_config.php:997 +#: ../../include/functions_config.php:1009 msgid "Graph color #4" msgstr "" -#: ../../include/functions_config.php:1001 +#: ../../include/functions_config.php:1013 msgid "Graph color #5" msgstr "" -#: ../../include/functions_config.php:1005 +#: ../../include/functions_config.php:1017 msgid "Graph color #6" msgstr "" -#: ../../include/functions_config.php:1009 +#: ../../include/functions_config.php:1021 msgid "Graph color #7" msgstr "" -#: ../../include/functions_config.php:1013 +#: ../../include/functions_config.php:1025 msgid "Graph color #8" msgstr "" -#: ../../include/functions_config.php:1017 +#: ../../include/functions_config.php:1029 msgid "Graph color #9" msgstr "" -#: ../../include/functions_config.php:1021 +#: ../../include/functions_config.php:1033 msgid "Graph color #10" msgstr "" -#: ../../include/functions_config.php:1054 +#: ../../include/functions_config.php:1066 msgid "Show QR code header" msgstr "" -#: ../../include/functions_config.php:1082 +#: ../../include/functions_config.php:1094 msgid "Custom logo white background" msgstr "" -#: ../../include/functions_config.php:1110 +#: ../../include/functions_config.php:1122 msgid "Custom title header" msgstr "" -#: ../../include/functions_config.php:1114 +#: ../../include/functions_config.php:1126 msgid "Custom subtitle header" msgstr "" -#: ../../include/functions_config.php:1134 +#: ../../include/functions_config.php:1146 msgid "Login background" msgstr "" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1150 +#: ../../include/functions_config.php:1198 msgid "Custom Docs url" msgstr "" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1154 +#: ../../include/functions_config.php:1202 msgid "Custom support url" msgstr "" -#: ../../include/functions_config.php:1162 +#: ../../include/functions_config.php:1174 msgid "Custom logo metaconsole (white background)" msgstr "" -#: ../../include/functions_config.php:1166 +#: ../../include/functions_config.php:1178 msgid "Custom logo login metaconsole" msgstr "" -#: ../../include/functions_config.php:1170 +#: ../../include/functions_config.php:1182 msgid "Custom splash login metaconsole" msgstr "" -#: ../../include/functions_config.php:1174 +#: ../../include/functions_config.php:1186 msgid "Custom title1 login metaconsole" msgstr "" -#: ../../include/functions_config.php:1178 +#: ../../include/functions_config.php:1190 msgid "Custom title2 login metaconsole" msgstr "" -#: ../../include/functions_config.php:1182 +#: ../../include/functions_config.php:1194 msgid "Login background metaconsole" msgstr "" -#: ../../include/functions_config.php:1206 +#: ../../include/functions_config.php:1218 msgid "Default line favourite_view for the Visual Console" msgstr "" -#: ../../include/functions_config.php:1210 +#: ../../include/functions_config.php:1222 msgid "Default line menu items for the Visual Console" msgstr "" -#: ../../include/functions_config.php:1222 +#: ../../include/functions_config.php:1238 msgid "Default line menu items for the Services" msgstr "" -#: ../../include/functions_config.php:1254 +#: ../../include/functions_config.php:1270 msgid "Show units in values report" msgstr "" -#: ../../include/functions_config.php:1262 +#: ../../include/functions_config.php:1278 msgid "Autohidden menu" msgstr "" -#: ../../include/functions_config.php:1266 +#: ../../include/functions_config.php:1282 msgid "Visual animation" msgstr "" -#: ../../include/functions_config.php:1282 +#: ../../include/functions_config.php:1298 msgid "Fixed graph" msgstr "" -#: ../../include/functions_config.php:1290 +#: ../../include/functions_config.php:1306 msgid "Paginate module" msgstr "" -#: ../../include/functions_config.php:1294 +#: ../../include/functions_config.php:1310 #: ../../include/class/ExternalTools.class.php:323 msgid "Custom graphviz directory" msgstr "" -#: ../../include/functions_config.php:1302 +#: ../../include/functions_config.php:1318 msgid "Shortened module graph data" msgstr "" -#: ../../include/functions_config.php:1310 +#: ../../include/functions_config.php:1326 msgid "Show empty groups in group view." msgstr "" -#: ../../include/functions_config.php:1318 +#: ../../include/functions_config.php:1334 msgid "Default type of module charts." msgstr "" -#: ../../include/functions_config.php:1322 +#: ../../include/functions_config.php:1338 msgid "Default Number of elements in Custom Graph." msgstr "" -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1342 msgid "Default type of interface charts." msgstr "" -#: ../../include/functions_config.php:1342 +#: ../../include/functions_config.php:1358 msgid "Display lateral menus with left click" msgstr "" -#: ../../include/functions_config.php:1351 +#: ../../include/functions_config.php:1367 msgid "Service item padding size" msgstr "" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1372 msgid "Default percentil" msgstr "" -#: ../../include/functions_config.php:1360 +#: ../../include/functions_config.php:1376 msgid "Default full scale (TIP)" msgstr "" -#: ../../include/functions_config.php:1364 +#: ../../include/functions_config.php:1380 msgid "Default soft graphs" msgstr "" -#: ../../include/functions_config.php:1368 +#: ../../include/functions_config.php:1384 msgid "Default zoom graphs" msgstr "" -#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1393 msgid "Default height of the chart image" msgstr "" -#: ../../include/functions_config.php:1399 +#: ../../include/functions_config.php:1415 msgid "Add the custom post process" msgstr "" -#: ../../include/functions_config.php:1407 +#: ../../include/functions_config.php:1423 msgid "Delete the custom post process" msgstr "" -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1477 msgid "Add custom module unit" msgstr "" -#: ../../include/functions_config.php:1467 +#: ../../include/functions_config.php:1483 msgid "Delete custom module unit" msgstr "" -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1540 msgid "Thousand separator" msgstr "" -#: ../../include/functions_config.php:1531 +#: ../../include/functions_config.php:1547 msgid "Name storage path" msgstr "" -#: ../../include/functions_config.php:1574 +#: ../../include/functions_config.php:1586 msgid "Sflow name dir" msgstr "" -#: ../../include/functions_config.php:1617 +#: ../../include/functions_config.php:1629 msgid "IP ElasticSearch server" msgstr "" -#: ../../include/functions_config.php:1621 +#: ../../include/functions_config.php:1633 msgid "Port ElasticSearch server" msgstr "" -#: ../../include/functions_config.php:1668 +#: ../../include/functions_config.php:1680 msgid "Enable history trap" msgstr "" -#: ../../include/functions_config.php:1688 +#: ../../include/functions_config.php:1700 msgid "Enable history database advanced" msgstr "" -#: ../../include/functions_config.php:1697 +#: ../../include/functions_config.php:1709 msgid "String Days" msgstr "" -#: ../../include/functions_config.php:1713 +#: ../../include/functions_config.php:1725 msgid "Trap Days" msgstr "" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1733 msgid "Trap history purge" msgstr "" -#: ../../include/functions_config.php:1793 +#: ../../include/functions_config.php:1805 msgid "Historical database traps purge" msgstr "" -#: ../../include/functions_config.php:1816 +#: ../../include/functions_config.php:1828 msgid "eHorus user login" msgstr "" -#: ../../include/functions_config.php:1828 +#: ../../include/functions_config.php:1840 msgid "eHorus API hostname" msgstr "" -#: ../../include/functions_config.php:1832 +#: ../../include/functions_config.php:1844 msgid "eHorus API port" msgstr "" -#: ../../include/functions_config.php:1836 +#: ../../include/functions_config.php:1848 msgid "eHorus request timeout" msgstr "" -#: ../../include/functions_config.php:1840 +#: ../../include/functions_config.php:1852 msgid "eHorus id custom field" msgstr "" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1858 msgid "Integria user login" msgstr "" -#: ../../include/functions_config.php:1854 +#: ../../include/functions_config.php:1866 msgid "Integria user" msgstr "" -#: ../../include/functions_config.php:1858 +#: ../../include/functions_config.php:1870 msgid "Integria password" msgstr "" -#: ../../include/functions_config.php:1872 +#: ../../include/functions_config.php:1884 msgid "integria API hostname" msgstr "" -#: ../../include/functions_config.php:1880 +#: ../../include/functions_config.php:1892 msgid "Integria request timeout" msgstr "" -#: ../../include/functions_config.php:1884 +#: ../../include/functions_config.php:1896 msgid "Integria default group" msgstr "" -#: ../../include/functions_config.php:1888 +#: ../../include/functions_config.php:1900 msgid "Integria custom response default group" msgstr "" -#: ../../include/functions_config.php:1892 +#: ../../include/functions_config.php:1904 msgid "Integria default priority" msgstr "" -#: ../../include/functions_config.php:1896 +#: ../../include/functions_config.php:1908 msgid "Integria custom response default priority" msgstr "" -#: ../../include/functions_config.php:1900 +#: ../../include/functions_config.php:1912 msgid "Integria default creator" msgstr "" -#: ../../include/functions_config.php:1904 +#: ../../include/functions_config.php:1916 msgid "Integria default owner" msgstr "" -#: ../../include/functions_config.php:1908 +#: ../../include/functions_config.php:1920 msgid "Integria custom response default owner" msgstr "" -#: ../../include/functions_config.php:1912 +#: ../../include/functions_config.php:1924 msgid "Integria default ticket type" msgstr "" -#: ../../include/functions_config.php:1916 +#: ../../include/functions_config.php:1928 msgid "Integria custom response default ticket type" msgstr "" -#: ../../include/functions_config.php:1920 +#: ../../include/functions_config.php:1932 msgid "Integria default ticket status" msgstr "" -#: ../../include/functions_config.php:1924 +#: ../../include/functions_config.php:1936 msgid "Integria custom response default ticket status" msgstr "" -#: ../../include/functions_config.php:1928 +#: ../../include/functions_config.php:1940 msgid "Integria default ticket title" msgstr "" -#: ../../include/functions_config.php:1932 +#: ../../include/functions_config.php:1944 msgid "Integria custom response default ticket title" msgstr "" -#: ../../include/functions_config.php:1936 +#: ../../include/functions_config.php:1948 msgid "Integria default ticket content" msgstr "" -#: ../../include/functions_config.php:1940 +#: ../../include/functions_config.php:1952 msgid "Integria custom response default ticket content" msgstr "" -#: ../../include/functions_config.php:1946 +#: ../../include/functions_config.php:1958 msgid "Module Library User" msgstr "" -#: ../../include/functions_config.php:1950 +#: ../../include/functions_config.php:1962 msgid "Module Library Password" msgstr "" -#: ../../include/functions_config.php:1956 +#: ../../include/functions_config.php:1968 msgid "WebSocket bind address" msgstr "" -#: ../../include/functions_config.php:1960 +#: ../../include/functions_config.php:1972 msgid "WebSocket port" msgstr "" -#: ../../include/functions_config.php:1983 +#: ../../include/functions_config.php:1995 #, php-format msgid "Update failed. The next values could not be updated:
-%s" msgstr "" -#: ../../include/functions_config.php:2662 -#: ../../operation/agentes/networkmap.dinamic.php:220 +#: ../../include/functions_config.php:2682 +#: ../../operation/agentes/networkmap.dinamic.php:228 msgid "Pandora FMS" msgstr "" -#: ../../include/functions_config.php:2670 +#: ../../include/functions_config.php:2690 msgid "PandoraFMS Metaconsole" msgstr "" -#: ../../include/functions_config.php:2674 +#: ../../include/functions_config.php:2694 msgid "Centralized operation console" msgstr "" @@ -46387,7 +46802,7 @@ msgstr "" msgid "Resolution %s" msgstr "" -#: ../../include/class/Tree.class.php:790 +#: ../../include/class/Tree.class.php:813 msgid "Module alerts" msgstr "" @@ -46544,7 +46959,6 @@ msgid "Sound not exist" msgstr "" #: ../../include/class/EventSound.class.php:188 -#: ../../operation/events/sound_events.php:261 msgid "Sounds" msgstr "" @@ -46553,7 +46967,7 @@ msgid "Add new sound" msgstr "" #: ../../include/class/EventSound.class.php:212 -msgid "Accoustic console sound list" +msgid "Acoustic console sound list" msgstr "" #: ../../include/class/EventSound.class.php:253 @@ -46597,7 +47011,7 @@ msgid "Something is wrong" msgstr "" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1926 msgid "What happened?" msgstr "" @@ -46610,7 +47024,7 @@ msgid "Submit" msgstr "" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364 #: ../../general/header.php:366 msgid "Feedback" msgstr "" @@ -46668,7 +47082,7 @@ msgid "%s Licence Information" msgstr "" #: ../../include/class/Diagnostics.class.php:274 -#: ../../include/class/Diagnostics.class.php:1274 +#: ../../include/class/Diagnostics.class.php:1278 msgid "Status of the attachment folder" msgstr "" @@ -46861,7 +47275,7 @@ msgstr "" #: ../../include/class/Diagnostics.class.php:759 #: ../../include/class/Diagnostics.class.php:777 -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3072 msgid "Ip" msgstr "" @@ -46998,423 +47412,423 @@ msgstr "" msgid "Table fragmentation status" msgstr "" -#: ../../include/class/Diagnostics.class.php:1048 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Size server logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1052 +#: ../../include/class/Diagnostics.class.php:1056 msgid "Status server logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1057 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Size error logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1061 +#: ../../include/class/Diagnostics.class.php:1065 msgid "Status error logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1066 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Size console logs (current value)" msgstr "" -#: ../../include/class/Diagnostics.class.php:1070 +#: ../../include/class/Diagnostics.class.php:1074 msgid "Status console logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1105 +#: ../../include/class/Diagnostics.class.php:1109 msgid "License capacity is less than 90 percent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1108 +#: ../../include/class/Diagnostics.class.php:1112 msgid "License capacity exceeds 90 percent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1116 +#: ../../include/class/Diagnostics.class.php:1120 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" msgstr "" -#: ../../include/class/Diagnostics.class.php:1121 +#: ../../include/class/Diagnostics.class.php:1125 msgid "The average of modules per agent is less than 40" msgstr "" -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 msgid "The system has no load" msgstr "" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1207 msgid "Network Management System" msgstr "" -#: ../../include/class/Diagnostics.class.php:1204 #: ../../include/class/Diagnostics.class.php:1208 +#: ../../include/class/Diagnostics.class.php:1212 msgid "Off" msgstr "" -#: ../../include/class/Diagnostics.class.php:1215 +#: ../../include/class/Diagnostics.class.php:1219 msgid "Status of agents capacity" msgstr "" -#: ../../include/class/Diagnostics.class.php:1220 +#: ../../include/class/Diagnostics.class.php:1224 msgid "Status of average modules per agent" msgstr "" -#: ../../include/class/Diagnostics.class.php:1226 +#: ../../include/class/Diagnostics.class.php:1230 msgid "Interval average of the network modules" msgstr "" -#: ../../include/class/Diagnostics.class.php:1256 +#: ../../include/class/Diagnostics.class.php:1260 msgid "The attached folder contains more than 700 files." msgstr "" -#: ../../include/class/Diagnostics.class.php:1261 +#: ../../include/class/Diagnostics.class.php:1265 msgid "The attached folder contains less than 700 files." msgstr "" -#: ../../include/class/Diagnostics.class.php:1270 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Total files in the attached folder" msgstr "" -#: ../../include/class/Diagnostics.class.php:1305 +#: ../../include/class/Diagnostics.class.php:1309 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -#: ../../include/class/Diagnostics.class.php:1310 +#: ../../include/class/Diagnostics.class.php:1314 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "" -#: ../../include/class/Diagnostics.class.php:1319 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Total data in tagente_datos table" msgstr "" -#: ../../include/class/Diagnostics.class.php:1323 +#: ../../include/class/Diagnostics.class.php:1327 msgid "Tagente_datos table status" msgstr "" -#: ../../include/class/Diagnostics.class.php:1359 +#: ../../include/class/Diagnostics.class.php:1363 msgid "Threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1369 +#: ../../include/class/Diagnostics.class.php:1373 msgid "Total threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1376 +#: ../../include/class/Diagnostics.class.php:1380 msgid "Current pandora_server running threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1380 +#: ../../include/class/Diagnostics.class.php:1384 msgid "" "There's more pandora_server threads than configured, are you running " "multiple servers simultaneusly?." msgstr "" -#: ../../include/class/Diagnostics.class.php:1514 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -#: ../../include/class/Diagnostics.class.php:1518 +#: ../../include/class/Diagnostics.class.php:1522 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" msgstr "" -#: ../../include/class/Diagnostics.class.php:1780 +#: ../../include/class/Diagnostics.class.php:1784 msgid "You have more than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1783 +#: ../../include/class/Diagnostics.class.php:1787 msgid "You have less than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1950 +#: ../../include/class/Diagnostics.class.php:1954 msgid "Include installation data" msgstr "" -#: ../../include/class/Diagnostics.class.php:1987 +#: ../../include/class/Diagnostics.class.php:1991 msgid "Hello Feedback-Men" msgstr "" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2001 msgid "Hello" msgstr "" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2005 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2014 msgid "Find some files attached to this mail" msgstr "" -#: ../../include/class/Diagnostics.class.php:2013 +#: ../../include/class/Diagnostics.class.php:2017 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" -#: ../../include/class/Diagnostics.class.php:2016 +#: ../../include/class/Diagnostics.class.php:2020 msgid "CSV contains the statuses of every product file" msgstr "" -#: ../../include/class/Diagnostics.class.php:2021 +#: ../../include/class/Diagnostics.class.php:2025 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail " "to \"%s\"" msgstr "" -#: ../../include/class/Diagnostics.class.php:2025 +#: ../../include/class/Diagnostics.class.php:2029 msgid "LEGAL WARNING" msgstr "" -#: ../../include/class/Diagnostics.class.php:2027 +#: ../../include/class/Diagnostics.class.php:2031 msgid "" "The information contained in this transmission is privileged and " "confidential information intended only for the use of the individual or " "entity named above" msgstr "" -#: ../../include/class/Diagnostics.class.php:2031 +#: ../../include/class/Diagnostics.class.php:2035 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this " "communication is strictly prohibited" msgstr "" -#: ../../include/class/Diagnostics.class.php:2035 +#: ../../include/class/Diagnostics.class.php:2039 msgid "If you have received this transmission in error, do not read it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2039 +#: ../../include/class/Diagnostics.class.php:2043 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2118 +#: ../../include/class/Diagnostics.class.php:2122 msgid "Invalid cron task" msgstr "" -#: ../../include/class/Diagnostics.class.php:2119 +#: ../../include/class/Diagnostics.class.php:2123 msgid "Sending of information has been processed" msgstr "" -#: ../../include/class/Diagnostics.class.php:2154 -#: ../../include/class/Diagnostics.class.php:2164 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2168 msgid "Diagnostics Info" msgstr "" -#: ../../include/class/Diagnostics.class.php:2272 -#: ../../include/class/Diagnostics.class.php:2282 +#: ../../include/class/Diagnostics.class.php:2276 +#: ../../include/class/Diagnostics.class.php:2286 msgid "PHP Info" msgstr "" -#: ../../include/class/NetworkMap.class.php:2382 +#: ../../include/class/NetworkMap.class.php:2388 msgid "Failed to generate dotmap, please select different layout schema" msgstr "" -#: ../../include/class/NetworkMap.class.php:2524 +#: ../../include/class/NetworkMap.class.php:2530 msgid "Failed to retrieve graph data." msgstr "" -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2814 msgid "Holding Area" msgstr "" -#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/NetworkMap.class.php:2941 #, php-format msgid "Edit node %s" msgstr "" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Show details and options" msgstr "" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:2944 msgid "Add a interface link" msgstr "" -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set parent interface" msgstr "" -#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/NetworkMap.class.php:2946 msgid "Set as children" msgstr "" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2947 msgid "Set parent" msgstr "" -#: ../../include/class/NetworkMap.class.php:2942 -#: ../../include/class/NetworkMap.class.php:2954 +#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2960 msgid "Abort the action of set relationship" msgstr "" -#: ../../include/class/NetworkMap.class.php:2944 -#: ../../include/class/NetworkMap.class.php:3344 +#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:3350 msgid "Add node" msgstr "" -#: ../../include/class/NetworkMap.class.php:2945 +#: ../../include/class/NetworkMap.class.php:2951 msgid "Set center" msgstr "" -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2950 +#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2956 msgid "Proceed" msgstr "" -#: ../../include/class/NetworkMap.class.php:2948 +#: ../../include/class/NetworkMap.class.php:2954 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." msgstr "" -#: ../../include/class/NetworkMap.class.php:2952 +#: ../../include/class/NetworkMap.class.php:2958 msgid "Restart map" msgstr "" -#: ../../include/class/NetworkMap.class.php:2953 +#: ../../include/class/NetworkMap.class.php:2959 msgid "Abort the interface relationship" msgstr "" -#: ../../include/class/NetworkMap.class.php:2971 -#: ../../include/class/NetworkMap.class.php:3020 +#: ../../include/class/NetworkMap.class.php:2977 +#: ../../include/class/NetworkMap.class.php:3026 msgid "Edit node" msgstr "" -#: ../../include/class/NetworkMap.class.php:2981 -#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:2987 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Adresses" msgstr "" -#: ../../include/class/NetworkMap.class.php:2983 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:2989 +#: ../../include/class/NetworkMap.class.php:3047 msgid "OS type" msgstr "" -#: ../../include/class/NetworkMap.class.php:2990 -#: ../../include/class/NetworkMap.class.php:2991 -#: ../../include/class/NetworkMap.class.php:3052 -#: ../../include/class/NetworkMap.class.php:3053 +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3059 msgid "Node Details" msgstr "" -#: ../../include/class/NetworkMap.class.php:3078 -#: ../../include/class/NetworkMap.class.php:3079 +#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3085 msgid "Interface Information (SNMP)" msgstr "" -#: ../../include/class/NetworkMap.class.php:3092 +#: ../../include/class/NetworkMap.class.php:3098 msgid "Shape" msgstr "" -#: ../../include/class/NetworkMap.class.php:3095 +#: ../../include/class/NetworkMap.class.php:3101 msgid "Circle" msgstr "" -#: ../../include/class/NetworkMap.class.php:3096 +#: ../../include/class/NetworkMap.class.php:3102 msgid "Square" msgstr "" -#: ../../include/class/NetworkMap.class.php:3097 +#: ../../include/class/NetworkMap.class.php:3103 msgid "Rhombus" msgstr "" -#: ../../include/class/NetworkMap.class.php:3113 +#: ../../include/class/NetworkMap.class.php:3119 msgid "name node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3125 -#: ../../include/class/NetworkMap.class.php:3495 +#: ../../include/class/NetworkMap.class.php:3131 +#: ../../include/class/NetworkMap.class.php:3501 msgid "name fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3133 -#: ../../include/class/NetworkMap.class.php:3503 +#: ../../include/class/NetworkMap.class.php:3139 +#: ../../include/class/NetworkMap.class.php:3509 msgid "Networkmap to link" msgstr "" -#: ../../include/class/NetworkMap.class.php:3147 +#: ../../include/class/NetworkMap.class.php:3153 msgid "Update fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3175 -#: ../../include/class/NetworkMap.class.php:3176 +#: ../../include/class/NetworkMap.class.php:3181 +#: ../../include/class/NetworkMap.class.php:3182 msgid "Node options" msgstr "" -#: ../../include/class/NetworkMap.class.php:3187 -#: ../../include/class/NetworkMap.class.php:3281 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3287 msgid "Node source" msgstr "" -#: ../../include/class/NetworkMap.class.php:3188 -#: ../../include/class/NetworkMap.class.php:3282 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Interface source" msgstr "" -#: ../../include/class/NetworkMap.class.php:3189 -#: ../../include/class/NetworkMap.class.php:3283 +#: ../../include/class/NetworkMap.class.php:3195 +#: ../../include/class/NetworkMap.class.php:3289 msgid "Interface Target" msgstr "" -#: ../../include/class/NetworkMap.class.php:3191 -#: ../../include/class/NetworkMap.class.php:3284 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3290 msgid "Node target" msgstr "" -#: ../../include/class/NetworkMap.class.php:3192 +#: ../../include/class/NetworkMap.class.php:3198 msgid "E." msgstr "" -#: ../../include/class/NetworkMap.class.php:3254 +#: ../../include/class/NetworkMap.class.php:3260 msgid "There are not relations" msgstr "" -#: ../../include/class/NetworkMap.class.php:3327 +#: ../../include/class/NetworkMap.class.php:3333 msgid "Add interface link" msgstr "" -#: ../../include/class/NetworkMap.class.php:3372 -#: ../../include/class/NetworkMap.class.php:3399 -#: ../../include/class/NetworkMap.class.php:3400 -#: ../../include/class/NetworkMap.class.php:3463 -#: ../../include/class/NetworkMap.class.php:3479 -#: ../../include/class/NetworkMap.class.php:3536 +#: ../../include/class/NetworkMap.class.php:3378 +#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3406 +#: ../../include/class/NetworkMap.class.php:3469 +#: ../../include/class/NetworkMap.class.php:3485 +#: ../../include/class/NetworkMap.class.php:3542 msgid "Add agent node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3478 +#: ../../include/class/NetworkMap.class.php:3484 msgid "Add agent node (filter by group)" msgstr "" -#: ../../include/class/NetworkMap.class.php:3520 +#: ../../include/class/NetworkMap.class.php:3526 msgid "Add fictional node" msgstr "" -#: ../../include/class/NetworkMap.class.php:3535 +#: ../../include/class/NetworkMap.class.php:3541 msgid "Add fictional point" msgstr "" -#: ../../include/class/NetworkMap.class.php:3620 +#: ../../include/class/NetworkMap.class.php:3626 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:335 +#: ../../operation/visual_console/legacy_view.php:346 msgid "Until refresh" msgstr "" -#: ../../include/class/NetworkMap.class.php:3775 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Open Minimap" msgstr "" -#: ../../include/class/NetworkMap.class.php:3781 +#: ../../include/class/NetworkMap.class.php:3787 msgid "Hide Labels" msgstr "" @@ -47476,11 +47890,11 @@ msgstr "" msgid "Delete Script" msgstr "" -#: ../../include/class/ManageNetScanScripts.class.php:490 +#: ../../include/class/ManageNetScanScripts.class.php:486 msgid "There are no net scan scripts in the system" msgstr "" -#: ../../include/class/ManageNetScanScripts.class.php:560 +#: ../../include/class/ManageNetScanScripts.class.php:556 msgid "Script fullpath" msgstr "" @@ -47538,12 +47952,12 @@ msgid "Extra (2)" msgstr "" #: ../../include/class/CredentialStore.class.php:986 -#: ../../include/class/CredentialStore.class.php:1307 +#: ../../include/class/CredentialStore.class.php:1309 msgid "Access key ID" msgstr "" #: ../../include/class/CredentialStore.class.php:987 -#: ../../include/class/CredentialStore.class.php:1308 +#: ../../include/class/CredentialStore.class.php:1310 msgid "Secret access key" msgstr "" @@ -47553,22 +47967,22 @@ msgid "Account ID" msgstr "" #: ../../include/class/CredentialStore.class.php:994 -#: ../../include/class/CredentialStore.class.php:1315 +#: ../../include/class/CredentialStore.class.php:1318 msgid "Application secret" msgstr "" #: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1316 +#: ../../include/class/CredentialStore.class.php:1319 msgid "Tenant or domain name" msgstr "" #: ../../include/class/CredentialStore.class.php:996 -#: ../../include/class/CredentialStore.class.php:1317 +#: ../../include/class/CredentialStore.class.php:1320 msgid "Subscription id" msgstr "" #: ../../include/class/CredentialStore.class.php:1000 -#: ../../include/class/CredentialStore.class.php:1333 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Auth JSON" msgstr "" @@ -47589,45 +48003,45 @@ msgid "3" msgstr "" #: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/CredentialStore.class.php:1425 +#: ../../include/class/CredentialStore.class.php:1434 msgid "Authenticated and non-private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1427 +#: ../../include/class/CredentialStore.class.php:1436 msgid "Authenticated and private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1136 -#: ../../include/class/CredentialStore.class.php:1429 +#: ../../include/class/CredentialStore.class.php:1438 msgid "Non-authenticated and non-private method" msgstr "" #: ../../include/class/CredentialStore.class.php:1144 -#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/CredentialStore.class.php:1451 #: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "" #: ../../include/class/CredentialStore.class.php:1179 -#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/CredentialStore.class.php:1485 #: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "" -#: ../../include/class/CredentialStore.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Client ID" msgstr "" -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1327 msgid "Account ID." msgstr "" -#: ../../include/class/CredentialStore.class.php:1648 +#: ../../include/class/CredentialStore.class.php:1657 msgid "Register new key into keystore" msgstr "" -#: ../../include/class/CredentialStore.class.php:1652 +#: ../../include/class/CredentialStore.class.php:1661 msgid "Update key" msgstr "" @@ -47636,9 +48050,9 @@ msgid "Trap subtype" msgstr "" #: ../../include/class/SnmpConsole.class.php:291 -#: ../../include/functions_reporting.php:5890 -#: ../../include/functions_reporting.php:5907 -#: ../../include/functions_reporting.php:5924 +#: ../../include/functions_reporting.php:5899 +#: ../../include/functions_reporting.php:5916 +#: ../../include/functions_reporting.php:5933 msgid "Not triggered" msgstr "" @@ -47648,25 +48062,25 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:309 #: ../../include/class/SnmpConsole.class.php:503 -#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/class/SnmpConsole.class.php:763 #: ../../include/functions_reporting.php:2366 -#: ../../include/functions_reporting.php:4597 -#: ../../include/functions_reporting.php:11390 +#: ../../include/functions_reporting.php:4606 +#: ../../include/functions_reporting.php:11399 msgid "Not validated" msgstr "" #: ../../include/class/SnmpConsole.class.php:310 #: ../../include/class/SnmpConsole.class.php:501 -#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/class/SnmpConsole.class.php:773 #: ../../include/functions_reporting.php:2365 -#: ../../include/functions_reporting.php:4596 -#: ../../include/functions_reporting.php:11389 +#: ../../include/functions_reporting.php:4605 +#: ../../include/functions_reporting.php:11398 #: ../../include/functions_events.php:2547 -#: ../../include/functions_events.php:3269 -#: ../../include/functions_events.php:3544 -#: ../../include/functions_events.php:3553 -#: ../../include/functions_events.php:3560 -#: ../../include/functions_events.php:3567 +#: ../../include/functions_events.php:3274 +#: ../../include/functions_events.php:3549 +#: ../../include/functions_events.php:3558 +#: ../../include/functions_events.php:3565 +#: ../../include/functions_events.php:3572 msgid "Validated" msgstr "" @@ -47674,46 +48088,46 @@ msgstr "" msgid "Group by Enterprise String/IP" msgstr "" -#: ../../include/class/SnmpConsole.class.php:783 +#: ../../include/class/SnmpConsole.class.php:785 #: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "" -#: ../../include/class/SnmpConsole.class.php:902 -#: ../../include/class/SnmpConsole.class.php:903 +#: ../../include/class/SnmpConsole.class.php:904 +#: ../../include/class/SnmpConsole.class.php:905 msgid "Hide details" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Count:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "First trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1365 +#: ../../include/class/SnmpConsole.class.php:1367 msgid "Last trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1403 +#: ../../include/class/SnmpConsole.class.php:1405 msgid "Type:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1410 +#: ../../include/class/SnmpConsole.class.php:1412 msgid "Description:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1417 +#: ../../include/class/SnmpConsole.class.php:1419 msgid "Enterprise String:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1426 -#: ../../include/class/SnmpConsole.class.php:1440 +#: ../../include/class/SnmpConsole.class.php:1428 +#: ../../include/class/SnmpConsole.class.php:1442 msgid "Variable bindings:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1436 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "See more details" msgstr "" @@ -47787,51 +48201,51 @@ msgstr "" msgid "Press enter to search" msgstr "" -#: ../../include/class/TipsWindow.class.php:432 +#: ../../include/class/TipsWindow.class.php:444 msgid "Tip deleted" msgstr "" -#: ../../include/class/TipsWindow.class.php:482 +#: ../../include/class/TipsWindow.class.php:494 msgid "Search by title" msgstr "" -#: ../../include/class/TipsWindow.class.php:683 +#: ../../include/class/TipsWindow.class.php:703 msgid "Tip created" msgstr "" -#: ../../include/class/TipsWindow.class.php:743 -#: ../../include/class/TipsWindow.class.php:911 +#: ../../include/class/TipsWindow.class.php:763 +#: ../../include/class/TipsWindow.class.php:931 msgid "Wrong size, we recommend images of 464x260 px" msgstr "" -#: ../../include/class/TipsWindow.class.php:751 -#: ../../include/class/TipsWindow.class.php:919 +#: ../../include/class/TipsWindow.class.php:771 +#: ../../include/class/TipsWindow.class.php:939 msgid "Please select a image" msgstr "" -#: ../../include/class/TipsWindow.class.php:755 -#: ../../include/class/TipsWindow.class.php:923 +#: ../../include/class/TipsWindow.class.php:775 +#: ../../include/class/TipsWindow.class.php:943 msgid "Add image" msgstr "" -#: ../../include/class/TipsWindow.class.php:758 -#: ../../include/class/TipsWindow.class.php:926 +#: ../../include/class/TipsWindow.class.php:778 +#: ../../include/class/TipsWindow.class.php:946 msgid "Images" msgstr "" -#: ../../include/class/TipsWindow.class.php:823 +#: ../../include/class/TipsWindow.class.php:843 msgid "Tip edited" msgstr "" -#: ../../include/class/TipsWindow.class.php:1096 +#: ../../include/class/TipsWindow.class.php:1116 msgid "Incorrect file" msgstr "" -#: ../../include/class/TipsWindow.class.php:1100 +#: ../../include/class/TipsWindow.class.php:1120 msgid "Format image invalid" msgstr "" -#: ../../include/class/TipsWindow.class.php:1104 +#: ../../include/class/TipsWindow.class.php:1124 msgid "Image size too large" msgstr "" @@ -47840,15 +48254,19 @@ msgstr "" msgid "NetScan Custom" msgstr "" -#: ../../include/class/CustomNetScan.class.php:623 +#: ../../include/class/CustomNetScan.class.php:527 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "" + +#: ../../include/class/CustomNetScan.class.php:622 msgid "Recon script" msgstr "" -#: ../../include/class/CustomNetScan.class.php:663 +#: ../../include/class/CustomNetScan.class.php:662 msgid "Explanation" msgstr "" -#: ../../include/class/CustomNetScan.class.php:679 +#: ../../include/class/CustomNetScan.class.php:678 msgid "macro_desc" msgstr "" @@ -47922,7 +48340,7 @@ msgid "The modules is already added" msgstr "" #: ../../include/class/ModuleTemplates.class.php:1097 -#: ../../include/class/ModuleTemplates.class.php:1361 +#: ../../include/class/ModuleTemplates.class.php:1365 msgid "Add components" msgstr "" @@ -47959,11 +48377,11 @@ msgstr "" msgid "Do you want delete this module?" msgstr "" -#: ../../include/class/ModuleTemplates.class.php:1454 +#: ../../include/class/ModuleTemplates.class.php:1458 msgid "Do you want delete all templates?" msgstr "" -#: ../../include/class/ModuleTemplates.class.php:1457 +#: ../../include/class/ModuleTemplates.class.php:1461 msgid "Do you want delete the selected templates?" msgstr "" @@ -48603,6 +49021,95 @@ msgstr "" msgid "If something is not working as expected, look for this icon and report!" msgstr "" +#: ../../include/class/AgentDeployWizard.class.php:306 +msgid "Please note that all OS must be 64-bit based architecture" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:309 +msgid "Choose your OS" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:321 +#, php-format +msgid "" +"Use your %s Data Server IP address here. It must be possible to establish a " +"connection from the agent to port 41121/tcp of this address." +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:326 +msgid "Server address" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:379 +msgid "view the following instructions" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:385 +msgid "If you need more information regarding agents" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:415 +msgid "Generate installer" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:436 +msgid "Linux agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:446 +msgid "" +"Run the following command in the shell of your Linux server to perform the " +"installation of the generated agent:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:449 +#: ../../include/class/AgentDeployWizard.class.php:491 +msgid "" +"Once installed, you must run the following command to start the software " +"agent service:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:458 +msgid "dependencies" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:460 +msgid "" +"For the correct operation of the Linux agent it is necessary that the server " +"has installed the following " +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:478 +msgid "Windows agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:488 +msgid "Run the following command in cmd.exe as an administrator:" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:510 +msgid "Mac agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:524 +msgid "" +"To complete the installation process, please perform a manual installation " +"and configure the server address to XXX and specify the group as XXX. Thank " +"you for your cooperation." +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:530 +msgid "Click to Download the agent" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:551 +msgid "Change configuration" +msgstr "" + +#: ../../include/class/AgentDeployWizard.class.php:728 +msgid "Installer" +msgstr "" + #: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "" @@ -48750,12 +49257,12 @@ msgstr "" msgid "Current value" msgstr "" -#: ../../include/class/AgentWizard.class.php:5716 +#: ../../include/class/AgentWizard.class.php:5712 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "" -#: ../../include/class/AgentWizard.class.php:6182 +#: ../../include/class/AgentWizard.class.php:6178 msgid "Modules about to be created" msgstr "" @@ -48953,432 +49460,432 @@ msgstr "" msgid "Event Report Module" msgstr "" -#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3344 msgid "Agent/Modules" msgstr "" -#: ../../include/functions_reporting.php:3432 +#: ../../include/functions_reporting.php:3441 msgid "Agent/Modules Status" msgstr "" -#: ../../include/functions_reporting.php:3581 +#: ../../include/functions_reporting.php:3590 msgid "Exception - Everything" msgstr "" -#: ../../include/functions_reporting.php:3587 +#: ../../include/functions_reporting.php:3596 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3590 +#: ../../include/functions_reporting.php:3599 #, php-format msgid "Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3595 +#: ../../include/functions_reporting.php:3604 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3598 +#: ../../include/functions_reporting.php:3607 #, php-format msgid "Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3603 +#: ../../include/functions_reporting.php:3612 #, php-format msgid "Exception - Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3606 +#: ../../include/functions_reporting.php:3615 #, php-format msgid "Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3611 +#: ../../include/functions_reporting.php:3620 #, php-format msgid "Exception - Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3614 +#: ../../include/functions_reporting.php:3623 #, php-format msgid "Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3619 +#: ../../include/functions_reporting.php:3628 #, php-format msgid "Exception - Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3622 +#: ../../include/functions_reporting.php:3631 #, php-format msgid "Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3627 +#: ../../include/functions_reporting.php:3636 #, php-format msgid "Exception - Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3630 +#: ../../include/functions_reporting.php:3639 #, php-format msgid "Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3634 +#: ../../include/functions_reporting.php:3643 msgid "Exception - Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3635 +#: ../../include/functions_reporting.php:3644 msgid "Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3639 +#: ../../include/functions_reporting.php:3648 msgid "Exception - Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3640 +#: ../../include/functions_reporting.php:3649 msgid "Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3920 +#: ../../include/functions_reporting.php:3929 msgid "There are no Modules under those conditions." msgstr "" -#: ../../include/functions_reporting.php:3924 +#: ../../include/functions_reporting.php:3933 #, php-format msgid "There are no Modules over or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3928 +#: ../../include/functions_reporting.php:3937 #, php-format msgid "There are no Modules less or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3932 +#: ../../include/functions_reporting.php:3941 #, php-format msgid "There are no Modules less %s." msgstr "" -#: ../../include/functions_reporting.php:3936 +#: ../../include/functions_reporting.php:3945 #, php-format msgid "There are no Modules over %s." msgstr "" -#: ../../include/functions_reporting.php:3940 +#: ../../include/functions_reporting.php:3949 #, php-format msgid "There are no Modules equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3944 +#: ../../include/functions_reporting.php:3953 #, php-format msgid "There are no Modules not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3948 +#: ../../include/functions_reporting.php:3957 msgid "There are no Modules normal status" msgstr "" -#: ../../include/functions_reporting.php:3952 +#: ../../include/functions_reporting.php:3961 msgid "There are no Modules at critial or warning status" msgstr "" -#: ../../include/functions_reporting.php:4380 +#: ../../include/functions_reporting.php:4389 msgid "Event Report Agent" msgstr "" -#: ../../include/functions_reporting.php:4799 +#: ../../include/functions_reporting.php:4808 msgid "Database Serialized" msgstr "" -#: ../../include/functions_reporting.php:4995 +#: ../../include/functions_reporting.php:5004 msgid "Last Value" msgstr "" -#: ../../include/functions_reporting.php:5045 -#: ../../include/functions_reporting.php:5088 +#: ../../include/functions_reporting.php:5054 +#: ../../include/functions_reporting.php:5097 msgid "No data to display within the selected interval" msgstr "" -#: ../../include/functions_reporting.php:5319 +#: ../../include/functions_reporting.php:5328 msgid "Network interfaces report" msgstr "" -#: ../../include/functions_reporting.php:5413 +#: ../../include/functions_reporting.php:5422 msgid "Custom render report" msgstr "" -#: ../../include/functions_reporting.php:5453 -#: ../../include/functions_reporting.php:5479 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5488 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" -#: ../../include/functions_reporting.php:5658 +#: ../../include/functions_reporting.php:5667 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -#: ../../include/functions_reporting.php:5683 +#: ../../include/functions_reporting.php:5692 msgid "bytes/s" msgstr "" -#: ../../include/functions_reporting.php:6350 +#: ../../include/functions_reporting.php:6359 msgid "SQL Graph Vertical Bars" msgstr "" -#: ../../include/functions_reporting.php:6354 +#: ../../include/functions_reporting.php:6363 msgid "SQL Graph Horizontal Bars" msgstr "" -#: ../../include/functions_reporting.php:6358 +#: ../../include/functions_reporting.php:6367 msgid "SQL Graph Pie" msgstr "" -#: ../../include/functions_reporting.php:6585 +#: ../../include/functions_reporting.php:6594 msgid "Netflow Area" msgstr "" -#: ../../include/functions_reporting.php:6589 +#: ../../include/functions_reporting.php:6598 msgid "Netflow Summary" msgstr "" -#: ../../include/functions_reporting.php:6593 +#: ../../include/functions_reporting.php:6602 msgid "Netflow Data" msgstr "" -#: ../../include/functions_reporting.php:6601 +#: ../../include/functions_reporting.php:6610 msgid "Unknown report" msgstr "" -#: ../../include/functions_reporting.php:6695 +#: ../../include/functions_reporting.php:6704 msgid "Prediction Date" msgstr "" -#: ../../include/functions_reporting.php:7705 +#: ../../include/functions_reporting.php:7714 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -#: ../../include/functions_reporting.php:9118 -#: ../../include/functions_reporting.php:9836 +#: ../../include/functions_reporting.php:9127 +#: ../../include/functions_reporting.php:9845 msgid "No Address" msgstr "" -#: ../../include/functions_reporting.php:10135 +#: ../../include/functions_reporting.php:10144 msgid "" "The monitor have no data in this range of dates or monitor type is not " "numeric" msgstr "" -#: ../../include/functions_reporting.php:10153 +#: ../../include/functions_reporting.php:10162 msgid "The monitor type is not numeric" msgstr "" -#: ../../include/functions_reporting.php:10579 +#: ../../include/functions_reporting.php:10588 msgid "Maximum" msgstr "" -#: ../../include/functions_reporting.php:10657 +#: ../../include/functions_reporting.php:10666 msgid "Automatic combined graph" msgstr "" -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12088 +#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12151 msgid "Server health" msgstr "" -#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12088 #, php-format msgid "%d Downed servers" msgstr "" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12107 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12157 msgid "Monitor health" msgstr "" -#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12093 #, php-format msgid "%d Not Normal monitors" msgstr "" -#: ../../include/functions_reporting.php:12084 -#: ../../include/functions_reporting.php:12108 +#: ../../include/functions_reporting.php:12093 +#: ../../include/functions_reporting.php:12117 msgid "of monitors up" msgstr "" -#: ../../include/functions_reporting.php:12089 -msgid "Module sanityX" +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12120 +#: ../../include/functions_reporting.php:12163 +msgid "Module sanity" msgstr "" -#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12098 #, php-format msgid "%d Not inited monitors" msgstr "" -#: ../../include/functions_reporting.php:12089 -#: ../../include/functions_reporting.php:12112 +#: ../../include/functions_reporting.php:12098 +#: ../../include/functions_reporting.php:12121 msgid "of total modules inited" msgstr "" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:13202 -#: ../../include/functions_reporting.php:13212 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:13275 +#: ../../include/functions_reporting.php:13285 #, php-format msgid "%d Fired alerts" msgstr "" -#: ../../include/functions_reporting.php:12094 -#: ../../include/functions_reporting.php:12116 +#: ../../include/functions_reporting.php:12103 +#: ../../include/functions_reporting.php:12125 msgid "of defined alerts not fired" msgstr "" -#: ../../include/functions_reporting.php:12111 -msgid "Module sanity" -msgstr "" - -#: ../../include/functions_reporting.php:12184 -#: ../../include/functions_groups.php:2733 +#: ../../include/functions_reporting.php:12257 +#: ../../include/functions_groups.php:2758 msgid "Defined and fired alerts" msgstr "" -#: ../../include/functions_reporting.php:12363 +#: ../../include/functions_reporting.php:12436 msgid "Defined users" msgstr "" -#: ../../include/functions_reporting.php:13059 +#: ../../include/functions_reporting.php:13132 msgid "Agent without data" msgstr "" -#: ../../include/functions_reporting.php:13198 +#: ../../include/functions_reporting.php:13271 #, php-format msgid "%d Normal modules" msgstr "" -#: ../../include/functions_reporting.php:13199 +#: ../../include/functions_reporting.php:13272 #, php-format msgid "%d Critical modules" msgstr "" -#: ../../include/functions_reporting.php:13200 +#: ../../include/functions_reporting.php:13273 #, php-format msgid "%d Warning modules" msgstr "" -#: ../../include/functions_reporting.php:13201 +#: ../../include/functions_reporting.php:13274 #, php-format msgid "%d Unknown modules" msgstr "" -#: ../../include/functions_reporting.php:13206 +#: ../../include/functions_reporting.php:13279 #, php-format msgid "%d Total agents" msgstr "" -#: ../../include/functions_reporting.php:13207 +#: ../../include/functions_reporting.php:13280 #, php-format msgid "%d Normal agents" msgstr "" -#: ../../include/functions_reporting.php:13208 +#: ../../include/functions_reporting.php:13281 #, php-format msgid "%d Critical agents" msgstr "" -#: ../../include/functions_reporting.php:13209 +#: ../../include/functions_reporting.php:13282 #, php-format msgid "%d Warning agents" msgstr "" -#: ../../include/functions_reporting.php:13210 +#: ../../include/functions_reporting.php:13283 #, php-format msgid "%d Unknown agents" msgstr "" -#: ../../include/functions_reporting.php:13211 +#: ../../include/functions_reporting.php:13284 #, php-format msgid "%d not init agents" msgstr "" -#: ../../include/functions_reporting.php:14639 +#: ../../include/functions_reporting.php:14712 msgid "Total running modules" msgstr "" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Ratio" msgstr "" -#: ../../include/functions_reporting.php:14642 -#: ../../include/functions_reporting.php:14657 -#: ../../include/functions_reporting.php:14669 -#: ../../include/functions_reporting.php:14687 -#: ../../include/functions_reporting.php:14699 -#: ../../include/functions_reporting.php:14711 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14715 +#: ../../include/functions_reporting.php:14730 +#: ../../include/functions_reporting.php:14742 +#: ../../include/functions_reporting.php:14760 +#: ../../include/functions_reporting.php:14772 +#: ../../include/functions_reporting.php:14784 +#: ../../include/functions_reporting.php:14796 msgid "Modules by second" msgstr "" -#: ../../include/functions_reporting.php:14654 +#: ../../include/functions_reporting.php:14727 msgid "Local modules" msgstr "" -#: ../../include/functions_reporting.php:14664 +#: ../../include/functions_reporting.php:14737 msgid "Network modules" msgstr "" -#: ../../include/functions_reporting.php:14683 +#: ../../include/functions_reporting.php:14756 msgid "Plugin modules" msgstr "" -#: ../../include/functions_reporting.php:14695 +#: ../../include/functions_reporting.php:14768 msgid "Prediction modules" msgstr "" -#: ../../include/functions_reporting.php:14707 +#: ../../include/functions_reporting.php:14780 msgid "WMI modules" msgstr "" -#: ../../include/functions_reporting.php:14719 +#: ../../include/functions_reporting.php:14792 msgid "Web modules" msgstr "" -#: ../../include/functions_reporting.php:14757 +#: ../../include/functions_reporting.php:14830 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Start condition" msgstr "" -#: ../../include/functions_reporting.php:14870 +#: ../../include/functions_reporting.php:14943 msgid "Stop condition" msgstr "" -#: ../../include/functions_reporting.php:14880 +#: ../../include/functions_reporting.php:14953 msgid "Weekly:" msgstr "" -#: ../../include/functions_reporting.php:14922 +#: ../../include/functions_reporting.php:14995 msgid "Monthly:" msgstr "" -#: ../../include/functions_reporting.php:15473 +#: ../../include/functions_reporting.php:15546 msgid "Module Histogram Graph" msgstr "" -#: ../../include/functions_reporting.php:15836 +#: ../../include/functions_reporting.php:15913 msgid "Attached to this email there's a PDF file of the" msgstr "" -#: ../../include/functions_reporting.php:15837 +#: ../../include/functions_reporting.php:15914 msgid "report" msgstr "" @@ -49434,84 +49941,84 @@ msgstr "" msgid "Something gone wrong creating directory" msgstr "" -#: ../../include/functions_filemanager.php:541 -#: ../../include/functions_filemanager.php:821 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:838 msgid "Create a Directory" msgstr "" -#: ../../include/functions_filemanager.php:545 -#: ../../include/functions_filemanager.php:832 -#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:559 +#: ../../include/functions_filemanager.php:850 +#: ../../include/functions_filemanager.php:853 msgid "Create File" msgstr "" -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:846 -#: ../../include/functions_filemanager.php:849 +#: ../../include/functions_filemanager.php:564 +#: ../../include/functions_filemanager.php:864 +#: ../../include/functions_filemanager.php:867 msgid "Upload Files" msgstr "" -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_filemanager.php:793 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:808 msgid "Real path" msgstr "" -#: ../../include/functions_filemanager.php:618 +#: ../../include/functions_filemanager.php:633 #, php-format msgid "Directory %s doesn't exist!" msgstr "" -#: ../../include/functions_filemanager.php:663 +#: ../../include/functions_filemanager.php:678 msgid "Parent directory" msgstr "" -#: ../../include/functions_filemanager.php:677 +#: ../../include/functions_filemanager.php:692 msgid "Directory" msgstr "" -#: ../../include/functions_filemanager.php:685 +#: ../../include/functions_filemanager.php:700 msgid "Compressed file" msgstr "" -#: ../../include/functions_filemanager.php:689 -#: ../../include/functions_filemanager.php:696 +#: ../../include/functions_filemanager.php:704 +#: ../../include/functions_filemanager.php:711 msgid "Text file" msgstr "" -#: ../../include/functions_filemanager.php:729 +#: ../../include/functions_filemanager.php:744 msgid "This file could be executed by any user" msgstr "" -#: ../../include/functions_filemanager.php:730 +#: ../../include/functions_filemanager.php:745 msgid "Make sure it can't perform dangerous tasks" msgstr "" -#: ../../include/functions_filemanager.php:804 +#: ../../include/functions_filemanager.php:819 msgid "No files or directories to show." msgstr "" -#: ../../include/functions_filemanager.php:818 -#: ../../include/functions_filemanager.php:940 +#: ../../include/functions_filemanager.php:835 +#: ../../include/functions_filemanager.php:961 msgid "Create directory" msgstr "" -#: ../../include/functions_filemanager.php:880 +#: ../../include/functions_filemanager.php:900 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -#: ../../include/functions_filemanager.php:882 +#: ../../include/functions_filemanager.php:902 msgid "Decompress" msgstr "" -#: ../../include/functions_filemanager.php:954 +#: ../../include/functions_filemanager.php:976 msgid "Create file" msgstr "" -#: ../../include/functions_filemanager.php:968 +#: ../../include/functions_filemanager.php:990 msgid "Upload file/s" msgstr "" -#: ../../include/functions_filemanager.php:999 +#: ../../include/functions_filemanager.php:1021 msgid "The directory is read-only" msgstr "" @@ -49524,15 +50031,15 @@ msgstr "" msgid "Copy of %s" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:1007 +#: ../../include/lib/Dashboard/Manager.php:1011 msgid "Error create or update dashboard" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:1479 +#: ../../include/lib/Dashboard/Manager.php:1483 msgid "Icon image dashboard" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:468 +#: ../../include/lib/Dashboard/Widget.php:469 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -49540,28 +50047,28 @@ msgstr "" msgid "Failed to connect to node %d" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:483 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 +#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:634 msgid "Please configure this widget before usage" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "" -#: ../../include/lib/Dashboard/Widget.php:491 +#: ../../include/lib/Dashboard/Widget.php:492 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "" #: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:533 msgid "General group status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:477 msgid "Not agents in this group" msgstr "" @@ -49591,7 +50098,7 @@ msgid "No modules in selected groups" msgstr "" #: ../../include/lib/Dashboard/Widgets/heatmap.php:173 -#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:386 msgid "Heatmap" msgstr "" @@ -49628,7 +50135,7 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:471 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:659 msgid "You don't have access" msgstr "" @@ -49650,13 +50157,14 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 -#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -49689,7 +50197,7 @@ msgid "Maps" msgstr "" #: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 -#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711 msgid "Avg|Sum|Max|Min Module Data" msgstr "" @@ -49767,7 +50275,7 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545 msgid "Color tabs modules" msgstr "" @@ -49851,21 +50359,21 @@ msgid "Zoom level" msgstr "" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417 msgid "Triggered alerts report" msgstr "" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390 msgid "Not alert fired" msgstr "" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399 #: ../../include/lib/Dashboard/Widgets/events_list.php:521 msgid "You must select some group" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:715 +#: ../../include/lib/Dashboard/Widgets/events_list.php:722 msgid "List of latest events" msgstr "" @@ -49875,16 +50383,16 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 -#: ../../include/functions_events.php:3261 -#: ../../include/functions_events.php:3267 -#: ../../include/functions_events.php:3289 +#: ../../include/functions_events.php:3266 +#: ../../include/functions_events.php:3272 +#: ../../include/functions_events.php:3294 msgid "All event" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 -#: ../../include/functions_events.php:3263 -#: ../../include/functions_events.php:3297 +#: ../../include/functions_events.php:3268 +#: ../../include/functions_events.php:3302 msgid "Only validated" msgstr "" @@ -49897,6 +50405,34 @@ msgstr "" msgid "Please, event filter has been removed." msgstr "" +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420 +msgid "Color chart" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431 +msgid "Show label" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458 +msgid "Label size in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470 +msgid "Color label" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481 +msgid "Show Value" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501 +msgid "Value size in px" +msgstr "" + +#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513 +msgid "Color value" +msgstr "" + #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 #: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 msgid "Event cardboard" @@ -50031,12 +50567,12 @@ msgid "Missing Service id" msgstr "" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:779 msgid "Agent/Module View" msgstr "" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:459 msgid "Filter modules" msgstr "" @@ -50090,61 +50626,61 @@ msgstr "" msgid "unknown" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:357 msgid "Type tree" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 msgid "Open all groups" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:411 msgid "Agents status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:447 msgid "Modules status" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:513 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " "administrator." msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../operation/tree.php:471 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../operation/tree.php:473 msgid "Operating systems found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:474 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:476 msgid "Tags found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:477 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 +#: ../../operation/tree.php:479 msgid "Module Groups found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:480 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../operation/tree.php:482 ../../operation/search_main.php:56 msgid "Modules found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:484 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../operation/tree.php:486 msgid "Groups found" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 -#: ../../operation/tree.php:536 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:725 +#: ../../operation/tree.php:538 msgid "Not normal agents" msgstr "" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 -#: ../../operation/tree.php:537 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:726 +#: ../../operation/tree.php:539 msgid "Not normal modules" msgstr "" @@ -50159,10 +50695,6 @@ msgid "" "*usage.* will match: cpu_usage, vram usage." msgstr "" -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "" - #: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "" @@ -50226,73 +50758,73 @@ msgstr "" msgid "Cluster already defined, please use another name." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 msgid "Cluster name" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:784 msgid "" "An agent with the same name of the cluster will be created, as well a " "special service with the same name" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "Cluster type" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:799 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Active" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:808 msgid "Active - Pasive" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:828 msgid "Target cluster agent will be stored under this group" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:845 msgid "" "You must select a Prediction Server to perform all cluster status " "calculations" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042 msgid "critical if" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074 #, php-format msgid "% of balanced modules are down (equal or greater)." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090 msgid "Please, set thresholds for all active-passive modules" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101 msgid "Please, set thresholds for all active-active modules" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206 msgid "Please, check all active-passive modules critical for this cluster" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." msgstr "" -#: ../../include/lib/Core/DBMaintainer.php:174 +#: ../../include/lib/Core/DBMaintainer.php:177 #, php-format msgid "Connection problems: %s" msgstr "" @@ -50409,53 +50941,53 @@ msgid "Collapse the tree" msgstr "" #: ../../include/functions_snmp_browser.php:1115 -#: ../../include/functions_snmp_browser.php:1170 +#: ../../include/functions_snmp_browser.php:1178 msgid "Search options" msgstr "" -#: ../../include/functions_snmp_browser.php:1160 +#: ../../include/functions_snmp_browser.php:1168 msgid "SNMP v3 options" msgstr "" -#: ../../include/functions_snmp_browser.php:1192 +#: ../../include/functions_snmp_browser.php:1200 msgid "Search matches" msgstr "" -#: ../../include/functions_snmp_browser.php:1208 +#: ../../include/functions_snmp_browser.php:1216 msgid "Create agent modules" msgstr "" -#: ../../include/functions_snmp_browser.php:1217 +#: ../../include/functions_snmp_browser.php:1225 msgid "Create policy modules" msgstr "" -#: ../../include/functions_snmp_browser.php:1226 +#: ../../include/functions_snmp_browser.php:1234 msgid "Create network components" msgstr "" -#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_snmp_browser.php:1665 msgid " available" msgstr "" -#: ../../include/functions_snmp_browser.php:1663 +#: ../../include/functions_snmp_browser.php:1672 msgid " to apply" msgstr "" -#: ../../include/functions_snmp_browser.php:1668 -#: ../../operation/snmpconsole/snmp_browser.php:535 +#: ../../include/functions_snmp_browser.php:1677 +#: ../../operation/snmpconsole/snmp_browser.php:540 msgid "Create new policy" msgstr "" -#: ../../include/functions_snmp_browser.php:1723 +#: ../../include/functions_snmp_browser.php:1732 msgid "Undo" msgstr "" -#: ../../include/chart_generator.php:117 +#: ../../include/chart_generator.php:122 #: ../../operation/agentes/stat_win.php:51 #: ../../operation/agentes/stat_win.php:176 #: ../../operation/agentes/realtime_win.php:51 #: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../operation/inventory/inventory.php:369 +#: ../../operation/inventory/inventory.php:371 msgid "There was a problem connecting with the node" msgstr "" @@ -50494,7 +51026,8 @@ msgid "GIS map layers" msgstr "" #: ../../include/functions_groups.php:251 -#: ../../operation/agentes/pandora_networkmap.view.php:2413 +#: ../../operation/agentes/networkmap.dinamic.php:150 +#: ../../operation/agentes/pandora_networkmap.view.php:2414 msgid "Network maps" msgstr "" @@ -50528,159 +51061,153 @@ msgstr "" msgid "Latest events" msgstr "" -#: ../../include/functions_events.php:2910 +#: ../../include/functions_events.php:2915 msgid "Going to unknown" msgstr "" -#: ../../include/functions_events.php:2918 +#: ../../include/functions_events.php:2923 msgid "Alert manually validated" msgstr "" -#: ../../include/functions_events.php:2922 +#: ../../include/functions_events.php:2927 msgid "Going from critical to warning" msgstr "" -#: ../../include/functions_events.php:2928 +#: ../../include/functions_events.php:2933 msgid "Going up to critical state" msgstr "" -#: ../../include/functions_events.php:2934 +#: ../../include/functions_events.php:2939 msgid "Going up to normal state" msgstr "" -#: ../../include/functions_events.php:2938 +#: ../../include/functions_events.php:2943 msgid "Going down from normal to warning" msgstr "" -#: ../../include/functions_events.php:2950 +#: ../../include/functions_events.php:2955 msgid "Discovery server detected a new host" msgstr "" -#: ../../include/functions_events.php:2954 +#: ../../include/functions_events.php:2959 msgid "New agent created" msgstr "" -#: ../../include/functions_events.php:2971 +#: ../../include/functions_events.php:2976 msgid "Unknown type:" msgstr "" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3298 msgid "Only new" msgstr "" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3269 +#: ../../include/functions_events.php:3306 msgid "Only in process" msgstr "" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3310 msgid "Only not validated" msgstr "" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 -#: ../../include/functions_events.php:3552 -msgid "In process" -msgstr "" - -#: ../../include/functions_events.php:3271 +#: ../../include/functions_events.php:3276 msgid "Not Validated" msgstr "" -#: ../../include/functions_events.php:3463 +#: ../../include/functions_events.php:3468 msgid "Change owner" msgstr "" -#: ../../include/functions_events.php:3528 +#: ../../include/functions_events.php:3533 msgid "Change status" msgstr "" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3630 +#: ../../include/functions_events.php:5366 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "" -#: ../../include/functions_events.php:3648 -#: ../../include/functions_events.php:3652 -#: ../../operation/events/events.php:978 +#: ../../include/functions_events.php:3653 +#: ../../include/functions_events.php:3657 +#: ../../operation/events/events.php:983 msgid "Delete event" msgstr "" -#: ../../include/functions_events.php:3675 +#: ../../include/functions_events.php:3680 msgid "Custom responses" msgstr "" -#: ../../include/functions_events.php:4281 +#: ../../include/functions_events.php:4286 msgid "Extended information" msgstr "" -#: ../../include/functions_events.php:4312 +#: ../../include/functions_events.php:4317 msgid "There was an error connecting to the node" msgstr "" -#: ../../include/functions_events.php:4333 +#: ../../include/functions_events.php:4338 msgid "Agent details" msgstr "" -#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4352 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" -#: ../../include/functions_events.php:4442 +#: ../../include/functions_events.php:4447 msgid "View custom fields" msgstr "" -#: ../../include/functions_events.php:4465 +#: ../../include/functions_events.php:4470 msgid "Module details" msgstr "" -#: ../../include/functions_events.php:4481 +#: ../../include/functions_events.php:4486 msgid "No assigned" msgstr "" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:4576 msgid "Go to data overview" msgstr "" -#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php:4693 #, php-format msgid "Invalid custom data: %s" msgstr "" -#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:4922 msgid "First event" msgstr "" -#: ../../include/functions_events.php:4920 +#: ../../include/functions_events.php:4925 msgid "Last event" msgstr "" -#: ../../include/functions_events.php:5017 +#: ../../include/functions_events.php:5022 msgid "Autovalidated" msgstr "" -#: ../../include/functions_events.php:5093 +#: ../../include/functions_events.php:5098 msgid "ID extra" msgstr "" -#: ../../include/functions_events.php:5210 +#: ../../include/functions_events.php:5215 msgid "There are no comments" msgstr "" -#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 +#: ../../include/functions_events.php:5279 msgid "by" msgstr "" -#: ../../include/functions_events.php:5941 +#: ../../include/functions_events.php:5946 #, php-format msgid "Event # %d" msgstr "" -#: ../../include/functions_events.php:5944 +#: ../../include/functions_events.php:5949 msgid "Executing command: " msgstr "" @@ -50753,15 +51280,15 @@ msgstr "" msgid "User is blocked" msgstr "" -#: ../../index.php:1003 +#: ../../index.php:1004 msgid "User doesn\\'t exist." msgstr "" -#: ../../index.php:1025 +#: ../../index.php:1026 msgid "User only can use the API." msgstr "" -#: ../../index.php:1231 +#: ../../index.php:1232 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "" @@ -50798,35 +51325,35 @@ msgstr "" msgid "policies" msgstr "" -#: ../../operation/tree.php:215 +#: ../../operation/tree.php:216 msgid "Search group" msgstr "" -#: ../../operation/tree.php:221 ../../operation/tree.php:310 +#: ../../operation/tree.php:222 ../../operation/tree.php:312 msgid "Show not init modules" msgstr "" -#: ../../operation/tree.php:232 +#: ../../operation/tree.php:233 msgid "Search agent" msgstr "" -#: ../../operation/tree.php:244 +#: ../../operation/tree.php:245 msgid "Show not init agents" msgstr "" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:255 msgid "Show full hirearchy" msgstr "" -#: ../../operation/tree.php:288 +#: ../../operation/tree.php:289 msgid "Show only disabled" msgstr "" -#: ../../operation/tree.php:305 +#: ../../operation/tree.php:307 msgid "Search module" msgstr "" -#: ../../operation/tree.php:355 +#: ../../operation/tree.php:357 msgid "Tree search" msgstr "" @@ -50899,33 +51426,28 @@ msgstr "" msgid "If checkbox is clicked then block size global configuration is used" msgstr "" -#: ../../operation/users/user_edit.php:519 -#: ../../operation/users/user_edit.php:528 +#: ../../operation/users/user_edit.php:524 msgid "Theme" msgstr "" -#: ../../operation/users/user_edit.php:529 -msgid "This change will only apply to nodes" -msgstr "" - -#: ../../operation/users/user_edit.php:846 +#: ../../operation/users/user_edit.php:843 msgid "eHorus user configuration" msgstr "" -#: ../../operation/users/user_edit.php:851 +#: ../../operation/users/user_edit.php:848 msgid "eHorus user acces enabled" msgstr "" -#: ../../operation/users/user_edit.php:905 +#: ../../operation/users/user_edit.php:902 msgid "Integria user configuration" msgstr "" -#: ../../operation/users/user_edit.php:948 +#: ../../operation/users/user_edit.php:945 msgid "" "You can not change your user info under the current authentication scheme" msgstr "" -#: ../../operation/users/user_edit.php:1036 +#: ../../operation/users/user_edit.php:1033 msgid "This user doesn't have any assigned profile/group." msgstr "" @@ -50956,40 +51478,40 @@ msgstr "" msgid "Matches" msgstr "" -#: ../../operation/visual_console/view.php:407 +#: ../../operation/visual_console/view.php:409 msgid "Delete Item" msgstr "" -#: ../../operation/visual_console/view.php:413 +#: ../../operation/visual_console/view.php:415 msgid "Copy Item" msgstr "" -#: ../../operation/visual_console/view.php:430 +#: ../../operation/visual_console/view.php:432 msgid "Force remote checks" msgstr "" -#: ../../operation/visual_console/view.php:788 +#: ../../operation/visual_console/view.php:790 msgid "Are you sure you wish to set the visual console in maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:791 -#: ../../operation/visual_console/view.php:798 +#: ../../operation/visual_console/view.php:793 +#: ../../operation/visual_console/view.php:800 msgid "Are you sure you wish to disable maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:794 +#: ../../operation/visual_console/view.php:796 msgid "The visual console was set to maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:796 +#: ../../operation/visual_console/view.php:798 msgid "ago by user" msgstr "" -#: ../../operation/visual_console/view.php:803 +#: ../../operation/visual_console/view.php:805 msgid "Maintenance mode" msgstr "" -#: ../../operation/visual_console/view.php:864 +#: ../../operation/visual_console/view.php:866 msgid "Are you sure" msgstr "" @@ -51021,64 +51543,65 @@ msgstr "" msgid "Show events" msgstr "" -#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/stat_win.php:303 #: ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "" -#: ../../operation/agentes/stat_win.php:307 -#: ../../operation/agentes/stat_win.php:418 -#: ../../operation/agentes/interface_traffic_graph_win.php:209 +#: ../../operation/agentes/stat_win.php:311 +#: ../../operation/agentes/stat_win.php:430 +#: ../../operation/agentes/interface_traffic_graph_win.php:214 msgid "Begin time" msgstr "" -#: ../../operation/agentes/stat_win.php:325 -#: ../../operation/agentes/stat_win.php:428 -#: ../../operation/agentes/interface_traffic_graph_win.php:215 +#: ../../operation/agentes/stat_win.php:333 +#: ../../operation/agentes/stat_win.php:444 +#: ../../operation/agentes/interface_traffic_graph_win.php:231 #: ../../operation/agentes/graphs.php:233 #: ../../operation/reporting/graph_viewer.php:346 msgid "Time range" msgstr "" -#: ../../operation/agentes/stat_win.php:340 +#: ../../operation/agentes/stat_win.php:348 #: ../../operation/reporting/graph_viewer.php:390 msgid "Zoom" msgstr "" -#: ../../operation/agentes/stat_win.php:360 -#: ../../operation/agentes/interface_traffic_graph_win.php:229 +#: ../../operation/agentes/stat_win.php:368 +#: ../../operation/agentes/interface_traffic_graph_win.php:245 msgid "Show percentil" msgstr "" -#: ../../operation/agentes/stat_win.php:386 +#: ../../operation/agentes/stat_win.php:394 msgid "Show AVG/MAX/MIN data series in graph" msgstr "" -#: ../../operation/agentes/stat_win.php:484 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 +#: ../../operation/agentes/stat_win.php:500 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +#: ../../operation/agentes/interface_traffic_graph_win.php:322 msgid "Graph configuration menu" msgstr "" -#: ../../operation/agentes/alerts_status.php:344 +#: ../../operation/agentes/alerts_status.php:346 msgid "No actions" msgstr "" -#: ../../operation/agentes/alerts_status.php:378 -#: ../../operation/agentes/estado_monitores.php:577 +#: ../../operation/agentes/alerts_status.php:380 +#: ../../operation/agentes/estado_monitores.php:575 #: ../../operation/agentes/alerts_status.functions.php:223 msgid "Free text for search (*):" msgstr "" -#: ../../operation/agentes/alerts_status.php:379 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:224 msgid "Filter by module name, template name or action name" msgstr "" -#: ../../operation/agentes/alerts_status.php:475 +#: ../../operation/agentes/alerts_status.php:481 msgid "Full list of alerts" msgstr "" -#: ../../operation/agentes/alerts_status.php:567 +#: ../../operation/agentes/alerts_status.php:577 msgid "You must select at least one alert." msgstr "" @@ -51153,15 +51676,15 @@ msgid "Search in custom fields" msgstr "" #: ../../operation/agentes/estado_agente.php:467 -#: ../../operation/agentes/status_monitor.php:1058 +#: ../../operation/agentes/status_monitor.php:1060 msgid "Manage filter" msgstr "" -#: ../../operation/agentes/estado_agente.php:1059 +#: ../../operation/agentes/estado_agente.php:1067 msgid "L.S change" msgstr "" -#: ../../operation/agentes/estado_agente.php:1238 +#: ../../operation/agentes/estado_agente.php:1247 msgid "Agent events" msgstr "" @@ -51210,14 +51733,14 @@ msgid "Latest events for this agent" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2347 +#: ../../operation/agentes/pandora_networkmap.view.php:2348 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2375 +#: ../../operation/agentes/pandora_networkmap.view.php:2376 msgid "List of networkmap" msgstr "" @@ -51376,39 +51899,39 @@ msgid "Succesfully created" msgstr "" #: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:514 +#: ../../operation/agentes/pandora_networkmap.php:515 msgid "Succesfully updated" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/agentes/pandora_networkmap.php:540 msgid "Succesfully duplicate" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:562 +#: ../../operation/agentes/pandora_networkmap.php:563 msgid "Succesfully deleted" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:672 +#: ../../operation/agentes/pandora_networkmap.php:673 msgid "List of network maps" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:787 +#: ../../operation/agentes/pandora_networkmap.php:788 msgid "Empty map" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:791 +#: ../../operation/agentes/pandora_networkmap.php:792 msgid "Pending to generate" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:846 +#: ../../operation/agentes/pandora_networkmap.php:847 msgid "There are no maps defined." msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create network map" msgstr "" -#: ../../operation/agentes/pandora_networkmap.php:860 +#: ../../operation/agentes/pandora_networkmap.php:861 msgid "Create empty network map" msgstr "" @@ -51417,11 +51940,11 @@ msgstr "" msgid "%s Interface Graph" msgstr "" -#: ../../operation/agentes/interface_traffic_graph_win.php:252 +#: ../../operation/agentes/interface_traffic_graph_win.php:268 msgid "Zoom factor" msgstr "" -#: ../../operation/agentes/interface_traffic_graph_win.php:259 +#: ../../operation/agentes/interface_traffic_graph_win.php:275 msgid "Full" msgstr "" @@ -51488,21 +52011,21 @@ msgstr "" msgid "Custom graph create from the tab graphs in the agent." msgstr "" -#: ../../operation/agentes/datos_agente.php:173 +#: ../../operation/agentes/datos_agente.php:174 msgid "Received data from" msgstr "" -#: ../../operation/agentes/datos_agente.php:180 +#: ../../operation/agentes/datos_agente.php:181 msgid "Main database" msgstr "" -#: ../../operation/agentes/datos_agente.php:181 +#: ../../operation/agentes/datos_agente.php:182 msgid "" "Switch between the main database and the history database to retrieve module " "data" msgstr "" -#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/datos_agente.php:213 #: ../../operation/agentes/alerts_status.functions.php:151 msgid "Free text for search" msgstr "" @@ -51537,7 +52060,7 @@ msgid "% Bandwidth usage (out)" msgstr "" #: ../../operation/agentes/interface_view.functions.php:731 -#: ../../operation/agentes/pandora_networkmap.view.php:1308 +#: ../../operation/agentes/pandora_networkmap.view.php:1309 msgid "inOctets and outOctets must be enabled." msgstr "" @@ -51592,53 +52115,49 @@ msgstr "" msgid "Interface view" msgstr "" -#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186 -msgid "Monitor detail" -msgstr "" - -#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/status_monitor.php:591 #: ../../operation/agentes/alerts_status.functions.php:127 msgid "No tags" msgstr "" -#: ../../operation/agentes/status_monitor.php:675 +#: ../../operation/agentes/status_monitor.php:674 msgid "Wux server module" msgstr "" -#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/status_monitor.php:973 msgid "Min. hours in current status" msgstr "" -#: ../../operation/agentes/status_monitor.php:981 +#: ../../operation/agentes/status_monitor.php:983 msgid "Not condition" msgstr "" -#: ../../operation/agentes/status_monitor.php:996 +#: ../../operation/agentes/status_monitor.php:998 msgid "" "If you check this option, those elements that do NOT meet any of the " "requirements will be shown" msgstr "" -#: ../../operation/agentes/status_monitor.php:1541 +#: ../../operation/agentes/status_monitor.php:1543 msgid "Data Type" msgstr "" -#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1587 msgid "W/C" msgstr "" -#: ../../operation/agentes/status_monitor.php:1671 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/status_monitor.php:1673 +#: ../../operation/agentes/pandora_networkmap.view.php:1820 msgid "(Adopt) " msgstr "" -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/pandora_networkmap.view.php:1827 +#: ../../operation/agentes/status_monitor.php:1681 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 msgid "(Unlinked) (Adopt) " msgstr "" -#: ../../operation/agentes/status_monitor.php:1682 -#: ../../operation/agentes/pandora_networkmap.view.php:1830 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1831 msgid "(Unlinked) " msgstr "" @@ -51646,6 +52165,10 @@ msgstr "" msgid "Summary of the status groups" msgstr "" +#: ../../operation/agentes/group_view.php:233 +msgid "Total items" +msgstr "" + #: ../../operation/agentes/estado_monitores.php:51 msgid "Tag's information" msgstr "" @@ -51662,21 +52185,15 @@ msgstr "" msgid "List of modules" msgstr "" -#: ../../operation/agentes/estado_monitores.php:191 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:519 +#: ../../operation/agentes/estado_monitores.php:516 msgid "Not Normal" msgstr "" -#: ../../operation/agentes/estado_monitores.php:559 +#: ../../operation/agentes/estado_monitores.php:557 msgid "Status:" msgstr "" -#: ../../operation/agentes/estado_monitores.php:578 +#: ../../operation/agentes/estado_monitores.php:576 msgid "Search by module name, list matches." msgstr "" @@ -51684,24 +52201,24 @@ msgstr "" msgid "Show only the task with the recon script \"SNMP L2 Recon\"." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1687 +#: ../../operation/agentes/pandora_networkmap.view.php:1688 msgid "Success be updated." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1784 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 msgid "Name: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1834 +#: ../../operation/agentes/pandora_networkmap.view.php:1835 msgid "Policy: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1931 +#: ../../operation/agentes/pandora_networkmap.view.php:1932 msgid "Data: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1933 -#: ../../operation/agentes/estado_generalagente.php:923 +#: ../../operation/agentes/pandora_networkmap.view.php:1934 +#: ../../operation/agentes/estado_generalagente.php:830 msgid "Last contact: " msgstr "" @@ -51709,27 +52226,27 @@ msgstr "" msgid "Sons" msgstr "" -#: ../../operation/agentes/ver_agente.php:1596 +#: ../../operation/agentes/ver_agente.php:1592 msgid "Log Viewer" msgstr "" -#: ../../operation/agentes/ver_agente.php:1635 +#: ../../operation/agentes/ver_agente.php:1631 msgid "Terminal" msgstr "" -#: ../../operation/agentes/ver_agente.php:1657 +#: ../../operation/agentes/ver_agente.php:1653 msgid "Processes" msgstr "" -#: ../../operation/agentes/ver_agente.php:1840 +#: ../../operation/agentes/ver_agente.php:1836 msgid "Data View" msgstr "" -#: ../../operation/agentes/ver_agente.php:1910 +#: ../../operation/agentes/ver_agente.php:1906 msgid "Network configuration" msgstr "" -#: ../../operation/agentes/ver_agente.php:1925 +#: ../../operation/agentes/ver_agente.php:1921 msgid "Agent main view" msgstr "" @@ -51741,43 +52258,27 @@ msgstr "" msgid "In scheduled downtime" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:395 +#: ../../operation/agentes/estado_generalagente.php:366 msgid "Agent contact" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:401 +#: ../../operation/agentes/estado_generalagente.php:372 msgid "Refresh data" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:435 -msgid "Out of bounds" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:470 -msgid "Next contact" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:555 -msgid "There is no GIS data." -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:688 +#: ../../operation/agentes/estado_generalagente.php:657 msgid "Agent access rate (Last 24h)" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:745 +#: ../../operation/agentes/estado_generalagente.php:714 msgid "Active incident on this agent" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:903 -msgid "Events info (24hr.)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:1050 +#: ../../operation/agentes/estado_generalagente.php:957 msgid "Agent data" msgstr "" -#: ../../operation/agentes/estado_generalagente.php:1111 +#: ../../operation/agentes/estado_generalagente.php:1018 msgid "Interface information (SNMP)" msgstr "" @@ -51785,8 +52286,8 @@ msgstr "" msgid "This agent has not modules inventory" msgstr "" -#: ../../operation/agentes/agent_inventory.php:193 -#: ../../operation/agentes/agent_inventory.php:194 +#: ../../operation/agentes/agent_inventory.php:248 +#: ../../operation/agentes/agent_inventory.php:249 msgid "Diff view" msgstr "" @@ -51941,7 +52442,7 @@ msgstr "" #: ../../operation/network/network_report.php:183 #: ../../operation/network/network_usage_map.php:189 -#: ../../operation/netflow/nf_live_view.php:483 +#: ../../operation/netflow/nf_live_view.php:556 msgid "Defined period" msgstr "" @@ -51978,47 +52479,56 @@ msgstr "" msgid "Results to show" msgstr "" -#: ../../operation/netflow/nf_live_view.php:130 +#: ../../operation/netflow/nf_live_view.php:135 msgid "Netflow live view" msgstr "" -#: ../../operation/netflow/nf_live_view.php:163 +#: ../../operation/netflow/nf_live_view.php:172 msgid "Error creating filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:165 +#: ../../operation/netflow/nf_live_view.php:174 msgid "Filter created successfully" msgstr "" -#: ../../operation/netflow/nf_live_view.php:184 +#: ../../operation/netflow/nf_live_view.php:193 msgid "Filter updated successfully" msgstr "" -#: ../../operation/netflow/nf_live_view.php:185 +#: ../../operation/netflow/nf_live_view.php:194 msgid "Error updating filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:228 +#: ../../operation/netflow/nf_live_view.php:237 msgid "Connection" msgstr "" -#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/netflow/nf_live_view.php:293 msgid "Select a filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "IP address resolution" msgstr "" -#: ../../operation/netflow/nf_live_view.php:357 +#: ../../operation/netflow/nf_live_view.php:366 msgid "Resolve the IP addresses to get their hostnames." msgstr "" -#: ../../operation/netflow/nf_live_view.php:360 +#: ../../operation/netflow/nf_live_view.php:369 msgid "Source ip" msgstr "" -#: ../../operation/netflow/nf_live_view.php:465 +#: ../../operation/netflow/nf_live_view.php:387 +msgid "New filter name" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:425 +#, php-format +msgid "WARNING threshold for the maximum % of traffic of an IP." +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:538 #: ../../operation/incidents/integriaims_export_csv.php:84 #: ../../operation/incidents/configure_integriaims_incident.php:353 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339 @@ -52026,31 +52536,31 @@ msgstr "" msgid "Resolution" msgstr "" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:550 msgid "The interval will be divided in chunks the length of the resolution." msgstr "" -#: ../../operation/netflow/nf_live_view.php:508 +#: ../../operation/netflow/nf_live_view.php:581 msgid "Aggregated by" msgstr "" -#: ../../operation/netflow/nf_live_view.php:525 +#: ../../operation/netflow/nf_live_view.php:598 msgid "Max values" msgstr "" -#: ../../operation/netflow/nf_live_view.php:575 +#: ../../operation/netflow/nf_live_view.php:648 msgid "Draw" msgstr "" -#: ../../operation/netflow/nf_live_view.php:587 +#: ../../operation/netflow/nf_live_view.php:660 msgid "Save as new filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:588 +#: ../../operation/netflow/nf_live_view.php:661 msgid "Update current filter" msgstr "" -#: ../../operation/netflow/nf_live_view.php:618 +#: ../../operation/netflow/nf_live_view.php:691 msgid "No filter selected" msgstr "" @@ -52083,19 +52593,20 @@ msgstr "" msgid "Trap Enterprise String" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:79 msgid "SNMP Browser" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:218 +#: ../../operation/snmpconsole/snmp_browser.php:223 msgid "Adding modules in progress" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:546 +#: ../../operation/snmpconsole/snmp_browser.php:551 msgid "Create policy" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:638 +#: ../../operation/snmpconsole/snmp_browser.php:621 +#: ../../operation/snmpconsole/snmp_browser.php:697 msgid "Are you sure you want add module?" msgstr "" @@ -52139,11 +52650,10 @@ msgid "RSS" msgstr "" #: ../../operation/menu.php:570 ../../operation/menu.php:583 -#: ../../operation/events/sound_events.php:63 -#: ../../operation/events/sound_events.php:164 -#: ../../operation/events/events.php:1532 -#: ../../operation/events/events.php:1582 -msgid "Accoustic console" +#: ../../operation/events/sound_events.php:62 +#: ../../operation/events/events.php:1586 +#: ../../operation/events/events.php:1636 +msgid "Acoustic console" msgstr "" #: ../../operation/menu.php:648 @@ -52405,44 +52915,42 @@ msgstr "" msgid "No tickets to show" msgstr "" -#: ../../operation/inventory/inventory.php:535 -#: ../../operation/inventory/inventory.php:570 +#: ../../operation/inventory/inventory.php:537 +#: ../../operation/inventory/inventory.php:572 msgid "Basic info" msgstr "" -#: ../../operation/inventory/inventory.php:661 +#: ../../operation/inventory/inventory.php:663 msgid "Order by agent" msgstr "" -#: ../../operation/inventory/inventory.php:733 +#: ../../operation/inventory/inventory.php:734 msgid "You must select at least one filter." msgstr "" -#: ../../operation/inventory/inventory.php:859 -#: ../../operation/inventory/inventory.php:860 -#: ../../operation/inventory/inventory.php:948 -#: ../../operation/inventory/inventory.php:949 -#: ../../operation/inventory/inventory.php:1100 -#: ../../operation/inventory/inventory.php:1101 -#: ../../operation/inventory/inventory.php:1211 -#: ../../operation/inventory/inventory.php:1212 +#: ../../operation/inventory/inventory.php:814 +#: ../../operation/inventory/inventory.php:815 +#: ../../operation/inventory/inventory.php:925 +#: ../../operation/inventory/inventory.php:926 +#: ../../operation/inventory/inventory.php:1086 +#: ../../operation/inventory/inventory.php:1087 +#: ../../operation/inventory/inventory.php:1176 +#: ../../operation/inventory/inventory.php:1177 +#: ../../operation/inventory/inventory.php:1206 +#: ../../operation/inventory/inventory.php:1207 msgid "No inventory found" msgstr "" -#: ../../operation/inventory/inventory.php:1001 -#: ../../operation/inventory/inventory.php:1295 +#: ../../operation/inventory/inventory.php:1247 msgid "Secondary IP" msgstr "" -#: ../../operation/inventory/inventory.php:1010 -#: ../../operation/inventory/inventory.php:1304 +#: ../../operation/inventory/inventory.php:1256 msgid "Values Custom Fields" msgstr "" -#: ../../operation/inventory/inventory.php:1031 -#: ../../operation/inventory/inventory.php:1032 -#: ../../operation/inventory/inventory.php:1325 -#: ../../operation/inventory/inventory.php:1326 +#: ../../operation/inventory/inventory.php:1278 +#: ../../operation/inventory/inventory.php:1279 msgid "Agent info not found" msgstr "" @@ -52528,14 +53036,6 @@ msgstr "" msgid "Custom graph viewer" msgstr "" -#: ../../operation/events/sound_events.php:229 -msgid "Time Sound" -msgstr "" - -#: ../../operation/events/sound_events.php:288 -msgid "Events not found" -msgstr "" - #: ../../operation/events/events_rss.php:195 msgid "Your IP is not into the IP list with API access." msgstr "" @@ -52544,175 +53044,175 @@ msgstr "" msgid "The URL of your feed has bad hash." msgstr "" -#: ../../operation/events/events.php:884 +#: ../../operation/events/events.php:889 msgid "Validate events" msgstr "" -#: ../../operation/events/events.php:901 +#: ../../operation/events/events.php:906 msgid "Validate event" msgstr "" -#: ../../operation/events/events.php:936 +#: ../../operation/events/events.php:941 msgid "Change to in progress status" msgstr "" -#: ../../operation/events/events.php:961 +#: ../../operation/events/events.php:966 msgid "Delete events" msgstr "" -#: ../../operation/events/events.php:1440 +#: ../../operation/events/events.php:1494 msgid "Event viewer" msgstr "" -#: ../../operation/events/events.php:1482 +#: ../../operation/events/events.php:1536 msgid "History event list" msgstr "" -#: ../../operation/events/events.php:1493 +#: ../../operation/events/events.php:1547 msgid "RSS Events" msgstr "" -#: ../../operation/events/events.php:1504 +#: ../../operation/events/events.php:1558 msgid "Export to CSV file" msgstr "" -#: ../../operation/events/events.php:1587 +#: ../../operation/events/events.php:1641 msgid "History" msgstr "" -#: ../../operation/events/events.php:1641 +#: ../../operation/events/events.php:1695 msgid "Errors" msgstr "" -#: ../../operation/events/events.php:1706 -#: ../../operation/events/events.php:1727 +#: ../../operation/events/events.php:1760 +#: ../../operation/events/events.php:1781 msgid "WARNING: This could cause a performace impact." msgstr "" -#: ../../operation/events/events.php:1725 +#: ../../operation/events/events.php:1779 msgid "Search in secondary groups" msgstr "" -#: ../../operation/events/events.php:1815 +#: ../../operation/events/events.php:1869 msgid "Search for elements NOT containing given text." msgstr "" -#: ../../operation/events/events.php:2076 +#: ../../operation/events/events.php:2130 msgid "Id source event" msgstr "" -#: ../../operation/events/events.php:2134 +#: ../../operation/events/events.php:2188 msgid "From (date:time)" msgstr "" -#: ../../operation/events/events.php:2192 +#: ../../operation/events/events.php:2246 msgid "To (date:time)" msgstr "" -#: ../../operation/events/events.php:2203 +#: ../../operation/events/events.php:2257 msgid "Filter custom data by field name" msgstr "" -#: ../../operation/events/events.php:2204 +#: ../../operation/events/events.php:2258 msgid "Filter custom data by field value" msgstr "" -#: ../../operation/events/events.php:2224 +#: ../../operation/events/events.php:2278 msgid "Custom data filter" msgstr "" -#: ../../operation/events/events.php:2246 +#: ../../operation/events/events.php:2300 msgid "Custom data search" msgstr "" -#: ../../operation/events/events.php:2372 +#: ../../operation/events/events.php:2426 msgid "Current filter" msgstr "" -#: ../../operation/events/events.php:2377 +#: ../../operation/events/events.php:2431 msgid "Not set." msgstr "" -#: ../../operation/events/events.php:2390 +#: ../../operation/events/events.php:2444 msgid "Any status." msgstr "" -#: ../../operation/events/events.php:2394 +#: ../../operation/events/events.php:2448 msgid "New events." msgstr "" -#: ../../operation/events/events.php:2398 +#: ../../operation/events/events.php:2452 msgid "Validated." msgstr "" -#: ../../operation/events/events.php:2402 +#: ../../operation/events/events.php:2456 msgid "In proccess." msgstr "" -#: ../../operation/events/events.php:2406 +#: ../../operation/events/events.php:2460 msgid "Not validated." msgstr "" -#: ../../operation/events/events.php:2418 +#: ../../operation/events/events.php:2472 msgid "Any time." msgstr "" -#: ../../operation/events/events.php:2420 -#: ../../operation/events/events.php:3030 +#: ../../operation/events/events.php:2474 +#: ../../operation/events/events.php:3089 msgid "Last hour." msgstr "" -#: ../../operation/events/events.php:2422 +#: ../../operation/events/events.php:2476 #, php-format msgid "Last %d hours." msgstr "" -#: ../../operation/events/events.php:2430 +#: ../../operation/events/events.php:2484 msgid "Duplicated" msgstr "" -#: ../../operation/events/events.php:2433 +#: ../../operation/events/events.php:2487 msgid "All events." msgstr "" -#: ../../operation/events/events.php:2437 +#: ../../operation/events/events.php:2491 msgid "Group agents." msgstr "" -#: ../../operation/events/events.php:2439 +#: ../../operation/events/events.php:2493 msgid "Group extra id." msgstr "" -#: ../../operation/events/events.php:2543 +#: ../../operation/events/events.php:2597 msgid "In progress selected" msgstr "" -#: ../../operation/events/events.php:2544 +#: ../../operation/events/events.php:2598 msgid "Validate selected" msgstr "" -#: ../../operation/events/events.php:2566 +#: ../../operation/events/events.php:2620 msgid "Execute event response" msgstr "" -#: ../../operation/events/events.php:2598 +#: ../../operation/events/events.php:2652 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "" -#: ../../operation/events/events.php:2603 +#: ../../operation/events/events.php:2657 msgid "Please, select an event" msgstr "" -#: ../../operation/events/events.php:2689 +#: ../../operation/events/events.php:2743 msgid "has at least" msgstr "" -#: ../../operation/events/events.php:2691 +#: ../../operation/events/events.php:2745 msgid "events" msgstr "" -#: ../../operation/events/events.php:3032 +#: ../../operation/events/events.php:3091 msgid "hours." msgstr "" @@ -53127,15 +53627,15 @@ msgstr "" msgid "Console only reporting node" msgstr "" -#: ../../general/reporting_console_node.php:77 +#: ../../general/reporting_console_node.php:82 msgid "Mr" msgstr "" -#: ../../general/reporting_console_node.php:85 +#: ../../general/reporting_console_node.php:90 msgid "Memory limit" msgstr "" -#: ../../general/reporting_console_node.php:93 +#: ../../general/reporting_console_node.php:98 msgid "Php version" msgstr "" @@ -53348,16 +53848,78 @@ msgstr "" msgid "Maintenance tasks in progress" msgstr "" -#: ../../general/logon_ok.php:175 +#: ../../general/logon_ok.php:184 #, php-format msgid "%s Overview" msgstr "" -#: ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:226 +msgid "By" +msgstr "" + +#: ../../general/logon_ok.php:237 +msgid "Welcome to our monitoring tool so grand," +msgstr "" + +#: ../../general/logon_ok.php:238 +msgid "Where data insights are at your command." +msgstr "" + +#: ../../general/logon_ok.php:239 +msgid "Sales, marketing, operations too," +msgstr "" + +#: ../../general/logon_ok.php:240 +msgid "Customer support, we've got you." +msgstr "" + +#: ../../general/logon_ok.php:243 +msgid "Our interface is user-friendly," +msgstr "" + +#: ../../general/logon_ok.php:244 +msgid "Customize your dashboard, it's easy." +msgstr "" + +#: ../../general/logon_ok.php:245 +msgid "Set up alerts and gain insights so keen," +msgstr "" + +#: ../../general/logon_ok.php:246 +msgid "Optimize your data, like you've never seen." +msgstr "" + +#: ../../general/logon_ok.php:249 +msgid "Unleash its power now, and join the pro league," +msgstr "" + +#: ../../general/logon_ok.php:250 +msgid "Unlock the potential of your data to intrigue." +msgstr "" + +#: ../../general/logon_ok.php:251 +msgid "Monitoring made simple, efficient and fun," +msgstr "" + +#: ../../general/logon_ok.php:252 +msgid "Discover a whole new way to get things done." +msgstr "" + +#: ../../general/logon_ok.php:255 +msgid "And take control of your IT once and for all." +msgstr "" + +#: ../../general/logon_ok.php:257 +msgid "" +"You can replace this message with a personalized one at Admin tools -> Site " +"news." +msgstr "" + +#: ../../general/logon_ok.php:273 msgid "News board" msgstr "" -#: ../../general/logon_ok.php:304 +#: ../../general/logon_ok.php:349 msgid "Latest activity" msgstr "" @@ -53382,7 +53944,7 @@ msgstr "" msgid "You cannot use this node until system is unified" msgstr "" -#: ../../general/node_deactivated.php:56 +#: ../../general/node_deactivated.php:61 #, php-format msgid "Please navigate to %s to unify system" msgstr "" @@ -53399,7 +53961,7 @@ msgid "" "security logs of Pandora System Database" msgstr "" -#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +#: ../../general/main_menu.php:80 ../../general/main_menu.php:87 msgid "Management" msgstr "" @@ -53432,12 +53994,12 @@ msgstr "" msgid "Go to Login" msgstr "" -#: ../../general/login_page.php:297 ../../general/login_page.php:302 -msgid "Login as admin" +#: ../../general/login_page.php:297 ../../general/login_page.php:355 +msgid "Let's go" msgstr "" -#: ../../general/login_page.php:355 -msgid "Let's go" +#: ../../general/login_page.php:302 +msgid "Login as admin" msgstr "" #: ../../general/login_page.php:409 diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index b75242bd30..7409d3cfcd 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -118,10 +118,10 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_report_front_logo', 'images/pandora_logo_white.jpg'), ('custom_report_front_header', ''), ('custom_report_front_footer', ''), -('MR', 63), +('MR', 64), ('identification_reminder', 1), ('identification_reminder_timestamp', 0), -('current_package', 771), +('current_package', 772), ('post_process_custom_values', '{"0.00000038580247":"Seconds to months","0.00000165343915":"Seconds to weeks","0.00001157407407":"Seconds to days","0.01666666666667":"Seconds to minutes","0.00000000093132":"Bytes to Gigabytes","0.00000095367432":"Bytes to Megabytes","0.00097656250000":"Bytes to Kilobytes","0.00000001653439":"Timeticks to weeks","0.00000011574074":"Timeticks to days"}'), ('custom_docs_logo', 'default_docs.png'), ('custom_support_logo', 'default_support.png'), @@ -152,7 +152,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('gotty', '/usr/bin/gotty'), ('custom_module_units', '{"bytes":"bytes","entries":"entries","files":"files","hits":"hits","sessions":"sessions","users":"users","ºC":"ºC","ºF":"ºF"}'), ('server_unique_identifier', replace(uuid(),'-','')), -('lts_name', ''); +('lts_name', 'Renaissance'); UNLOCK TABLES; -- From 78075cefb9163c85db70ab59045f1a70a1e87a04 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 7 Jun 2023 10:45:06 +0200 Subject: [PATCH 207/211] #11504 Fixed wmi credential --- pandora_console/godmode/wizards/HostDevices.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index 23a822d08d..8cf3a6b4e8 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -1460,7 +1460,7 @@ class HostDevices extends Wizard } include_once $config['homedir'].'/include/class/CredentialStore.class.php'; - $available_keys = CredentialStore::getKeys('CUSTOM'); + $available_keys = CredentialStore::getKeys('WMI'); if (check_acl($config['id_user'], 0, 'UM')) { $link_to_cs = ' /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index cba3683d63..1b874b8456 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1023,7 +1023,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.771'; -use constant AGENT_BUILD => '230607'; +use constant AGENT_BUILD => '230608'; # 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 87eed5cdd5..47612d85d2 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 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 6a7ac453f9..f48f139699 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_agent_linux %define version 7.0NG.771 -%define release 230607 +%define release 230608 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 23038a0443..112beed258 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 55feddb1ec..70d1a6c4f7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230607} +{230608} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6d6b83b581..6451ae8893 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.771 Build 230607") +#define PANDORA_VERSION ("7.0NG.771 Build 230608") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index dead47eaeb..0954290825 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.771(Build 230607))" + VALUE "ProductVersion", "(7.0NG.771(Build 230608))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 840ef27ca7..cae40c5d8c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230607 +Version: 7.0NG.771-230608 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 f79ad89a02..d4cf13b07b 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.771-230607" +pandora_version="7.0NG.771-230608" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8721542bc1..bbf689839f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230607'; +$build_version = 'PC230608'; $pandora_version = 'v7.0NG.771'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6e34c7d23a..724ac008d9 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a1259cef25..64a8ae3e9b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 9b50a92602..20e4d9c231 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -4,7 +4,7 @@ %global __os_install_post %{nil} %define name pandorafms_server %define version 7.0NG.771 -%define release 230607 +%define release 230608 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index f274d964f1..0145ed20c2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230607" +PI_BUILD="230608" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ccb6c1b0d8..04957516fb 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.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index e219d0ebc6..f442f51253 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.771 Build 230607"; +my $version = "7.0NG.771 Build 230608"; # save program name for logging my $progname = basename($0); From 94b4584d453e43ae5b5edc7e201f12a9b1707878 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 08:29:35 +0200 Subject: [PATCH 210/211] 11521-Fix filter SNMP graph --- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/include/styles/pandora.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index cc59576da5..14ae13c04b 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -220,7 +220,7 @@ function pandora_realtime_graphs() false, '', 'white-box-content', - 'box-flat white_table_graph fixed_filter_bar' + 'box-flat white_table_graph fixed_filter_bar top_0px_important mrgn_btn_35px_imp' ); $chart[time()]['graph'] = '0'; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..953f1c3706 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -7158,6 +7158,10 @@ div.graph div.legend table { margin-bottom: 35px; } +.mrgn_btn_35px_imp { + margin-bottom: 35px !important; +} + .mrgn_btn_40px { margin-bottom: 40px; } From d0c1867e56e98ca37e69d4c3a3ef1ab7e208700b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 08:48:13 +0200 Subject: [PATCH 211/211] #11497 Fix message height --- pandora_console/include/styles/pandora.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..cb0a5ba361 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11856,6 +11856,10 @@ div.relative > div > div#ui-datepicker-div { width: 400px; } +#message_dialog_connection { + height: auto !important; +} + #module_relations > thead > tr { border: none !important; border-bottom: 1px solid #e2e2e2 !important;