From dde4e21e60119d40b3b0eafcbfaaa8dc871995db Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Tue, 30 Jun 2015 16:14:04 +0200 Subject: [PATCH 1/7] Fixed an error with the group counters of the tree view --- pandora_console/include/class/Tree.class.php | 21 +++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index a2ed7f78ae..188212f12c 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -982,7 +982,7 @@ class Tree { $sql = $this->getSql($item_for_count); if (empty($sql)) return array(); - + $data = db_process_sql($sql); if (empty($data)) return array(); @@ -1141,6 +1141,16 @@ class Tree { if (defined("METACONSOLE") && !empty($server)) { $processed_item['serverID'] = $server['id']; } + + // Get the counters of the group (special case) + if ($processed_item['type'] == 'group') { + $counters = $this->getCounters($item['id']); + if (!empty($counters)) { + foreach ($counters as $type => $value) { + $item[$type] = $value; + } + } + } $counters = array(); if (isset($item['total_unknown_count'])) @@ -1158,8 +1168,8 @@ class Tree { if (isset($item['total_fired_count'])) $counters['alerts'] = $item['total_fired_count']; + // Get the children of the group (special case) if ($processed_item['type'] == 'group') { - $children = $this->getGroupsChildren($items, $items_tmp, $item['id'], $server, $remove_empty); if (!empty($children)) { $processed_item['children'] = $children; @@ -1960,13 +1970,6 @@ class Tree { foreach ($items as $key => $item) { if (empty($item['parent'])) { - $counters = $this->getCounters($item['id']); - if (!empty($counters)) { - foreach ($counters as $type => $value) { - $item[$type] = $value; - } - } - unset($items[$key]); $items_tmp = array(); $processed_item = $this->getProcessedItem($item, false, $items, $items_tmp, true); From def7a59a97e24e65ef40e810201991f7a1b1fd3a Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Tue, 30 Jun 2015 16:29:39 +0200 Subject: [PATCH 2/7] Cleaned source code style. --- .../operation/agentes/networkmap.php | 4 +-- pandora_console/operation/tree.php | 28 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/pandora_console/operation/agentes/networkmap.php b/pandora_console/operation/agentes/networkmap.php index 281b1aa98b..0f59ab4a04 100644 --- a/pandora_console/operation/agentes/networkmap.php +++ b/pandora_console/operation/agentes/networkmap.php @@ -42,7 +42,7 @@ if ($add_networkmap) { // $networkmap_read = check_acl ($config['id_user'], 0, "MR"); $networkmap_write = check_acl ($config['id_user'], 0, "MW"); $networkmap_manage = check_acl ($config['id_user'], 0, "MM"); - + if (!$networkmap_write && !$networkmap_manage) { db_pandora_audit("ACL Violation", "Trying to accessnode graph builder"); @@ -151,7 +151,7 @@ else if ($delete_networkmap || $save_networkmap || $update_networkmap) { $networkmap_write = check_acl ($config['id_user'], $store_group, "MW"); if (!isset($networkmap_manage)) $networkmap_manage = check_acl ($config['id_user'], $store_group, "MM"); - + if (!$networkmap_write && !$networkmap_manage) { db_pandora_audit("ACL Violation", "Trying to accessnode graph builder"); diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index 6bea6e55f4..af1ce658af 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -48,31 +48,31 @@ if (!$strict_acl) { html_print_image("images/tag.png", true, array("title" => __('Tags'))) . "", 'active' => ($tab == "tag")); - + $tabs['os'] = array( 'text' => "" . html_print_image("images/operating_system.png", true, array("title" => __('OS'))) . "", 'active' => ($tab == "os")); - + $tabs['group'] = array( 'text' => "" . html_print_image("images/group.png", true, array("title" => __('Groups'))) . "", 'active' => ($tab == "group")); - + $tabs['module_group'] = array( 'text' => "" . html_print_image("images/module_group.png", true, array("title" => __('Module groups'))) . "", 'active' => ($tab == "module_group")); - + $tabs['module'] = array( 'text' => "" . html_print_image("images/brick.png", true, array("title" => __('Modules'))) . "", 'active' => ($tab == "module")); - + if ($enterpriseEnable) { $tabs['policies'] = array( 'text' => "" . @@ -111,7 +111,7 @@ switch ($tab) { if (!defined('METACONSOLE')) { if (!$strict_acl) $header_title = $header_title ." - ". $header_sub_title; - + ui_print_page_header($header_title, "images/extensions.png", false, "", false, $tabs); } // ---------------------Tabs ------------------------------------------- @@ -142,7 +142,7 @@ if (defined('METACONSOLE')) $row[] = html_print_input_text("search_agent", $search_agent, '', 70, 30, true); else $row[] = html_print_input_text("search_agent", $search_agent, '', 40, 30, true); - + // Button $row[] = html_print_submit_button(__('Filter'), "uptbutton", false, 'class="sub search"', true); $table->rowspan[][count($row)-1] = 2; @@ -158,13 +158,13 @@ if (!defined('METACONSOLE')) { $module_status_arr[AGENT_MODULE_STATUS_CRITICAL_BAD] = __('Critical'); $module_status_arr[AGENT_MODULE_STATUS_UNKNOWN] = __('Unknown'); $module_status_arr[AGENT_MODULE_STATUS_NOT_INIT] = __('Not init'); - + $row = array(); $row[] = __('Module status'); $row[] = html_print_select($module_status_arr, "status_module", $status_module, '', '', 0, true); $row[] = __('Search module'); $row[] = html_print_input_text("search_module", $search_module, '', 40, 30, true); - + $table->data[] = $row; } @@ -240,7 +240,7 @@ enterprise_hook('close_meta_frame'); // Clear the tree if (typeof treeController.recipient != 'undefined' && treeController.recipient.length > 0) treeController.recipient.empty(); - + $(".loading_tree").show(); var parameters = {}; @@ -315,14 +315,14 @@ enterprise_hook('close_meta_frame'); dataType: "json" }); } - + // Show the modal window of an module var moduleDetailsWindow = $("
"); moduleDetailsWindow .hide() .prop("id", "module_details_window") .appendTo('body'); - + function show_module_detail_dialog(module_id, id_agent, server_name, offset, period, module_name) { var params = {}; var f = new Date(); @@ -401,7 +401,7 @@ enterprise_hook('close_meta_frame'); secondText: '', currentText: '', closeText: ''}); - + $.datepicker.setDefaults($.datepicker.regional[ ""]); $("#text-date_from, #text-date_to").datepicker({dateFormat: ""}); @@ -423,5 +423,5 @@ enterprise_hook('close_meta_frame'); return false; }); } - + From a54e99feba5e3f71684b7e753585c376a1168b7c Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 30 Jun 2015 16:30:14 +0200 Subject: [PATCH 3/7] Brute force all known connection methods. A lot slower, but seems to work better. --- .../util/recon_scripts/snmp-recon.pl | 80 +++++++++++++++++-- 1 file changed, 72 insertions(+), 8 deletions(-) diff --git a/pandora_server/util/recon_scripts/snmp-recon.pl b/pandora_server/util/recon_scripts/snmp-recon.pl index 83bf8d424f..1edcf70494 100755 --- a/pandora_server/util/recon_scripts/snmp-recon.pl +++ b/pandora_server/util/recon_scripts/snmp-recon.pl @@ -89,6 +89,9 @@ my %SWITCH_TO_SWITCH; # MAC addresses. my %MAC; +# Parent-child relationships (in Pandora). +my %PARENTS; + # Entry router. my $ROUTER; @@ -461,6 +464,8 @@ sub arp_cache_discovery { foreach my $line (@output) { next unless ($line =~ /^$IPNETTOMEDIAPHYSADDRESS.\d+.(\S+)\s+=\s+\S+:\s+(.*)$/); my ($ip_addr, $mac_addr) = ($1, $2); + next if ($ip_addr =~ m/\.255$|\.0$|127\.0\.0\.1$/); + $mac_addr = parse_mac($mac_addr); # Save the mac to connect hosts to switches/routers. @@ -497,6 +502,8 @@ sub find_synonyms($$$) { # Get ARP cache. my @ip_addresses = snmp_get_value_array($device, $community, $IPENTADDR); foreach my $ip_address (@ip_addresses) { + next if ($ip_address =~ m/\.255$|\.0$|127\.0\.0\.1$/); + $VISITED_DEVICES{$device}->{'addr'}->{$ip_address} = ''; # Link the two addresses. @@ -737,7 +744,6 @@ sub host_connectivity($) { next unless ($device_if_name ne ''); my $host_if_name = defined($COMMUNITIES{$host}) ? get_if_from_mac($host, $COMMUNITIES{$host}, $mac) : ''; if ($VISITED_DEVICES{$device}->{'type'} eq 'router') { - next if defined ($SWITCH_TO_SWITCH{"$device$device_if_name"}); # The switch is probably connected to another router/switch. message("Host $host " . ($host_if_name ne '' ? "(if $host_if_name)" : '') . " is connected to router $device (if $device_if_name)."); } elsif ($VISITED_DEVICES{$device}->{'type'} eq 'switch') { @@ -792,7 +798,7 @@ sub create_pandora_agent($) { # Assign the new address to the agent my $agent_addr_id = get_agent_addr_id ($DBH, $addr_id, $agent_id); if ($agent_addr_id <= 0) { - db_do ($DBH, 'INSERT INTO taddress_agent (id_a, id_agent) + db_do ($DBH, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) VALUES (?, ?)', $addr_id, $agent_id); } } @@ -881,12 +887,34 @@ sub create_pandora_agent($) { return $agent_id; } +########################################################################## +# Check for switches that are connected to other switches/routers and show +# up in a switche/router's port. +########################################################################## +sub switch_already_connected ($$$$) { + my ($dev_1, $if_1, $dev_2, $if_2) = @_; + + if ($VISITED_DEVICES{$dev_1}->{'type'} eq 'router' || + $VISITED_DEVICES{$dev_1}->{'type'} eq 'switch') { + return 1 if defined ($SWITCH_TO_SWITCH{"$dev_1$if_1"}); # The switch is probably connected to another router/switch. + } + elsif ($VISITED_DEVICES{$dev_2}->{'type'} eq 'router' || + $VISITED_DEVICES{$dev_2}->{'type'} eq 'switch') { + return 1 if defined ($SWITCH_TO_SWITCH{"$dev_2$if_2"}); # The switch is probably connected to another router/switch. + } + + return 0; +} + ########################################################################## # Connect the given devices in the Pandora FMS database. ########################################################################## sub connect_pandora_agents($$$$) { my ($dev_1, $if_1, $dev_2, $if_2) = @_; + # Check switch connectivy. + return if (switch_already_connected($dev_1, $if_1, $dev_2, $if_2) == 1); + # Get the agent for the first device. my $agent_1 = get_agent_from_addr($DBH, $dev_1); if (!defined($agent_1)) { @@ -901,7 +929,7 @@ sub connect_pandora_agents($$$$) { } return unless defined($agent_2); - # Check wether the modules exists. + # Check whether the modules exists. my $module_name_1 = safe_input($if_1 eq '' ? 'ping' : "ifOperStatus_$if_1"); my $module_name_2 = safe_input($if_2 eq '' ? 'ping' : "ifOperStatus_$if_2"); my $module_id_1 = get_agent_module_id($DBH, $module_name_1, $agent_1->{'id_agente'}); @@ -915,6 +943,13 @@ sub connect_pandora_agents($$$$) { return; } + # Make sure the modules are not already connected. + if (defined($CONNECTIONS{"${module_id_1}_${module_id_2}"}) || + defined($CONNECTIONS{"${module_id_2}_${module_id_1}"})) { + message("Devices $dev_1 and $dev_2 are already connected."); + return; + } + # Mark the two devices as connected. $CONNECTIONS{"${module_id_1}_${module_id_2}"} = 1; if (ref($VISITED_DEVICES{$dev_1}) eq 'HASH') { @@ -935,7 +970,13 @@ sub connect_pandora_agents($$$$) { } # Update parents. - db_do($DBH, 'UPDATE tagente SET id_parent=? WHERE id_agente=?', $agent_1->{'id_agente'}, $agent_2->{'id_agente'}); + if (!defined($PARENTS{$agent_2->{'id_agente'}})) { + $PARENTS{$agent_2->{'id_agente'}} = $agent_1->{'id_agente'}; + db_do($DBH, 'UPDATE tagente SET id_parent=? WHERE id_agente=?', $agent_1->{'id_agente'}, $agent_2->{'id_agente'}); + } elsif (!defined($PARENTS{$agent_1->{'id_agente'}})) { + $PARENTS{$agent_1->{'id_agente'}} = $agent_2->{'id_agente'}; + db_do($DBH, 'UPDATE tagente SET id_parent=? WHERE id_agente=?', $agent_2->{'id_agente'}, $agent_1->{'id_agente'}); + } } @@ -1059,7 +1100,7 @@ pandora_load_config(\%CONF); pandora_start_log(\%CONF); # Connect to the DB -$DBH = db_connect ($CONF{'dbengine'}, $CONF{'dbname'}, $CONF{'dbhost'}, $CONF{'dbport'}, $CONF{'dbuser'}, $CONF{'dbpass'}); +$DBH = db_connect ('mysql', $CONF{'dbname'}, $CONF{'dbhost'}, $CONF{'dbport'}, $CONF{'dbuser'}, $CONF{'dbpass'}); # 0% update_recon_task($DBH, $TASK_ID, 1); @@ -1131,12 +1172,35 @@ for (my $i = 0; defined($ROUTERS[$i]); $i++) { update_recon_task($DBH, $TASK_ID, 75); # Find switch/router to host connections. +my @hosts = (@ROUTERS, @SWITCHES, @HOSTS); message("[6/6] Finding switch/router to end host connectivity..."); -foreach my $device (@ROUTERS, @SWITCHES, @HOSTS) { +foreach my $device (@hosts) { host_connectivity($device); } -foreach my $host (@HOSTS) { - next unless (ref($VISITED_DEVICES{$host}) eq 'HASH'); # Skip aliases. + +# Retry all known connectivity methods by brute force. +for (my $i = 0; defined($hosts[$i]); $i++) { + my $switch_1 = $hosts[$i]; + for (my $j = $i + 1; defined($hosts[$j]); $j++) { + my $switch_2 = $hosts[$j]; + switch_to_switch_connectivity($switch_1, $switch_2) if ($switch_1 ne $switch_2); + } +} +foreach my $router (@hosts) { + foreach my $switch (@hosts) { + router_to_switch_connectivity($router, $switch) if ($router ne $switch); + } +} +for (my $i = 0; defined($hosts[$i]); $i++) { + my $router_1 = $hosts[$i]; + for (my $j = $i + 1; defined($hosts[$j]); $j++) { + my $router_2 = $hosts[$j]; + router_to_router_connectivity($router_1, $router_2) if ($router_1 ne $router_2); + } +} + +# Connect hosts that are still unconnected using traceroute. +foreach my $host (@hosts) { next if ($VISITED_DEVICES{$host}->{'connected'} == 1); # Skip already connected hosts. traceroute_connectivity($host); } From 1c719b3bdecc60c033b9022aea02e6a93c54ba9b Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 30 Jun 2015 16:32:31 +0200 Subject: [PATCH 4/7] Fixes for the metaconsole's plug-in server. --- pandora_server/bin/pandora_server | 2 +- pandora_server/lib/PandoraFMS/Core.pm | 11 ++++++----- pandora_server/lib/PandoraFMS/Tools.pm | 14 ++++++++++++++ 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index f6c5f5fb3f..3dad433d68 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -107,7 +107,7 @@ sub pandora_startup () { pandora_audit (\%Config, 'Pandora FMS Server Daemon starting', 'SYSTEM', 'System', $DBH); # Load servers - if (!defined($Config{"license_type"}) || $Config{"license_type"} != METACONSOLE_LICENSE) { + if (!is_metaconsole(\%Config)) { pandora_reset_server (\%Config, $DBH); push (@Servers, new PandoraFMS::DataServer (\%Config, $DBH)); push (@Servers, new PandoraFMS::NetworkServer (\%Config, $DBH)); diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index a23b56308f..670a05ae03 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -2856,9 +2856,10 @@ sub pandora_event ($$$$$$$$$$;$$$$$$$$$) { $id_alert_am, $id_agentmodule, $event_type, $event_status, $dbh, $source, $user_name, $comment, $id_extra, $tags, $critical_instructions, $warning_instructions, $unknown_instructions, $custom_data) = @_; - + my $event_table = is_metaconsole($pa_config) ? 'tmetaconsole_event' : 'tevento'; + my $agent = undef; - if ($id_agente != 0) { + if (defined($id_agente) && $id_agente != 0) { $agent = get_db_single_row ($dbh, 'SELECT * FROM tagente WHERE id_agente = ?', $id_agente); if (defined ($agent) && $agent->{'quiet'} == 1) { logger($pa_config, "Generate Event. The agent '" . $agent->{'nombre'} . "' is in quiet mode.", 10); @@ -2867,7 +2868,7 @@ sub pandora_event ($$$$$$$$$$;$$$$$$$$$) { } my $module = undef; - if ($id_agentmodule != 0) { + if (defined($id_agentmodule) && $id_agentmodule != 0) { $module = get_db_single_row ($dbh, 'SELECT * FROM tagente_modulo WHERE id_agente_modulo = ?', $id_agentmodule); if (defined ($module) && $module->{'quiet'} == 1) { logger($pa_config, "Generate Event. The module '" . $module->{'nombre'} . "' is in quiet mode.", 10); @@ -2912,12 +2913,12 @@ sub pandora_event ($$$$$$$$$$;$$$$$$$$$) { # Validate events with the same event id if (defined ($id_extra) && $id_extra ne '') { logger($pa_config, "Updating events with extended id '$id_extra'.", 10); - db_do ($dbh, 'UPDATE tevento SET estado = 1, ack_utimestamp = ? WHERE estado = 0 AND id_extra=?', $utimestamp, $id_extra); + db_do ($dbh, 'UPDATE ' . $event_table . ' SET estado = 1, ack_utimestamp = ? WHERE estado = 0 AND id_extra=?', $utimestamp, $id_extra); } # Create the event logger($pa_config, "Generating event '$evento' for agent ID $id_agente module ID $id_agentmodule.", 10); - db_do ($dbh, 'INSERT INTO tevento (id_agente, id_grupo, evento, timestamp, estado, utimestamp, event_type, id_agentmodule, id_alert_am, criticity, user_comment, tags, source, id_extra, id_usuario, critical_instructions, warning_instructions, unknown_instructions, ack_utimestamp, custom_data) + db_do ($dbh, 'INSERT INTO ' . $event_table . ' (id_agente, id_grupo, evento, timestamp, estado, utimestamp, event_type, id_agentmodule, id_alert_am, criticity, user_comment, tags, source, id_extra, id_usuario, critical_instructions, warning_instructions, unknown_instructions, ack_utimestamp, custom_data) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', $id_agente, $id_grupo, safe_input ($evento), $timestamp, $event_status, $utimestamp, $event_type, $id_agentmodule, $id_alert_am, $severity, $comment, $module_tags, $source, $id_extra, $user_name, $critical_instructions, $warning_instructions, $unknown_instructions, $ack_utimestamp, $custom_data); # Do not write to the event file diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index c31e2751e4..5b567ec74b 100644 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -71,6 +71,7 @@ our @EXPORT = qw( float_equal sqlWrap is_numeric + is_metaconsole clean_blank pandora_sendmail pandora_trash_ascii @@ -1375,6 +1376,19 @@ sub valid_regex ($) { return 1; } +############################################################################### +# Returns 1 if a valid metaconsole license is configured, 0 otherwise. +############################################################################### +sub is_metaconsole ($) { + my ($pa_config) = @_; + + if (defined($pa_config->{"license_type"}) && $pa_config->{"license_type"} == METACONSOLE_LICENSE) { + return 1; + } + + return 0; +} + # End of function declaration # End of defined Code From 91ffd584b990aac8838ccbf4098d6e20d469bebe Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 30 Jun 2015 16:33:20 +0200 Subject: [PATCH 5/7] Added back a column that was accidentally removed. --- pandora_console/pandoradb.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index bfdeb8cf43..761f277e25 100755 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -658,6 +658,7 @@ CREATE TABLE IF NOT EXISTS `tmodule_group` ( -- ---------------------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tmodule_relationship` ( `id` int(10) unsigned NOT NULL auto_increment, + `id_rt` int(10) unsigned NOT NULL DEFAULT 0, `module_a` int(10) unsigned NOT NULL, `module_b` int(10) unsigned NOT NULL, `disable_update` tinyint(1) unsigned NOT NULL default '0', @@ -665,6 +666,8 @@ CREATE TABLE IF NOT EXISTS `tmodule_relationship` ( FOREIGN KEY (`module_a`) REFERENCES tagente_modulo(`id_agente_modulo`) ON DELETE CASCADE, FOREIGN KEY (`module_b`) REFERENCES tagente_modulo(`id_agente_modulo`) + ON DELETE CASCADE, + FOREIGN KEY (`id_rt`) REFERENCES trecon_task(`id_rt`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; From a9f2171cce8d15f2cb278ef31756c08572ed97c8 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 30 Jun 2015 16:48:32 +0200 Subject: [PATCH 6/7] Show system events in the metaconsole. --- .../operation/events/events.build_query.php | 37 +++++++++++-------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/pandora_console/operation/events/events.build_query.php b/pandora_console/operation/events/events.build_query.php index 5b18288a97..a723f9203b 100755 --- a/pandora_console/operation/events/events.build_query.php +++ b/pandora_console/operation/events/events.build_query.php @@ -213,25 +213,30 @@ if (($tags_acls_condition != ERR_WRONG_PARAMETERS) && ($tags_acls_condition != E // Metaconsole fitlers if ($meta) { - $enabled_nodes = db_get_all_rows_sql(' - SELECT id - FROM tmetaconsole_setup - WHERE disabled = 0'); - - if (empty($enabled_nodes)) { - $sql_post .= ' AND 1 = 0'; - } - else { - $enabled_nodes_id = array(); - foreach ($enabled_nodes as $en) { - $enabled_nodes_id[] = $en['id']; - } - $sql_post .= ' AND server_id IN (' . - implode(',',$enabled_nodes_id) . ')'; - } if ($server_id) { $sql_post .= " AND server_id = " . $server_id; + } else { + $enabled_nodes = db_get_all_rows_sql(' + SELECT id + FROM tmetaconsole_setup + WHERE disabled = 0'); + + if (empty($enabled_nodes)) { + $sql_post .= ' AND 1 = 0'; + } + else { + if ($strict_user == 1) { + $enabled_nodes_id = array(); + } else { + $enabled_nodes_id = array(0); + } + foreach ($enabled_nodes as $en) { + $enabled_nodes_id[] = $en['id']; + } + $sql_post .= ' AND server_id IN (' . + implode(',',$enabled_nodes_id) . ')'; + } } } ?> From 3d973710a3c54f0d2b17af9dd952bce42097c7eb Mon Sep 17 00:00:00 2001 From: Vanessa Gil Date: Tue, 30 Jun 2015 17:00:35 +0200 Subject: [PATCH 7/7] Updated translations. --- pandora_console/include/languages/ar.mo | Bin 107254 -> 107278 bytes pandora_console/include/languages/ar.po | 1054 +--- pandora_console/include/languages/ca.mo | Bin 234553 -> 234553 bytes pandora_console/include/languages/ca.po | 3988 +------------ pandora_console/include/languages/cs.mo | Bin 129143 -> 172044 bytes pandora_console/include/languages/cs.po | 2288 ++------ pandora_console/include/languages/de.mo | Bin 273943 -> 273961 bytes pandora_console/include/languages/de.po | 5448 +----------------- pandora_console/include/languages/el.mo | Bin 18918 -> 18918 bytes pandora_console/include/languages/el.po | 174 +- pandora_console/include/languages/en_GB.mo | Bin 248211 -> 248282 bytes pandora_console/include/languages/en_GB.po | 5133 +---------------- pandora_console/include/languages/es.mo | Bin 297751 -> 313057 bytes pandora_console/include/languages/es.po | 5918 +------------------- pandora_console/include/languages/fr.mo | Bin 274215 -> 274225 bytes pandora_console/include/languages/fr.po | 4857 +--------------- pandora_console/include/languages/it.mo | Bin 72072 -> 72094 bytes pandora_console/include/languages/it.po | 1260 +---- pandora_console/include/languages/ja.mo | Bin 326625 -> 333462 bytes pandora_console/include/languages/ja.po | 5268 +---------------- pandora_console/include/languages/nl.mo | Bin 231893 -> 231951 bytes pandora_console/include/languages/nl.po | 4465 +-------------- pandora_console/include/languages/pl.mo | Bin 79073 -> 79099 bytes pandora_console/include/languages/pl.po | 1293 +---- pandora_console/include/languages/pt.mo | Bin 105911 -> 105963 bytes pandora_console/include/languages/pt.po | 1332 +---- pandora_console/include/languages/pt_BR.mo | Bin 238141 -> 238141 bytes pandora_console/include/languages/pt_BR.po | 4612 +-------------- pandora_console/include/languages/ru.mo | Bin 307243 -> 307262 bytes pandora_console/include/languages/ru.po | 3948 +------------ pandora_console/include/languages/sk.mo | Bin 102100 -> 102100 bytes pandora_console/include/languages/sk.po | 1407 +---- pandora_console/include/languages/tr.mo | Bin 34396 -> 34419 bytes 33 files changed, 852 insertions(+), 51593 deletions(-) diff --git a/pandora_console/include/languages/ar.mo b/pandora_console/include/languages/ar.mo index 3fe695e1d4e363e0c5cb7db6b938a9b93cf5e372..2d1c3124ee50a6b4c67a054c3e406ce03b7bf380 100644 GIT binary patch delta 12222 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 delta 12192 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 aTV|TH&S{dp^!G!x^JO>RRO9gXZ~Q;r`)Dix diff --git a/pandora_console/include/languages/ar.po b/pandora_console/include/languages/ar.po index d1fc0eb6c6..57db5b11d0 100644 --- a/pandora_console/include/languages/ar.po +++ b/pandora_console/include/languages/ar.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-ar\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2014-02-11 14:23+0000\n" -"Last-Translator: ســند \n" +"PO-Revision-Date: 2015-06-29 18:34+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: Arab \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 @@ -20269,1049 +20269,3 @@ msgstr "خطأ في الحماية. الرجاء الاتصال بالإداري #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "ملف مفقود في قرص التخزين الرجاء الاتصال بالإداري" - -#~ msgid "Id" -#~ msgstr "المعرف" - -#~ msgid "Settings" -#~ msgstr "الإعدادات" - -#~ msgid "Development" -#~ msgstr "تطوير" - -#~ msgid "Factor" -#~ msgstr "العامل" - -#~ msgid "Store" -#~ msgstr "خزّن" - -#~ msgid "Up" -#~ msgstr "أعلى" - -#~ msgid "Master" -#~ msgstr "رئيس" - -#~ msgid "hour" -#~ msgstr "ساعة" - -#~ msgid "day" -#~ msgstr "اليوم" - -#~ msgid "week" -#~ msgstr "أسبوع" - -#~ msgid "month" -#~ msgstr "شهر" - -#~ msgid "Del" -#~ msgstr "حذف" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Load" -#~ msgstr "تحميل" - -#~ msgid "from" -#~ msgstr "من" - -#~ msgid " to " -#~ msgstr " إلى " - -#~ msgid "Info" -#~ msgstr "معلومات" - -#~ msgid "SNMP server" -#~ msgstr "خادوم SNMP" - -#~ msgid "Seconds" -#~ msgstr "ثوان" - -#~ msgid "minute" -#~ msgstr "دقيقة" - -#~ msgid "Your IP" -#~ msgstr "IP خاص بك" - -#~ msgid "No news articles at this moment" -#~ msgstr "لا مقالات اخبارية حتى هذه اللحظة" - -#~ msgid "Monitors normal" -#~ msgstr "مراقبة عادية" - -#~ msgid "Monitors critical" -#~ msgstr "مراقبة الحوادث" - -#~ msgid "Monitors warning" -#~ msgstr "مراقبة التحذيرات" - -#~ msgid "Alerts defined" -#~ msgstr "تعريق التنبيهات" - -#~ msgid "Users defined" -#~ msgstr "تعريف المستخدمين" - -#~ msgid "Monitors unknown" -#~ msgstr "مراقبة مجهول" - -#~ msgid "Visual map wizard" -#~ msgstr "معالج الخارطة الافتراضية" - -#~ msgid "Image range (px)" -#~ msgstr "مدى صورة (بكسل)" - -#~ msgid "Image size (px)" -#~ msgstr "حجم صورة (بكسل)" - -#~ msgid "Map builder" -#~ msgstr "بنّاء خريطة" - -#~ msgid "No layout with this id found" -#~ msgstr "لم يتم العثور على هوية النسق" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "كانت هناك مشكلة فيتكوين التقرير" - -#~ msgid "Type at least two characters to search" -#~ msgstr "أجخل حرفين على الأقل للبحث" - -#~ msgid "No items defined" -#~ msgstr "لم يتم تعريف عناصر" - -#~ msgid "Label color" -#~ msgstr "لون الملصق" - -#~ msgid "Redraw" -#~ msgstr "أعد الرسم" - -#~ msgid "Global health" -#~ msgstr "صحة عامة" - -#~ msgid "You don't have access" -#~ msgstr "لا تستطيع للدخول" - -#~ msgid "Only pending" -#~ msgstr "فقط معلقة" - -#~ msgid "Remote modules rate" -#~ msgstr "معدل الوحدات المحلية" - -#~ msgid "Monitors not init" -#~ msgstr "شاشات غير متهيأه" - -#~ msgid "Uninitialized modules" -#~ msgstr "وحدات غير مهيأة" - -#~ msgid "Local modules rate" -#~ msgstr "معدل الوحدات المحلية" - -#~ msgid "Autorefresh" -#~ msgstr "تحديث تلقائي" - -#~ msgid "There are no agents included in this group" -#~ msgstr "ليس هناك أي عميل في هذه المجموعة" - -#~ msgid "T." -#~ msgstr "ت." - -#~ msgid "G." -#~ msgstr "ج" - -#~ msgid "Go to alert overview" -#~ msgstr "اذهب إلى رؤية عامة للتنبيهات" - -#~ msgid " seconds." -#~ msgstr " ثوان" - -#~ msgid "Delete agents" -#~ msgstr "حذف العناصر" - -#~ msgid "None agent in this category" -#~ msgstr "لا يوجد عناصر في هذا التصنيف" - -#~ msgid "Upload file" -#~ msgstr "تحميل ملف" - -#~ msgid "Sumatory" -#~ msgstr "مجموع عمليات حسابية" - -#~ msgid "Agents detailed event" -#~ msgstr "حدث مفصل لعناص" - -#~ msgid "Group detailed event" -#~ msgstr "حدث مفصل عن المجموعة" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "هذا السيرفور لم يتسلم أية مهام من الـ" - -#~ msgid "Event graph by group" -#~ msgstr "جرافيك الحدث حسب المجموعة" - -#~ msgid "No layouts found" -#~ msgstr "لم يتم العثور على تصاميم" - -#~ msgid "Search value" -#~ msgstr "البحث عن القيمة" - -#~ msgid "Read message" -#~ msgstr "قراءة رسالة" - -#~ msgid "-Select group-" -#~ msgstr "اختيار مجموعة" - -#~ msgid "-Select user-" -#~ msgstr "اختيار مستخدم" - -#~ msgid "Combined image render" -#~ msgstr "مشاهدة صور مركبة" - -#~ msgid "Agent detailed event" -#~ msgstr "حدث مفصل خاص بالالعنصر" - -#~ msgid "Agent down" -#~ msgstr "الالعنصر معطل" - -#~ msgid "Alerts disabled" -#~ msgstr "التنبيه معطل" - -#~ msgid "At least one monitor fails" -#~ msgstr "هناك شاشة معطلة واحدة على الأقل" - -#~ msgid "Change between Green/Red state" -#~ msgstr "غير بين الحالات أخضر / أحمر" - -#~ msgid "Invalid method supplied" -#~ msgstr "المنهاج المستورد غير صحيح" - -#~ msgid "Module Down" -#~ msgstr "وحدةمعطلة" - -#~ msgid "Module Up" -#~ msgstr "وحدة يعمل" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "لا يوجد سيرفورات معدة في قاعدة البيانات" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "هذا الالعنصر لا يمتلك على أي وحدة" - -#~ msgid "int" -#~ msgstr "إي إن تي" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "عرض آخر وحدات مستلمة من طرف العميل" - -#~ msgid "User-defined SLA items" -#~ msgstr "عناصر اتفاق مستوى الخدمة معرفه من طرف المستخدم" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "اتفاق لمستوى الخدمة تلقائي للشاشات" - -#~ msgid "Raw Data" -#~ msgstr "بيانات خام" - -#~ msgid "Events generated -by module-" -#~ msgstr "حداث تم إنشاءها -حسب وحدة-" - -#~ msgid "secs." -#~ msgstr "الثوان" - -#~ msgid "Flag" -#~ msgstr "علم" - -#~ msgid "No simple alerts found" -#~ msgstr "لم يتم العثور على أي تنبيه بسيط" - -#~ msgid "Single alerts" -#~ msgstr "تنبيهات فردية" - -#~ msgid "From the last" -#~ msgstr "من آخر" - -#~ msgid "Compound alerts" -#~ msgstr "تنبيهات مركبة" - -#~ msgid "MD5 check" -#~ msgstr "التحقق من إم دي5" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "وحدات متأخرة / أقصى تأخر (ثوان)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "وحدات التي يتم تشغيلها في هذا السيرفور/ وحدات كلها من هذا الصنف" - -#~ msgid "Create incident from event" -#~ msgstr "إنشاء حادث انطلاقا من حدث" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "ا يوجد وحدات لتقييم اتفاق مستوى الخدمة" - -#~ msgid "User option" -#~ msgstr "اختيار المستخدم" - -#~ msgid "IP address option" -#~ msgstr "اختيار عنوان آي بي" - -#~ msgid "Port option" -#~ msgstr "اختيار منفذ" - -#~ msgid "Password option" -#~ msgstr "اختيار كلمة السر" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "ساعة %d" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "ساعات %d" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "أسابيع %d" - -#, php-format -#~ msgid "%d week" -#~ msgstr "أسبوع %d" - -#, php-format -#~ msgid "%d days" -#~ msgstr "أيام %d" - -#, php-format -#~ msgid "%d day" -#~ msgstr "يوم %d" - -#, php-format -#~ msgid "%d month" -#~ msgstr "شهر %d" - -#~ msgid "Error creating export target" -#~ msgstr "خطأ أثناء إنشاء سيرفور التصدير" - -#~ msgid "Error updating export target" -#~ msgstr "خطأ أثناء تحديث سيرفور التصدير" - -#~ msgid "Successfully updated export target" -#~ msgstr "تم تحديث سيرفور التصدير بنجاح" - -#~ msgid "Error deleting export target" -#~ msgstr "خطأ أثناء حذف سيرفور التصدير" - -#~ msgid "Successfully deleted export target" -#~ msgstr "تم حذف سيرفور التصدير بنجاح\"" - -#~ msgid "Export targets" -#~ msgstr "تصدير الأهداف" - -#~ msgid "Successfully created export target" -#~ msgstr "تم إنشاء سيرفور التصدير بنجاح" - -#~ msgid "There are no export targets configured" -#~ msgstr "لا يوجد أي أهداف تصدير معدة" - -#~ msgid "Preffix" -#~ msgstr "البادئة" - -#~ msgid "Transfer mode" -#~ msgstr "وضعية التحويل" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "\"هذا المستخدم يمتلك الصلاحيات لإدارة كل شيء. هذا هو المستخدم الإداري و يعيد " -#~ "منح جميع الصلاحيات الممنوحة في \"\"البروفيلات/مجموعات" - -#~ msgid "Manage Database" -#~ msgstr "إدارة قاعدة البيانات" - -#~ msgid "Last name" -#~ msgstr "الإسم العائلي" - -#~ msgid "First name" -#~ msgstr "الإسم الشخصي" - -#~ msgid "N/A\t" -#~ msgstr "غير متوفر/ تي\t" - -#~ msgid "WMI component management" -#~ msgstr "إدارة عنصر نظام الويندوز لإدارة الأجهزة (WMI)" - -#~ msgid "Minimum Data" -#~ msgstr "مسافة الوحدة" - -#~ msgid "Maximum Data" -#~ msgstr "البيانات القصوى" - -#~ msgid "Network component" -#~ msgstr "عناصر الشبكة" - -#~ msgid "Plugin component" -#~ msgstr "عنصرالبرامج المساعدة" - -#~ msgid "Plugin parameters" -#~ msgstr "إعدادات برامج مساعدة" - -#~ msgid "SLA period (seconds)" -#~ msgstr "ضغط الإضافات في ساعات (1 جيد- 20 سيء)" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "هذا العميل لا يمتلك على أي شاشة عاملة" - -#~ msgid "Module Interval" -#~ msgstr "مسافة الوحدة" - -#~ msgid "Visual configuration" -#~ msgstr "إعداد مرئي" - -#~ msgid "Flash charts" -#~ msgstr "رسومات بالفلاش" - -#~ msgid "General configuration" -#~ msgstr "الإعدادات العامة" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "قائمة آي بي يجب أن تكون منفصلة عن" - -#~ msgid "No agent was given" -#~ msgstr "لم يتم تقديم أي عنصر" - -#~ msgid "No name was given" -#~ msgstr "لم يتم تقديم أي إسم" - -#~ msgid "Add condition" -#~ msgstr "إضافة شرط" - -#~ msgid "Operator" -#~ msgstr "مشغل" - -#~ msgid "No conditions were given" -#~ msgstr "لم يتم تقديم أي شرط" - -#~ msgid "Automatic update check" -#~ msgstr "مراقبة أوتوماتيكية للتحديثات" - -#~ msgid "Custom Value" -#~ msgstr "قيمة مخصصة" - -#~ msgid "E/D" -#~ msgstr "تش/تع" - -#~ msgid "Unmanaged error" -#~ msgstr "خطأ غير منظم" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "لا تمتلك الصلاحية اللازمة للدخول إلى هذا المصدر" - -#~ msgid "Tt" -#~ msgstr "\"Tt\"" - -#~ msgid "MinMax.Al" -#~ msgstr "تنبيهات حد أدنى/حد أقصى" - -#~ msgid "Desc" -#~ msgstr "وصف" - -#~ msgid "Software agent monitor" -#~ msgstr "برنامج مراقبة الالعنصر" - -#~ msgid "Software agent data" -#~ msgstr "بيانات عنصر البرنامج" - -#~ msgid "Network agent data" -#~ msgstr "بيانات عنصر الشبكة" - -#~ msgid "Network agent monitor" -#~ msgstr "مراقبة عنصر الشبكة" - -#~ msgid "Oper" -#~ msgstr "مشغل" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "الرجاء فحص ما إذا كان الدليل الحالي يمتلك صلاحية الكتابة على سيرفور " -#~ "بروتوكول نقل النص الفائق" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "الدليل الحالي غير قابل للقراءة من سيرفور بروتوكول نقل النص الفائق" - -#~ msgid "Deleting" -#~ msgstr "يتم الحذف" - -#~ msgid "attach_error" -#~ msgstr "خطأ أثناء الإرفاق" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "شاشة للعميل keepalive" - -#~ msgid "Module detailed event" -#~ msgstr "وحدة مفصل للعميل" - -#~ msgid "Agents in group" -#~ msgstr "عناصر في المجموعة" - -#~ msgid "Older" -#~ msgstr "الأقدم" - -#~ msgid "Last hour" -#~ msgstr "آخر ساعة" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "آخر %s الأيام" - -#~ msgid "Keygen file is not executable" -#~ msgstr "ملف منشأ المفاتيح لا يمكن تشغيله" - -#~ msgid "Keygen file does not exists" -#~ msgstr "ملف منشأ المفاتيح غير موجود" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "يوجد تحديث جديد لـ Pandora FMS" - -#~ msgid "Update server port" -#~ msgstr "تحديث منفذ السيرفور" - -#~ msgid "Binary input path" -#~ msgstr "طريق المدخلات الثنائية" - -#~ msgid "Server authorization rejected" -#~ msgstr "تم رفض إذن السيرفور" - -#~ msgid "Your system version number is" -#~ msgstr "رقم نسخة نظامك هو" - -#~ msgid "Update manager settings updated" -#~ msgstr "تم تحديث ضوابط مدير التحديث" - -#~ msgid "Overwrite local changes" -#~ msgstr "كتابة التغييرات المحلية مرة أخرى" - -#~ msgid "Update server host" -#~ msgstr "مفتاح العميل" - -#~ msgid "Update server path" -#~ msgstr "تحديث السيرفور المضيف" - -#~ msgid "Keygen path" -#~ msgstr "مسار منشأ المفاتيح" - -#~ msgid "Your system is up-to-date" -#~ msgstr "إن نظامك يمتلك آخر تحديث" - -#~ msgid "" -#~ "The new
Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "\"العميل الجديد لـUpdate " -#~ "Manager \r\n" -#~ "\"ييتعامل مع Pandora FMS 3.0. إنه يساعد المسؤولين من أجل\"\"تحديث نظام " -#~ "Pandora FMS تلقائياً، انطلاقا من أن مدير التحديث\" \"لديه مهمة الحصول على " -#~ "وحدات جديدة، برامج مساعدة جديدة و مميزات جديدة (بما في ذلك إنجاز\"\"كل " -#~ "التعديلات في النسخ المقبلة) بشكل تلقائي" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "مدير التحديث هو إحدى الميزات الأكثر تقدما في نسخة Pandora FMS 3.0 ال " -#~ "Enterprise، للحصول على المزيد من المعلومات، قم بزيارة http://pandorafms.com" - -#~ msgid "Server connection failed" -#~ msgstr "هناك عطل في الاتصال بالسيرفور" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "\"مدير التحديث يقوم بإرسال معلومات سرية حول طريقة استعمال Pandora FMS (عدد\" " -#~ "\"العناصر والوحدات قيد التنفيذ). لإيقافه يكفي\" \"حذف الإمتداد أو إزالة " -#~ "العنوان من سيرفور\" \"الإعدادات الخاص بمساعد مدير التحديث" - -#~ msgid "ALERTS FIRED" -#~ msgstr "تم إطلاق التنبيهات" - -#~ msgid "Code / binary directory" -#~ msgstr "كود/ دليل ثنائي" - -#~ msgid "Testing" -#~ msgstr "ختبارات" - -#~ msgid "Modules groups" -#~ msgstr "مجموعات الوحدات" - -#~ msgid "Decrease Weight" -#~ msgstr "إنقاص الوزن" - -#~ msgid "Increase Weight" -#~ msgstr "زيادة الوزن" - -#~ msgid "Graphs management" -#~ msgstr "إدارة الجرافيكات" - -#~ msgid "Duplicate config" -#~ msgstr "إعدادات مكرره" - -#~ msgid "Manage modules" -#~ msgstr "إدارة الوحدات" - -#~ msgid "Manage SNMP console" -#~ msgstr "إدارة كونسول بروتوكول إدارة الشبكات البسيط (SNMP)" - -#~ msgid "Correlation" -#~ msgstr "ترابط" - -#~ msgid "Manage plugins" -#~ msgstr "إدارة البرامج المساعدة" - -#~ msgid "Report builder" -#~ msgstr "إنشاء التقارير" - -#~ msgid "There was a problem adding module" -#~ msgstr "حدث مشكل أثناء إضافة وحدة" - -#~ msgid "There was a problem updating module" -#~ msgstr "حدث مشكل أثناء تحديث الوحدة" - -#~ msgid "Planned Downtime Form" -#~ msgstr "نموذج تعطيل الاتصال المخطط له" - -#~ msgid "Timestamp to" -#~ msgstr "التاريخ/الساعة إلى" - -#~ msgid "Timestamp from" -#~ msgstr "التاريخ/الساعة من" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "تعطيل الاتصال المخطط له يظهر على النظام" - -#~ msgid "No selected agents to copy" -#~ msgstr "لم يتم اختيار عميل للنسخ" - -#~ msgid "Data Copy" -#~ msgstr "نسخ بيانات" - -#~ msgid "Error adding module" -#~ msgstr "خطأ في اضافة نموذج" - -#~ msgid "Available templates" -#~ msgstr "القوالب المتوفرة" - -#~ msgid "Modules successfully added " -#~ msgstr "تم اضافة النموذج " - -#~ msgid "Manage profiles" -#~ msgstr "إدارة التفضيلات" - -#~ msgid "Skins" -#~ msgstr "الواجهات" - -#~ msgid "Collections" -#~ msgstr "المجموعات" - -#~ msgid "Not found" -#~ msgstr "غير موجود" - -#~ msgid "Check" -#~ msgstr "فحص" - -#~ msgid "7 days" -#~ msgstr "٧ أيام" - -#~ msgid "Target" -#~ msgstr "الهدف" - -#~ msgid "Short Name" -#~ msgstr "اسم قصير" - -#~ msgid "Dir" -#~ msgstr "مسار" - -#~ msgid "Proxy URL" -#~ msgstr "رابط البروكسي" - -#~ msgid "Requests" -#~ msgstr "الطلبات" - -#~ msgid "Apply changes" -#~ msgstr "تطبيق التغييرات" - -#~ msgid "List templates" -#~ msgstr "عرض القوالب" - -#~ msgid "Edit template" -#~ msgstr "تحرير قالب" - -#~ msgid "Create template" -#~ msgstr "إنشاء قالب" - -#~ msgid "Exact match" -#~ msgstr "مطابقة تامة" - -#~ msgid "Sum" -#~ msgstr "المجموع" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "Agents to apply" -#~ msgstr "الوكلاء للتطبيق" - -#~ msgid "Select all" -#~ msgstr "تحديد الكل" - -#~ msgid "Create report per agent" -#~ msgstr "إنشاء تقرير لوكيل" - -#~ msgid "reports" -#~ msgstr "تقارير" - -#~ msgid "items" -#~ msgstr "العناصر" - -#~ msgid "Modules to match" -#~ msgstr "وحدات متطابقة" - -#~ msgid "SQL preview" -#~ msgstr "عرض SQL" - -#~ msgid "Query SQL" -#~ msgstr "أمر SQL" - -#~ msgid "3 hours" -#~ msgstr "٣ ساعات" - -#~ msgid "4 days" -#~ msgstr "٤ أيام" - -#~ msgid "Policies Management" -#~ msgstr "إدارة السياسة العامة" - -#~ msgid "Linking" -#~ msgstr "جاري الوصل" - -#~ msgid "Queue" -#~ msgstr "طابور الإنتظار" - -#~ msgid "Variable" -#~ msgstr "المتغير" - -#~ msgid "Applied" -#~ msgstr "مطبق" - -#~ msgid "Finished" -#~ msgstr "مُنتهي" - -#~ msgid "Delete from queue" -#~ msgstr "حذف من الطابور" - -#~ msgid "Empty queue" -#~ msgstr "طابور فارغ" - -#~ msgid "Delete all" -#~ msgstr "حذف الكل" - -#~ msgid "Complete" -#~ msgstr "تام" - -#~ msgid "Queue filter" -#~ msgstr "مرشحات الطابور" - -#~ msgid "Incomplete" -#~ msgstr "غير مكتمل" - -#~ msgid "View associated rules" -#~ msgstr "عرض القواعد المرتبطة" - -#~ msgid "Move down" -#~ msgstr "تحريك لأسفل" - -#~ msgid "Move up" -#~ msgstr "تحرّيك لأعلى" - -#~ msgid "Field 1" -#~ msgstr "حقل ١" - -#~ msgid "Field 2" -#~ msgstr "حقل ٢" - -#~ msgid "Field 3" -#~ msgstr "حقل ٣" - -#~ msgid "Window" -#~ msgstr "نافذة" - -#~ msgid "Please Read" -#~ msgstr "رجاء القراءة" - -#~ msgid "Group by" -#~ msgstr "ترتيب بواسطة" - -#~ msgid "Page" -#~ msgstr "صفحة" - -#~ msgid "Filter by profile" -#~ msgstr "ترشيح بالملف الشخصي" - -#~ msgid "Section" -#~ msgstr "قسم" - -#~ msgid "Create skin" -#~ msgstr "إنشاء" - -#~ msgid "Relative path" -#~ msgstr "مسارات مرتبطة" - -#~ msgid "Successfully update" -#~ msgstr "تحديثات ناجحة" - -#~ msgid "Compatibility" -#~ msgstr "التوافقية" - -#~ msgid "DB Password" -#~ msgstr "كلمة مرور قاعدة البيانات" - -#~ msgid "DB User" -#~ msgstr "مستخدم قاعدة البيانات" - -#~ msgid "DB Name" -#~ msgstr "اسم قاعدة البيانات" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid " Bytes" -#~ msgstr " بايت" - -#~ msgid "Total data" -#~ msgstr "إجمالي البيانات" - -#~ msgid "Target directory" -#~ msgstr "المسار المستهدف" - -#~ msgid "View Service" -#~ msgstr "عرض الخدمة" - -#~ msgid "Warning weight" -#~ msgstr "تحذير عن الوزن" - -#~ msgid "Update all" -#~ msgstr "تحديثه كافة" - -#~ msgid "Unable to create the collection" -#~ msgstr "لا يمكن إنشاء مجموعة" - -#~ msgid "Unable to create the collection." -#~ msgstr "لا يمكن إنشاء مجموعة." - -#~ msgid "Select filter" -#~ msgstr "إختيار مرشح" - -#~ msgid " md5 file" -#~ msgstr " ملف md5" - -#~ msgid " config file" -#~ msgstr " ملف إعدادات" - -#~ msgid "Web server module" -#~ msgstr "وحدة خادم الويب" - -#~ msgid "Web checks" -#~ msgstr "مراجعات الويب" - -#~ msgid "Web checks are built correctly" -#~ msgstr "تحقيقات الويب صحيحة" - -#~ msgid "Successfully operation" -#~ msgstr "العملية بنجاح" - -#~ msgid "Sucessfully applied" -#~ msgstr "تطبق بنجاح" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "تراجع الحذف بنجاح" - -#~ msgid "Undo deletion" -#~ msgstr "التراجع عن الحذف" - -#~ msgid "User comment" -#~ msgstr "تعليقات المستخدم" - -#~ msgid "Successfully updating rule" -#~ msgstr "تحديث بنجاح الشروط" - -#~ msgid "Time interval between data transfer." -#~ msgstr "الفاصل الزمني بين نقل البيانات." - -#~ msgid " Caracters" -#~ msgstr " أحرف" - -#~ msgid " Days" -#~ msgstr " أيام" - -#~ msgid " Minutes" -#~ msgstr " دقائق" - -#~ msgid " Attempts" -#~ msgstr " محاولات" - -#~ msgid "separate fields with " -#~ msgstr "فصل الحقول بـ " - -#~ msgid "Renew" -#~ msgstr "تجديد" - -#~ msgid "Welcome" -#~ msgstr "مرحبا" - -#~ msgid "8" -#~ msgstr "٨" - -#~ msgid "9" -#~ msgstr "٩" - -#~ msgid "10" -#~ msgstr "١٠" - -#~ msgid "11" -#~ msgstr "١١" - -#~ msgid "12" -#~ msgstr "١٢" - -#~ msgid "Successfully copyed" -#~ msgstr "نسخ بنجاح" - -#~ msgid "Search results for" -#~ msgstr "بحث النتائج عن" - -#~ msgid "Web check" -#~ msgstr "مراجعة الويب" - -#~ msgid "Users synchronization" -#~ msgstr "مزامنة المستخدمين" - -#~ msgid "Successfully moved" -#~ msgstr "نقلها بنجاح" - -#~ msgid "Tag management" -#~ msgstr "إدارة الوسوم" - -#~ msgid "Unnamed " -#~ msgstr "مجهول " - -#~ msgid "Undo changes" -#~ msgstr "التراجع عن التغييرات" - -#~ msgid "Various" -#~ msgstr "متعدد" - -#~ msgid "Web configuration" -#~ msgstr "إعدادات الويب" - -#~ msgid "Successfully updated module." -#~ msgstr "تحديث الملحق البرمجي بنجاح." - -#~ msgid "User synchronization" -#~ msgstr "مزامنة المستخدمين" - -#~ msgid "Tree View" -#~ msgstr "عرض شجرة" - -#~ msgid "Status: " -#~ msgstr "الحالة: " - -#~ msgid "Send to email" -#~ msgstr "إرسالها إلى البريد الإلكتروني" - -#~ msgid "Yearly" -#~ msgstr "سنوياً" - -#~ msgid "Task" -#~ msgstr "مهمة" - -#~ msgid "Separator" -#~ msgstr "الفاصل" - -#~ msgid "Templates list" -#~ msgstr "قائمة القوالب" - -#~ msgid "Template editor" -#~ msgstr "محرر القوالب" - -#~ msgid "% Limit" -#~ msgstr "حد %" - -#~ msgid "% OK" -#~ msgstr "تم %" - -#~ msgid "% Wrong" -#~ msgstr "% خطأ" - -#~ msgid "There are no data." -#~ msgstr "لا توجد بيانات." - -#~ msgid "Warn:" -#~ msgstr "تحذير:" - -#~ msgid "Value:" -#~ msgstr "قيمة:" - -#~ msgid "The colours meaning:" -#~ msgstr "معاني الألوان:" - -#~ msgid "There are no" -#~ msgstr "لا يوجد" - -#~ msgid "User defined graph" -#~ msgstr "بيان محدد من مستخدم" - -#~ msgid "There are no events in group." -#~ msgstr "لا يوجد أحداث في المجموعة." - -#~ msgid "There are no Events." -#~ msgstr "لا توجد أي أحداث." - -#~ msgid "Untitled" -#~ msgstr "دون اسم" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "لإستعادة النسخة الاحتياطية المحددة، يرجى اتباع الخطوات التالية" - -#~ msgid "Weight Critical" -#~ msgstr "الوزن هام" - -#~ msgid "Weight Warning" -#~ msgstr "تحذير عن الوزن" - -#~ msgid "Weight Unknown" -#~ msgstr "الوزن غير معروف" - -#~ msgid "Weight Ok" -#~ msgstr "الوزن مقبول" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "تم حظر المستخدم. حاول مرة أخرى " - -#~ msgid " minutes" -#~ msgstr " دقيقة" - -#~ msgid " previous changes." -#~ msgstr " التغييرات السابقة" - -#~ msgid "User pass successfully updated" -#~ msgstr "تحديث بنجاح لكلمة مرور المستخدم" - -#~ msgid " MODULES" -#~ msgstr " الوحدات" diff --git a/pandora_console/include/languages/ca.mo b/pandora_console/include/languages/ca.mo index ab4a3c46e108b9d3ec64fe235d6690294a3fc8c2..22fd3d1fb96fa46062948a732dd61b656ed65bf2 100644 GIT binary patch delta 61 zcmdnFf^X*vzJ?aYElj4`yr#MaX1Yd}3WgR|#-`Jqw3&`^ndurEC>WYp85m6$(qU3( RGPh{A)?wOit;75;9RLwe5HtV) delta 61 zcmdnFf^X*vzJ?aYElj4`yvDkQhPsAE3P#3O2A0#Ew3&`^nd%yuDHxbrnOaU4(qU3( RGBjzo)?wOit;75;9RLr45Gw!x diff --git a/pandora_console/include/languages/ca.po b/pandora_console/include/languages/ca.po index 6ff9d5375f..c651fb990d 100644 --- a/pandora_console/include/languages/ca.po +++ b/pandora_console/include/languages/ca.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2013-11-12 23:09+0000\n" +"PO-Revision-Date: 2015-06-29 18:35+0000\n" "Last-Translator: nil \n" "Language-Team: ca \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:56+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 @@ -20707,3985 +20707,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "L'arxiu no es troba en l'emmagatzematge en disc. Si us plau, poseu-vos en " "contacte amb l'administrador." - -#~ msgid "Module Interval" -#~ msgstr "Interval de Mòdul" - -#~ msgid "TCP port" -#~ msgstr "TCP port" - -#~ msgid "Minimum Data" -#~ msgstr "Mínim dades" - -#~ msgid "Maximum Data" -#~ msgstr "Màxim dades" - -#~ msgid "User successfully deleted" -#~ msgstr "Usuari esborrat amb èxit" - -#~ msgid "Standard user" -#~ msgstr "Usuari Estandard" - -#~ msgid "Database Maintenance" -#~ msgstr "Manteniment de la Base de Dades" - -#~ msgid "Total data" -#~ msgstr "Dades totals" - -#~ msgid "Event Database cleanup" -#~ msgstr "Purgar la base de dades d'events" - -#~ msgid "Database Audit purge" -#~ msgstr "Pugar base de dades de l'auditoria" - -#~ msgid "Data from agent " -#~ msgstr "Dades de l'agent " - -#~ msgid "Database Information" -#~ msgstr "Informació de la base de dades" - -#~ msgid "Modules per agent" -#~ msgstr "Mòduls per agent" - -#~ msgid "Packets per agent" -#~ msgstr "Paquets per agent" - -#~ msgid "Pandora Setup" -#~ msgstr "Configuració del Pandora" - -#~ msgid "General configuration" -#~ msgstr "Configuració general" - -#~ msgid "Link successfully created" -#~ msgstr "L'enllaç s'ha creat amb èxit" - -#~ msgid "Link successfully updated" -#~ msgstr "Enllaç actualitzat amb èxit" - -#~ msgid "Manage profiles" -#~ msgstr "Gestionar perfils" - -#~ msgid "DB Maintenance" -#~ msgstr "Manteniment de BBDD" - -#~ msgid "DB Information" -#~ msgstr "Informació de la base de dades" - -#~ msgid "Assigned modules" -#~ msgstr "Mòduls asignats" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alerta esborrada amb èxit" - -#~ msgid "Alert successfully created" -#~ msgstr "Alerta creada amb èxit" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent actualitzat amb èxit" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Hi ha hagut un problema actualitzant l'agent" - -#~ msgid "There was a problem updating module" -#~ msgstr "Hi ha hagut un problema actualitzant el mòdul" - -#~ msgid "There was a problem adding module" -#~ msgstr "Hi ha hagut un problema afegint el mòdul" - -#~ msgid "Alert type" -#~ msgstr "Tipus d'alerta" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Camp #1 (Alias, nom)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Camp #2 (Una línia)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Field #3 (Text complet)" - -#~ msgid "Data Copy" -#~ msgstr "Copiar dades" - -#~ msgid "No selected agents to copy" -#~ msgstr "No hi ha cap agent seleccionat per copiar" - -#~ msgid "Configuration Management" -#~ msgstr "Gestió de la configuració" - -#~ msgid "To Agent(s):" -#~ msgstr "A l'Agent(s):" - -#~ msgid "Update agent" -#~ msgstr "Actualitzar agent" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Aquest agent no té cap mòdul" - -#~ msgid "Group management" -#~ msgstr "Gestió de Grups" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Perfil esborrat amb èxit" - -#~ msgid "Profile successfully created" -#~ msgstr "Perfil creat amb èxit" - -#~ msgid "Profile successfully updated" -#~ msgstr "Perfil actualitzat amb èxit" - -#~ msgid "Manage Database" -#~ msgstr "Gestió de la base de dades" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alerta actualitzada amb èxit" - -#~ msgid "Master" -#~ msgstr "Principal" - -#~ msgid "Pandora users" -#~ msgstr "Ususaris del Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Estadístiques d'activitat del usuaris" - -#~ msgid "Validated event" -#~ msgstr "Event validad" - -#~ msgid "View users" -#~ msgstr "Veure Usuaris" - -#~ msgid "Pandora Agents" -#~ msgstr "Agents del Pandora" - -#~ msgid "Agent general information" -#~ msgstr "Informació general de l'agent" - -#~ msgid "Database export results" -#~ msgstr "Resultat de la exportació de la base de dades" - -#~ msgid " from " -#~ msgstr " desde " - -#~ msgid " to " -#~ msgstr " a " - -#~ msgid "No module has been selected" -#~ msgstr "No s'ha seleccionat cap mòdul" - -#~ msgid "Begin date (*)" -#~ msgstr "Començar data (*)" - -#~ msgid "End date (*)" -#~ msgstr "Finalitzar data (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Format CSV" - -#~ msgid "Full list of Monitors" -#~ msgstr "Llista completa de Monitors" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Canvi d'estat Verd/Vermell" - -#~ msgid "At least one monitor fails" -#~ msgstr "Al menys un monitor falla" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent sense monitors" - -#~ msgid "Agent down" -#~ msgstr "Agent inoperatiu" - -#~ msgid "There are no agents included in this group" -#~ msgstr "No hi ha agents inclosos en aquest grup" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Mostrar les últimes dades dels modules rebudes per l'agent" - -#~ msgid "int" -#~ msgstr "Itv." - -#~ msgid "Raw Data" -#~ msgstr "Dades sense tractar" - -#~ msgid "Times Fired" -#~ msgstr "Nombre de activacions" - -#~ msgid "Configuration detail" -#~ msgstr "Detalls de la configuració" - -#~ msgid "Authentication Error" -#~ msgstr "Error d'autenticació" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Aquest es el sistema de Gestió del Pandora. Des d'aquí pots " -#~ "gestionar els seus agents, alertes i incidents. La sessió es " -#~ "mantindrá activa mentre hi hagi activitat" - -#~ msgid "You don't have access" -#~ msgstr "No tens permís" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "No tens suficients permisos per accedir aquest recurs" - -#~ msgid "Global health" -#~ msgstr "Salut global" - -#~ msgid "Autorefresh" -#~ msgstr "Autorefresc" - -#~ msgid "Map builder" -#~ msgstr "Creador de mapes" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Arrastra un element aquí per esborrar-lo des del mapa" - -#~ msgid "Two Months" -#~ msgstr "Dos Mesos" - -#~ msgid "Six Months" -#~ msgstr "Sis Mesos" - -#~ msgid "preview" -#~ msgstr "vista prèvia" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Arrastra un element aquí per editar-ne les propietats" - -#~ msgid "Label color" -#~ msgstr "Color etiqueta" - -#~ msgid "Graph builder module list" -#~ msgstr "Llista de mòduls de creació de gràfics" - -#~ msgid "Factor" -#~ msgstr "Factor" - -#~ msgid "day" -#~ msgstr "dia" - -#~ msgid "Up" -#~ msgstr "Amunt" - -#~ msgid "Link successfully deleted" -#~ msgstr "Enllaç esborrat correctament" - -#~ msgid "Module deleted successfully" -#~ msgstr "Mòdul esborrat satisfactoriament" - -#~ msgid "WMI Query" -#~ msgstr "Consulta WMI" - -#~ msgid "Update layout successful" -#~ msgstr "actualització de la disposició amb èxit" - -#~ msgid "Update layout failed" -#~ msgstr "actualització de la disposició sense èxit" - -#~ msgid "Custom reporting builder" -#~ msgstr "constructor d'informes a mida" - -#~ msgid "Module assignment" -#~ msgstr "assignació de mòdul" - -#~ msgid "Net. Templates" -#~ msgstr "patrons de xarxa" - -#~ msgid "Planned Downtime Form" -#~ msgstr "formulari de planificació de temps fora de servei" - -#~ msgid "Delete agents" -#~ msgstr "esborrar agents" - -#~ msgid "Available templates" -#~ msgstr "plantilles disponibles" - -#~ msgid "Plugin parameters" -#~ msgstr "paràmetres de l'endollable" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Crear un nou mòdul Servidor WMI" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Crear un nou mòdul Servidor d'endollables" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Crear un nou mòdul Servidor de prediccions" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Comprovant la taula tagente_estado" - -#~ msgid "Checking database consistency" -#~ msgstr "Comprovant la consistència de la base de dades" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Esborra els mòduls no inicialitzats" - -#~ msgid "Sanitize my database now" -#~ msgstr "Saneja la meva base de dades ara" - -#~ msgid "Agents in group" -#~ msgstr "Agents en grup" - -#~ msgid "General group report" -#~ msgstr "Informe general de grup" - -#~ msgid "Only pending" -#~ msgstr "Només pendent" - -#~ msgid "Desc" -#~ msgstr "descripció" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitor d'Agent software" - -#~ msgid "Events generated -by module-" -#~ msgstr "Events generats -per mòdul-" - -#~ msgid "Agents down" -#~ msgstr "Agents caiguts" - -#~ msgid "Free text" -#~ msgstr "Text lliure" - -#~ msgid "Thurdsday" -#~ msgstr "Dijous" - -#~ msgid "SLA view" -#~ msgstr "Vista de Nivell de Servei (SLA)" - -#~ msgid "Download file" -#~ msgstr "Descarrega el fitxer" - -#~ msgid "Hr" -#~ msgstr "Hora" - -#~ msgid "from" -#~ msgstr "des de" - -#~ msgid "User-defined SLA items" -#~ msgstr "Nivell de Servei (SLA) definit per l'usuari" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Nivell de Servei (SLA) automàtic per monitors" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "L'eina Sanity s'utilitza per esborrar estructures de base de dades dolentes, " -#~ "mòduls creats sense status o mòduls que no poden ser inicialitzats (i que no " -#~ "donen cap dada vàlida) però reintenten l'obtenció de dades cadascun al seu " -#~ "interval. Aquest tipus de mòduls dolents poden degradar el rendiment de " -#~ "Pandora. Aquesta eina també està a pandora_db.pl, i haurieu " -#~ "d'executar aquest script cada dia o setmana. Aquesta consola NO compacta la " -#~ "teva base de dades, només esborra dades malament estructurades." - -#~ msgid "Older" -#~ msgstr "Més vell" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Ajuda de Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Consola web de Pandora FMS" - -#~ msgid "Logged Out" -#~ msgstr "Fi de sessió" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Hi ha hagut un problema carregant l'alerta" - -#~ msgid "SNMP server" -#~ msgstr "Servidor SNMP" - -#~ msgid "Your IP" -#~ msgstr "La teva IP" - -#~ msgid "No news articles at this moment" -#~ msgstr "No hi ha articles nous en aquest moment" - -#~ msgid "Monitors critical" -#~ msgstr "Angents crítics" - -#~ msgid "Monitors warning" -#~ msgstr "Agent Alerta" - -#~ msgid "Alerts defined" -#~ msgstr "Alerta definida" - -#~ msgid "Users defined" -#~ msgstr "usuaris definits" - -#~ msgid "Monitors unknown" -#~ msgstr "Agent desconegut" - -#~ msgid "hour" -#~ msgstr "hora" - -#~ msgid "minute" -#~ msgstr "minut" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Local modules rate" -#~ msgstr "Percentatge dels mòduls locals" - -#~ msgid "Monitors not init" -#~ msgstr "Agents no iniciats" - -#~ msgid "Uninitialized modules" -#~ msgstr "Mòduls no iniciats" - -#~ msgid "ALERTS FIRED" -#~ msgstr "Alertas llançades" - -#~ msgid "The colours meaning:" -#~ msgstr "La legenda de colors indica:" - -#~ msgid "Update manager settings updated" -#~ msgstr "gestor de configuració d'actualització" - -#~ msgid "Settings" -#~ msgstr "Configuració" - -#~ msgid "Update server host" -#~ msgstr "Actualitzar equip servidor" - -#~ msgid "Update server port" -#~ msgstr "Port d'actualizació del servidor" - -#~ msgid "Update server path" -#~ msgstr "Actualitzar ruta de servidor" - -#~ msgid "Development" -#~ msgstr "Desenvolupament" - -#~ msgid "Testing" -#~ msgstr "Provant" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Config" -#~ msgstr "Configuració" - -#~ msgid "Manage modules" -#~ msgstr "Administrar mòduls" - -#~ msgid "Manage plugins" -#~ msgstr "Administrar plugins" - -#~ msgid "Load" -#~ msgstr "Carregant ..." - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "" -#~ "Els mòduls que s'executen en aquest servidor / modules totals d'aquest tipus" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Quan es canvia la posició d'agent, l'agent s'activa automàticament l'opció " -#~ "'Ignora noves dades GIS ': Són" - -#~ msgid "Module macros" -#~ msgstr "Macros mòdul" - -#~ msgid "Database sanity tool" -#~ msgstr "Eina de base de dades del seny" - -#~ msgid "Deleting non-init data" -#~ msgstr "Eliminació de dades no-init" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Feu clic aquí per obtenir informació de la base de dades com a text" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "" -#~ "Feu clic aquí per obtenir informació de la base de dades en un gràfic" - -#~ msgid "Decrease Weight" -#~ msgstr "Pèrdua de pes" - -#~ msgid "Increase Weight" -#~ msgstr "Augment de pes" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Aquest usuari no té permisos per administrar tots. Això és usuari admin i " -#~ "sobreescriu tots els permisos atorgats en els perfils / grups" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Cerca per aquests camps de descripció, OID, Valor, Agent SNMP (IP), el valor " -#~ "individual, cada OID Encàrrec / Dates." - -#~ msgid "SLA period (seconds)" -#~ msgstr "Període de SLA (segons)" - -#~ msgid "Policies operations" -#~ msgstr "Operacions polítiques" - -#~ msgid "SNMP operations" -#~ msgstr "Operacions de SNMP" - -#~ msgid "Collections" -#~ msgstr "Col · leccions" - -#~ msgid "Duplicate config" -#~ msgstr "Duplicar config" - -#~ msgid "Inventory modules" -#~ msgstr "Mòduls d'inventari" - -#~ msgid "Local components" -#~ msgstr "Els components locals" - -#~ msgid "Manage policies" -#~ msgstr "Administrar polítiques" - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "Export targets" -#~ msgstr "Metes d'exportació" - -#~ msgid "Event alerts" -#~ msgstr "Alertes d'esdeveniments" - -#~ msgid "Log Collector" -#~ msgstr "Collector sessió" - -#~ msgid "Error updating export target" -#~ msgstr "Error en actualitzar la meta d'exportació" - -#~ msgid "Successfully updated export target" -#~ msgstr "Objectiu d'exportació s'ha actualitzat correctament" - -#~ msgid "Error deleting export target" -#~ msgstr "Error en eliminar l'objectiu d'exportació" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Objectiu d'exportació eliminat correctament" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "No es pot crear objectiu d'exportació: L'usuari i la contrasenya ha de ser " -#~ "omplert amb la manera de FTP" - -#~ msgid "Preffix" -#~ msgstr "Preffix" - -#~ msgid "Transfer mode" -#~ msgstr "Mode de Transferència" - -#~ msgid "Target directory" -#~ msgstr "Directori de destinació" - -#~ msgid "Extra options" -#~ msgstr "Opcions extra" - -#~ msgid "Create Service" -#~ msgstr "Creu servei" - -#~ msgid "Service created successfully" -#~ msgstr "Servei creat amb èxit" - -#~ msgid "Error creating service" -#~ msgstr "Error en crear el servei" - -#~ msgid "Service updated successfully" -#~ msgstr "Servei actualitzat correctament." - -#~ msgid "Error updating service" -#~ msgstr "Error en actualitzar el servei" - -#~ msgid "Not found" -#~ msgstr "No s'ha trobat" - -#~ msgid "New Service" -#~ msgstr "Nou Servei" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Aquests valors estan per defecte perquè el servei és la manera de calcular " -#~ "automàtica." - -#~ msgid "Config Service" -#~ msgstr "Servei de configuració" - -#~ msgid "Config Elements" -#~ msgstr "Elements de configuració" - -#~ msgid "View Service" -#~ msgstr "Veure Servei" - -#~ msgid "Service map" -#~ msgstr "Mapa de Servei" - -#~ msgid "Agent to store data" -#~ msgstr "Agent per emmagatzemar dades" - -#~ msgid "S.L.A. interval" -#~ msgstr "Interval de SLA" - -#~ msgid "S.L.A. limit" -#~ msgstr "Límit de SLA" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Si us plau, estableix límit entre 0 i 100." - -#~ msgid "Warning Service alert" -#~ msgstr "Servei d'alerta d'advertència" - -#~ msgid "Critical Service alert" -#~ msgstr "Alerta de servei crític" - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA alerta de servei crític" - -#~ msgid "Edit service elements" -#~ msgstr "Edita elements de servei" - -#~ msgid "Error empty module" -#~ msgstr "Error mòdul buit" - -#~ msgid "Error empty agent" -#~ msgstr "Error agent buida" - -#~ msgid "Error empty service" -#~ msgstr "Servei buida Error" - -#~ msgid "Service element created successfully" -#~ msgstr "Element de servei creat amb èxit" - -#~ msgid "Error creating service element" -#~ msgstr "Error en crear l'element de servei" - -#~ msgid "Service element updated successfully" -#~ msgstr "Element de servei actualitzat correctament" - -#~ msgid "Error updating service element" -#~ msgstr "Error en actualitzar l'element de servei" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Servei element eliminat correctament" - -#~ msgid "Error deleting service element" -#~ msgstr "Error en eliminar l'element de servei" - -#~ msgid "Edit element service" -#~ msgstr "Edita l'element de servei" - -#~ msgid "Create element service" -#~ msgstr "Crear element de servei" - -#~ msgid "First select an agent" -#~ msgstr "Primer, seleccioneu un agent" - -#~ msgid "Critical weight" -#~ msgstr "Pes crític" - -#~ msgid "Warning weight" -#~ msgstr "Advertència pes" - -#~ msgid "Unknown weight" -#~ msgstr "Desconegut pes" - -#~ msgid "Ok weight" -#~ msgstr "Pes Ok" - -#~ msgid "Show extended info" -#~ msgstr "Mostra informació ampliada" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Podeu eliminar les dades estesos o les dades d'auditoria és anterior a la " -#~ "taula tsession_extended." - -#~ msgid "Security check is ok." -#~ msgstr "Control de seguretat està bé." - -#~ msgid "Security check is fail." -#~ msgstr "Control de seguretat és un error." - -#~ msgid "Extended info:" -#~ msgstr "Informació ampliada:" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "" -#~ "Els canvis en aquest camp estan vinculats amb les dades de configuració." - -#~ msgid "Using local component" -#~ msgstr "Usant component local" - -#~ msgid "Show configuration data" -#~ msgstr "Mostra dades de configuració" - -#~ msgid "Hide configuration data" -#~ msgstr "Amaga dades de configuració" - -#~ msgid "Data configuration" -#~ msgstr "Configuració de dades" - -#~ msgid "Load basic" -#~ msgstr "Càrrega bàsica" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Carregueu una estructura bàsica de la configuració de dades" - -#~ msgid "Check" -#~ msgstr "Comprovar" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Revisi l'estructura correcta de la configuració de dades" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "Primera línia ha de ser \"module_begin \"" - -#~ msgid "Data configuration is empty" -#~ msgstr "Configuració de dades està buida" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Darrera línia ha de ser \"module_end \"" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Nom és oblidada. Si us plau, afegiu una línia amb \"module_name " -#~ "yourmodulename \" a la configuració de les dades" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Tipus és oblidada. Si us plau, afegiu una línia amb \"module_type " -#~ "yourmoduletype \" a la configuració de les dades" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Tipus no és correcte. Si us plau, estableix un tipus correcte" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Hi ha una línia amb un símbol desconegut 'token_fail '." - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Error en la sintaxi, comproveu la configuració de dades per favor." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "Configuració de dades s'ha construït correctament" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plug-in eliminat amb èxit" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Plug-in no es pot eliminar" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plug-in afegit amb èxit" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Plug-in no es pot afegir" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plug-in deshabilitat amb èxit" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Plug-in no es pot desactivar" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plug-in activat amb èxit" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Plug-in no pot ser habilitat" - -#~ msgid "New plug-in" -#~ msgstr "Nou plug-in" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Mòdul d'inventari agregat amb èxit" - -#~ msgid "Error adding inventory module" -#~ msgstr "Error en afegir mòdul d'inventari" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Mòdul d'inventari eliminat correctament" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Error mòdul d'inventari eliminar" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Mòdul d'inventari èxit forçada" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Error mòdul d'inventari forçant" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Mòdul d'inventari s'ha actualitzat correctament" - -#~ msgid "Error updating inventory module" -#~ msgstr "Pogut actualitzar el mòdul d'inventari" - -#~ msgid "Inventory module error" -#~ msgstr "Error mòdul d'Inventari" - -#~ msgid "Target" -#~ msgstr "Objectiu" - -#~ msgid "7 days" -#~ msgstr "7 dies" - -#~ msgid "Update all" -#~ msgstr "Actualitzar tot" - -#~ msgid "Manager configuration > New" -#~ msgstr "Administrador de configuració> New" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Administrador de configuració> Edita " - -#~ msgid "Unable to create the collection" -#~ msgstr "No es pot crear la col · lecció" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Una altra col · lecció amb el mateix nom curt" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Caràcters no vàlids en el nom curt" - -#~ msgid "Empty name" -#~ msgstr "Nom Buit" - -#~ msgid "Unable to create the collection." -#~ msgstr "No es pot crear la col · lecció." - -#~ msgid "Correct create collection" -#~ msgstr "Corregiu Crear una col · lecció" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "No és possible editar la col · lecció, nom buit." - -#~ msgid "Unable to edit the collection." -#~ msgstr "No és possible editar la col · lecció." - -#~ msgid "Recreate file" -#~ msgstr "Torneu a crear el fitxer" - -#~ msgid "Short name:" -#~ msgstr "Nom curt:" - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "Nom curt de la col · lecció és el nom del directori en la inclinació dir i " -#~ "la col · lecció de paquets." - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "Nom curt ha de contenir només caràcters alfanumèrics, - o _." - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Buit per defecte nom curt fc_X on X és la identificació de col · lecció." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Aritmètica sintètic" - -#~ msgid "Synthetic average" -#~ msgstr "Medi sintètic" - -#~ msgid "Group filter" -#~ msgstr "Filtre de grup" - -#~ msgid "Fixed value" -#~ msgstr "Valor fix" - -#~ msgid "Add module to operation as add" -#~ msgstr "Afegiu mòdul per al funcionament com a complement" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Afegeix mòdul per a operacions com la deducció" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Afegeix mòdul per a operacions com multiplicades " - -#~ msgid "Add module to operations as divide" -#~ msgstr "Afegeix mòdul per a operacions com a divisió" - -#~ msgid "Remove selected modules" -#~ msgstr "Traieu els mòduls seleccionats" - -#~ msgid "Add module to average operation" -#~ msgstr "Afegeix mòdul a la mitjana d'operació" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Eliminar mòduls seleccionats de la pila operacions" - -#~ msgid "Move down selected modules" -#~ msgstr "Baixar mòduls seleccionats" - -#~ msgid "Move up selected modules" -#~ msgstr "Pujar mòduls seleccionats" - -#~ msgid "Select Service" -#~ msgstr "Seleccioneu Servei" - -#~ msgid "Netflow filter" -#~ msgstr "Filtre de Netflow" - -#~ msgid "Select filter" -#~ msgstr "Seleccionar filtre" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Error: el fitxer conf de l'agent no és readble." - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Error: el fitxer conf l'agent no es pot escriure." - -#~ msgid "Add module" -#~ msgstr "Afegeix mòdul" - -#~ msgid "No module was found" -#~ msgstr "No s'ha trobat mòdul" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Eliminar arxius de l'agent conf remotes de Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "Aquest agent no té una configuració remota, ha de configurar." - -#~ msgid "Succesful add the collection" -#~ msgstr "Exitosa afegir la col · lecció" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Unsuccesful afegir la col · lecció" - -#~ msgid "Short Name" -#~ msgstr "Nom curt" - -#~ msgid "Show files" -#~ msgstr "Mostrar tots els arxius" - -#~ msgid "Outdate" -#~ msgstr "Outdate" - -#~ msgid "Dir" -#~ msgstr "Dir" - -#~ msgid "Create a new web Server module" -#~ msgstr "Crear un nou mòdul de servidor web" - -#~ msgid "Files in " -#~ msgstr "Els arxius en " - -#~ msgid "Back to file explorer" -#~ msgstr "Back to File Explorer" - -#~ msgid "Compatibility mode" -#~ msgstr "La manera de compatibilitat" - -#~ msgid "Correct update file." -#~ msgstr "Corregiu el fitxer d'actualització." - -#~ msgid "Incorrect update file." -#~ msgstr "Arxiu d'actualització incorrecta." - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "Si us plau, deseu primer d'una nova col · lecció abans de pujar arxius." - -#~ msgid "No source agent selected" -#~ msgstr "Cap agent d'origen seleccionat" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Fer còpia de fitxer de configuració per" - -#~ msgid "Error copying md5 file " -#~ msgstr "Error en copiar arxiu md5 " - -#~ msgid " md5 file" -#~ msgstr " md5" - -#~ msgid "Copied " -#~ msgstr "Copiat " - -#~ msgid "Error copying " -#~ msgstr "Error en copiar " - -#~ msgid " config file" -#~ msgstr " fitxer de configuració" - -#~ msgid "Remote configuration management" -#~ msgstr "Gestió de configuració remota" - -#~ msgid "Source group" -#~ msgstr "Grup Font" - -#~ msgid "To agent(s):" -#~ msgstr "Per agent (s):" - -#~ msgid "Replicate configuration" -#~ msgstr "Replicar configuració" - -#~ msgid "Web server module" -#~ msgstr "Mòdul de servidor web" - -#~ msgid "Web checks" -#~ msgstr "Controls Web" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Carregueu una estructura bàsica de xecs Web" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Revisi l'estructura correcta de la WebCheck" - -#~ msgid "Requests" -#~ msgstr "Peticions" - -#~ msgid "Agent browser id" -#~ msgstr "Navegador Agent Identificació" - -#~ msgid "Proxy URL" -#~ msgstr "URL Proxy" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP d'autenticació (login)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP d'autenticació (passi)" - -#~ msgid "HTTP auth (server)" -#~ msgstr "Autenticació HTTP (servidor)" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP auth (regne)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "Primera línia ha de ser \"task_begin \"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "Configuració Webchecks està buida" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Darrera línia ha de ser \"task_end \"" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Controls web es construeixen correctament" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Falla crear el directori: %s" - -#~ msgid "No files in collection" -#~ msgstr "No hi ha arxius en la recaptació" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Arxiu de recollida és més gran que el límit (" - -#~ msgid "Success: recreate file" -#~ msgstr "Arxiu recreate: Èxit" - -#~ msgid "Error: recreate file " -#~ msgstr "Arxiu recreate: Error " - -#~ msgid "Collections Management" -#~ msgstr "Gestió de cobraments" - -#~ msgid "Manager collection" -#~ msgstr "Col · lecció Administrador" - -#~ msgid "Successful create collection package." -#~ msgstr "Correctament paquet de col · lecció." - -#~ msgid "Can not create collection package." -#~ msgstr "No es pot crear el paquet de col · lecció." - -#~ msgid "Are you sure to delete?" -#~ msgstr "Esteu segur que voleu suprimir?" - -#~ msgid "Delete collection" -#~ msgstr "Eliminar col · lecció" - -#~ msgid "Re-Apply changes" -#~ msgstr "Torneu a aplicar canvis" - -#~ msgid "Apply changes" -#~ msgstr "Aplicar canvis" - -#~ msgid "Edit template" -#~ msgstr "Edita plantilla" - -#~ msgid "Create template" -#~ msgstr "Crear plantilla" - -#~ msgid "List templates" -#~ msgstr "Plantilles de llistes" - -#~ msgid "Graph template editor" -#~ msgstr "Editor de plantilles gràfiques" - -#~ msgid "Exact match" -#~ msgstr "Coincidència exacta" - -#~ msgid "Elements to apply" -#~ msgstr "Elements per aplicar" - -#~ msgid "SLA min value" -#~ msgstr "Valor mínim SLA" - -#~ msgid "SLA min Value" -#~ msgstr "SLA min Valor" - -#~ msgid "SLA max value" -#~ msgstr "SLA valor màxim" - -#~ msgid "SLA max Value" -#~ msgstr "SLA max Valor" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA Limit%" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA valor límit" - -#~ msgid "Sum" -#~ msgstr "suma" - -#~ msgid ">=" -#~ msgstr "> =" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid "Graph template management" -#~ msgstr "Gestió de plantilles gràfiques" - -#~ msgid "There are no defined graph templates" -#~ msgstr "No hi ha plantilles definides gràfic" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Neteja amb èxit" - -#~ msgid "Cleanup error" -#~ msgstr "Error Cleanup" - -#~ msgid "Wizard template" -#~ msgstr "Plantilla de Assistent" - -#~ msgid "Clean up template" -#~ msgstr "Netegeu plantilla" - -#~ msgid "Filter agent" -#~ msgstr "Agent de filtre" - -#~ msgid "Agents available" -#~ msgstr "Agents disponibles" - -#~ msgid "Select all" -#~ msgstr "Selecciona totes" - -#~ msgid "Agents to apply" -#~ msgstr "Agents que s'apliquen" - -#~ msgid "Add agents to template" -#~ msgstr "Afegir als agents a la plantilla" - -#~ msgid "Undo agents to template" -#~ msgstr "Desfer agents a la plantilla" - -#~ msgid "Apply template" -#~ msgstr "Aplica plantilla" - -#~ msgid "Please set template distinct than " -#~ msgstr "Si us plau, ajust de plantilla diferent de " - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Això serà eliminar tots els informes creats en les aplicacions de la " -#~ "plantilla anterior. Voleu continuar?" - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Custom Mysql plantilla constructor" - -#~ msgid "Create custom SQL" -#~ msgstr "Crear SQL personalitzat" - -#~ msgid ": Create new custom" -#~ msgstr ": Crea costum" - -#~ msgid ": Edit: " -#~ msgstr ": Edició: " - -#~ msgid "Successfully operation" -#~ msgstr "Amb èxit l'operació" - -#~ msgid "Could not be operation" -#~ msgstr "No podia ser d'operació" - -#~ msgid "Sucessfully applied" -#~ msgstr "Aplicada Sucessfully" - -#~ msgid "reports" -#~ msgstr "informes" - -#~ msgid "items" -#~ msgstr "articles" - -#~ msgid "Could not be applied" -#~ msgstr "No es pot aplicar" - -#~ msgid "Create report per agent" -#~ msgstr "Crea un informe per agent" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Cas insensible expressió regular per al nom de l'agent. Per exemple:. Xarxa " -#~ "* coincidirà amb els següents noms d'agents: network_agent1, XECS DE XARXA" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Cas expressió regular insensible o cadena per al nom del mòdul. Per exemple: " -#~ "si s'utilitza aquest camp amb \"coincidència exacta del mòdul \" activat, " -#~ "aquest camp ha de complir amb la cadena literal del nom del mòdul, si no es " -#~ "pot utilitzar una expressió regular. Exemple: .. * Ús * coincidirà: " -#~ "cpu_usage, l'ús de VRAM a matchine 1." - -#~ msgid "Module exact match" -#~ msgstr "Coincidència exacta del mòdul" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "Mira-t'ho si vol coincidir amb el nom del mòdul, literalment," - -#~ msgid "Query SQL" -#~ msgstr "Consultes SQL" - -#~ msgid "SQL preview" -#~ msgstr "SQL vista prèvia" - -#~ msgid "Modules to match" -#~ msgstr "Mòduls perquè coincideixi" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Seleccioneu els mòduls que corresponen al crear un informe per agents" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Mòduls a joc (text lliure)" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Text lliure per filtrar els mòduls dels agents quan aplicar aquesta " -#~ "plantilla." - -#~ msgid "Create a graph for each agent" -#~ msgstr "Crear un gràfic per a cada agent" - -#~ msgid "" -#~ "If it is checked, the regexp or name of modules match only each to each to " -#~ "agent, instead create a big graph with all modules from all agents." -#~ msgstr "" -#~ "Si es comprova, l'expressió regular o el nom de mòduls coincideixen només un " -#~ "de cada agent, en lloc de crear un gran gràfic amb tots els mòduls de tots " -#~ "els agents." - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Deseu la plantilla de SLA per començar a afegir elements en aquesta llista." - -#~ msgid "Not literally" -#~ msgstr "No literalment" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Cas insensible expressió regular per al nom de l'agent. Per exemple: Xarxa * " -#~ "coincidirà amb els següents noms d'agents: network_agent1, xecs de xarxa" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "Deseu la plantilla per començar a afegir elements a la llista." - -#~ msgid "Template updated successfully" -#~ msgstr "Plantilla actualitzat correctament" - -#~ msgid "Error updating template" -#~ msgstr "Error en actualitzar la plantilla" - -#~ msgid "3 hours" -#~ msgstr "3 hores" - -#~ msgid "4 days" -#~ msgstr "4 dies" - -#~ msgid "Policies Management" -#~ msgstr "Gestió de Polítiques" - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Tots els agents de política afegeixen a eliminar col" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "Agents polítics no es poden afegir a la cua delete" - -#~ msgid "a" -#~ msgstr "(a)" - -#~ msgid "Policy updated" -#~ msgstr "Política d'actualització" - -#~ msgid "Pending update policy only database" -#~ msgstr "Tot esperant actualització única base de dades de polítiques" - -#~ msgid "Pending update policy" -#~ msgstr "Tot esperant la política d'actualització" - -#~ msgid "Linking" -#~ msgstr "Enllaç" - -#~ msgid "External alerts" -#~ msgstr "Alertes externs" - -#~ msgid "Queue" -#~ msgstr "Cola" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "Una política amb els agents no es pot eliminar. Purgar primer" - -#~ msgid "Deleting all policy agents" -#~ msgstr "Eliminació de tots els agents polítics" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Tots els agents polítics s'eliminaran" - -#~ msgid "Delete all agents" -#~ msgstr "Eliminar tots els agents" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Si canvia aquesta descripció, ha de canviar en el text de la configuració de " -#~ "dades." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "No s'ha pogut afegir mòdul (s). Heu de seleccionar una política" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Mòdul agregat amb èxit (s) ( %s / %s ) a la política de %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "Mòdul no va poder ser afegida (s) ( %s / %s ) a la política de %s" - -#~ msgid "Successfully added module." -#~ msgstr "Èxit afegit mòdul." - -#~ msgid "Could not be added module." -#~ msgstr "No es pot afegir mòduls." - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "El tipus de mòdul en la configuració de dades està buida, prendre de quadre " -#~ "combinat de la forma." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "El nom del mòdul en la configuració de dades està buida, prendre de camp de " -#~ "text de la forma." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Agregat amb èxit per eliminar mòduls pendents. S'eliminaran en la següent " -#~ "aplicació de polítiques." - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Eliminació amb èxit revertit" - -#~ msgid "Could not be reverted" -#~ msgstr "No s'ha pogut revertir" - -#~ msgid "Local component" -#~ msgstr "Component local" - -#~ msgid "Undo deletion" -#~ msgstr "Desfer esborrat" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Copieu els mòduls seleccionats a la política: " - -#~ msgid "Variable" -#~ msgstr "Variable" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Esteu segur que copiar els mòduls en la política? \\N" - -#~ msgid "Please select any module to copy" -#~ msgstr "Si us plau, seleccioneu qualsevol mòdul per copiar" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Agregat amb èxit per eliminar agents pendents. S'eliminaran en la següent " -#~ "aplicació de polítiques." - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Afegit amb èxit per eliminar cua" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "No es pot afegir a eliminar cues" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Èxit esborrat d'eliminar agents pendents" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "No podria ser esborrat d'eliminar agents pendents" - -#~ msgid "Agents in Policy" -#~ msgstr "Els agents en la política" - -#~ msgid "Add agents to policy" -#~ msgstr "Afegir als agents a la política" - -#~ msgid "Delete agents from policy" -#~ msgstr "Els agents de la política Eliminar" - -#~ msgid "Applied" -#~ msgstr "Aplicat" - -#~ msgid "Not applied" -#~ msgstr "No s'aplica" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Mòduls no enllaçats" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "Darrera sol · licitud" - -#~ msgid "Add to delete queue" -#~ msgstr "Afegir a eliminar cues" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Aquest agent no es pot configurar de manera remota" - -#~ msgid "Add to apply queue" -#~ msgstr "Afegir a aplicar cua" - -#~ msgid "Policy applied" -#~ msgstr "Política aplicada" - -#~ msgid "Need apply" -#~ msgstr "Cal aplicar" - -#~ msgid "Applying policy" -#~ msgstr "L'aplicació de la política" - -#~ msgid "Deleting from policy" -#~ msgstr "Eliminació de la política" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Afegit amb èxit per eliminar la col · lecció. S'eliminaran en la següent " -#~ "aplicació de polítiques." - -#~ msgid "Created successfuly" -#~ msgstr "Creat amb èxit" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Agregat amb èxit per eliminar alertes pendents. S'eliminaran en la següent " -#~ "aplicació de polítiques." - -#~ msgid "Added action successfuly" -#~ msgstr "Va afegir acció reeixidament" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Eliminats reeixidament acció" - -#~ msgid "E/D" -#~ msgstr "E / D" - -#~ msgid "Policy module" -#~ msgstr "Mòdul de Política" - -#~ msgid "Module is not selected" -#~ msgstr "El mòdul no està seleccionada" - -#~ msgid "Select inventory module" -#~ msgstr "Selecciona mòdul d'inventari" - -#~ msgid "Linking modules" -#~ msgstr "Vinculació de mòduls" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Error: l'actualització de vinculació de mòduls a la política" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Èxit: Actualització de mòduls de vinculació a la política" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Text lliure per al filtre (*)" - -#~ msgid "Free text for filter" -#~ msgstr "Text lliure per al filtre" - -#~ msgid "List of modules unlinked" -#~ msgstr "Llista dels mòduls no enllaçats" - -#~ msgid "Add policy" -#~ msgstr "Afegir polítiques" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Operació eliminat correctament de la cua" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "L'operació no es pot eliminar de la cua" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Operacions eliminat correctament de la cua" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Les operacions no es poden eliminar de la cua" - -#~ msgid "Update pending" -#~ msgstr "Actualitzar pendents" - -#~ msgid "Update pending agents" -#~ msgstr "Actualització d'agents pendents" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Afegir a aplicar cua només per a base de dades" - -#~ msgid "Link pending modules" -#~ msgstr "Enllaç mòduls pendents" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Es vincularà a la propera aplicació de polítiques" - -#~ msgid "Unlink pending modules" -#~ msgstr "Desvincular mòduls pendents" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Es poden desvincular de la propera aplicació de polítiques" - -#~ msgid "Delete pending" -#~ msgstr "Eliminar pendents" - -#~ msgid "Delete pending agents" -#~ msgstr "Eliminar agents pendents" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "S'eliminaran en la següent aplicació de polítiques" - -#~ msgid "Delete pending modules" -#~ msgstr "Eliminar mòduls pendents" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Eliminar mòduls d'inventari pendents" - -#~ msgid "Delete pending alerts" -#~ msgstr "Eliminar alertes pendents" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Eliminar pendents alertes externs" - -#~ msgid "Delete pending file collections" -#~ msgstr "Eliminar pendents col · leccions d'arxius" - -#~ msgid "Delete pending plugins" -#~ msgstr "Eliminar plugins pendents" - -#~ msgid "Advices" -#~ msgstr "Consells" - -#~ msgid "Queue summary" -#~ msgstr "Resum de cua" - -#~ msgid "This operation could take a long time" -#~ msgstr "Aquesta operació pot trigar molt de temps" - -#~ msgid "Apply (database and files)" -#~ msgstr "Aplicar (base de dades i arxius)" - -#~ msgid "Apply (only database)" -#~ msgstr "Aplicar (única base de dades)" - -#~ msgid "Complete" -#~ msgstr "Sencer" - -#~ msgid "Incomplete" -#~ msgstr "Incomplet" - -#~ msgid "Queue filter" -#~ msgstr "Filtre de cua" - -#~ msgid "Finished" -#~ msgstr "Acabat" - -#~ msgid "Delete from queue" -#~ msgstr "Elimina de la cua" - -#~ msgid "Empty queue" -#~ msgstr "Cua buida" - -#~ msgid "Delete all" -#~ msgstr "Eliminar tots" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Operació afegit correctament a la cua" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "L'operació no es pot afegir a la cua" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Operació de duplicat o incompatible a la cua" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Agregat amb èxit per eliminar plugins pendents. S'eliminaran en la següent " -#~ "aplicació de polítiques." - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "No acumulable a eliminar plugins pendents." - -#~ msgid "Duplicated alert" -#~ msgstr "Alerta duplicat" - -#~ msgid "Modules in policy agents" -#~ msgstr "Els mòduls en els agents polítics" - -#~ msgid "Alert Template" -#~ msgstr "Alerta Plantilla" - -#~ msgid "List event alerts" -#~ msgstr "Llista d'alertes d'esdeveniments" - -#~ msgid "Builder event alert" -#~ msgstr "Generador d'avís" - -#~ msgid "Error processing action" -#~ msgstr "Acció de processament Error" - -#~ msgid "Error validating alert(s)" -#~ msgstr "Error alerta de validació (s)" - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Move up" -#~ msgstr "Puja" - -#~ msgid "Move down" -#~ msgstr "Baixa" - -#~ msgid "View associated rules" -#~ msgstr "Veure regles associades" - -#~ msgid "List event rules" -#~ msgstr "Llista de regles d'esdeveniments" - -#~ msgid "Configure event rule" -#~ msgstr "Configureu la regla d'esdeveniments" - -#~ msgid "User comment" -#~ msgstr "Comentari de l'usuari" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Aquest camp serà processada amb regexp" - -#~ msgid "Window" -#~ msgstr "Finestra" - -#~ msgid "Configure event alert" -#~ msgstr "Configura els avisos d'esdeveniments" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "No s'ha pogut crear, si us plau ompli nom de l'alerta" - -#~ msgid "Field 1" -#~ msgstr "Camp 1" - -#~ msgid "Field 2" -#~ msgstr "Camp 2" - -#~ msgid "Field 3" -#~ msgstr "Camp 3" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Mode d'avaluació Regla" - -#~ msgid "Please Read" -#~ msgstr "Si us plau llegiu" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Atès que l'alerta pot tenir múltiples accions. Vostè pot editar de la llista " -#~ "d'alerta d'esdeveniments." - -#~ msgid "Group by" -#~ msgstr "Grup d'" - -#~ msgid "Event rules" -#~ msgstr "Les regles d'esdeveniment" - -#~ msgid "Error creating rule" -#~ msgstr "Error en crear la regla" - -#~ msgid "Successfully created rule" -#~ msgstr "Regla creada amb èxit" - -#~ msgid "Error updating rule" -#~ msgstr "Error en actualitzar la norma" - -#~ msgid "Successfully updating rule" -#~ msgstr "Amb èxit l'actualització de la regla" - -#~ msgid "Error updating rule operators" -#~ msgstr "Error en actualitzar els operadors de regles" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Actualitzar correctament els operadors de regles" - -#~ msgid "(Agent)" -#~ msgstr "(Agent)" - -#~ msgid "Operator" -#~ msgstr "Operador" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Expressió lògica d'aquestes regles:" - -#~ msgid "Update operators" -#~ msgstr "Actualització dels operadors" - -#~ msgid "Success: create the alerts." -#~ msgstr "Èxit: crear les alertes." - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Error: crear les alertes per a aquests mòduls, comproveu si us plau." - -#~ msgid "Modules agents in policy" -#~ msgstr "Mòduls agents en la política" - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "Agent SNMP que desitja eliminar" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Èxit: eliminar les alertes." - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "" -#~ "Error: eliminar les alertes per a aquests mòduls, comproveu si us plau." - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Alertes amb èxit actualitzats ( %s / %s )" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Sense èxit alertes actualitzades ( %s / %s )" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "Agent SNMP per editar" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Alertes Massive més política" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Alertes massiva eliminació de polítiques" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Massive eliminació SNMP alerta" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Massive alerta edició SNMP" - -#~ msgid "Custom OID" -#~ msgstr "Custom OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Error en analitzar MIB" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Valors personalitzats trampa afegit amb èxit" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Error en afegir valors personalitzats trampa" - -#~ msgid "No change in data" -#~ msgstr "No hi ha canvis en les dades" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Valors personalitzats trampa ha actualitzat correctament" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Error en actualitzar els valors personalitzats trampa" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Valors personalitzats trampa eliminats amb èxit" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Error en eliminar valors personalitzats trampa" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Pujat %s / %s trampes" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Falla pujat %s / %s trampes" - -#~ msgid "Fail uploaded file" -#~ msgstr "Falla fitxer enviat" - -#~ msgid "Load MIB" -#~ msgstr "Carregar MIB" - -#~ msgid "Upload MIB" -#~ msgstr "Upload MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Directori d'emmagatzematge de sessió" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Directori on s'emmagatzemaran les dades de registre." - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Estableix la durada màxima de les dades de registre en dia." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Empresa ACL configuració" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Afegeix nou element ACL al perfil" - -#~ msgid "Section" -#~ msgstr "Secció" - -#~ msgid "Page" -#~ msgstr "Pàgina" - -#~ msgid "Filter by profile" -#~ msgstr "Filtrar per perfil" - -#~ msgid "Skins configuration" -#~ msgstr "Configuració de Skins" - -#~ msgid "Error deleting skin" -#~ msgstr "Error pell eliminant" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Pell eliminat correctament" - -#~ msgid "Create skin" -#~ msgstr "Creu pell" - -#~ msgid "Skin name" -#~ msgstr "Nom de la pell" - -#~ msgid "Relative path" -#~ msgstr "Ruta relativa" - -#~ msgid "Successfully updated skin" -#~ msgstr "La pell s'ha actualitzat correctament" - -#~ msgid "Error updating skin" -#~ msgstr "Error pell actualització" - -#~ msgid "Error creating skin" -#~ msgstr "Error en crear la pell" - -#~ msgid "Successfully created skin" -#~ msgstr "Pell creat amb èxit" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Zip amb subdirectori pell. El nom del fitxer zip no pot contenir caràcters " -#~ "alfanumèrics." - -#~ msgid "Group/s" -#~ msgstr "Grup / s" - -#~ msgid "Metaconsole setup" -#~ msgstr "Configuració Metaconsola" - -#~ msgid "Successfully update" -#~ msgstr "Èxit actualitzar" - -#~ msgid "Could not be update" -#~ msgstr "No podia ser d'actualització" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Pandora FMS edició element Metaconsola" - -#~ msgid "Auth token" -#~ msgstr "Aut símbol" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token configurat anteriorment a la consola de Pandora destinació per tal " -#~ "d'utilitzar autenticació delegat." - -#~ msgid "Console URL" -#~ msgstr "URL consola" - -#~ msgid "DB Host" -#~ msgstr "DB Host" - -#~ msgid "DB Name" -#~ msgstr "DB Nom" - -#~ msgid "DB User" -#~ msgstr "DB usuari" - -#~ msgid "DB Password" -#~ msgstr "DB Contrasenya" - -#~ msgid "Console User" -#~ msgstr "Consola d'Usuari" - -#~ msgid "Console Password" -#~ msgstr "Contrasenya de la consola" - -#~ msgid "DB" -#~ msgstr "DB" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "Compatibility" -#~ msgstr "Compatibilitat" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Nombre de dies abans que les dades es transfereix a la base de dades de la " -#~ "història." - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Mida de les dades de mecanisme utilitzat per transferir dades (similars a un " -#~ "buffer de dades.)" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Interval de temps entre la transmissió de dades." - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Abans d'activar aquesta opció, revisi la seva configuració de ACL. Vostè pot " -#~ "perdre l'accés a la consola." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "Seconds" -#~ msgstr "Segons" - -#~ msgid "Only validated events" -#~ msgstr "Només els esdeveniments validats" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Els mòduls d'inventari inclosos en la llista negra dels canvis no generen " -#~ "esdeveniments quan canviar." - -#~ msgid "Out of black list" -#~ msgstr "Fora de la llista negre" - -#~ msgid "In black list" -#~ msgstr "A la llista de negre" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Premeu mòduls seleccionats a la llista negra" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Mòduls seleccionats sortir de la llista negra" - -#~ msgid "Enterprise options" -#~ msgstr "Opcions d'empresa" - -#~ msgid " Caracters" -#~ msgstr " Signes" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Establir 0 si no caduqui mai." - -#~ msgid " Days" -#~ msgstr " Dies" - -#~ msgid " Minutes" -#~ msgstr " min" - -#~ msgid "Two attempts minimum" -#~ msgstr "Dos intents mínim" - -#~ msgid " Attempts" -#~ msgstr " Els intents" - -#~ msgid "Enterprise password policy" -#~ msgstr "Política de contrasenyes Empresa" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Normes d'aplicació per a la gestió de contrasenyes. Aquesta política " -#~ "s'aplica a tots els usuaris excepte l'administrador." - -#~ msgid "Active directory" -#~ msgstr "Directori d'Active" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Remot Pandora FMS" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Remot Babel Enterprise" - -#~ msgid "Remote Integria" -#~ msgstr "Remot Integria" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Local component management" -#~ msgstr "Gestió de components Local" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Mòdul d'inventari creat amb èxit" - -#~ msgid "Error creating inventory module" -#~ msgstr "Error en crear el mòdul d'inventari" - -#~ msgid "Interpreter" -#~ msgstr "Intèrpret" - -#~ msgid "separate fields with " -#~ msgstr "camps separats amb " - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "O desactivar Pandora FMS empresa" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ " Aquesta llicència ha caducat. " -#~ "Secció No es pot obtenir actualitzacions fins que renovi la llicència." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ " fora dels límits " -#~ "
Aquesta llicència permet %d agents i tens %d agents configurats." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Per continuar amb Pandora FMS, si us plau desactiveu l'empresa canviant el " -#~ "nom del directori de l'empresa a la consola
O contacta Artica en " -#~ "info@artica.es d'una llicència vàlida.:" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Si us plau, poseu-vos en contacte amb Artica a info@artica.es per renovar la " -#~ "llicència." - -#~ msgid "Renew" -#~ msgstr "Renovar" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Si us plau, configureu Aquest widget abans del seu ús" - -#~ msgid "Latest events list" -#~ msgstr "Darrera llista d'esdeveniments" - -#~ msgid "Limit" -#~ msgstr "Limitar" - -#~ msgid "Map made by user" -#~ msgstr "Mapa fet per l'usuari" - -#~ msgid "Show a map made by user" -#~ msgstr "Mostra un mapa fet per l'usuari" - -#~ msgid "Alerts Fired" -#~ msgstr "Alertes Fired" - -#~ msgid "Alerts Fired report" -#~ msgstr "Alertes informe Fired" - -#~ msgid "Show a report made by user" -#~ msgstr "Mostrar un informe realitzat per l'usuari" - -#~ msgid "Single graph" -#~ msgstr "Gràfic simple" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Mostra un gràfic d'un mòdul d'agent" - -#~ msgid "Show the URL content" -#~ msgstr "Mostra el contingut de la URL" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Alçada en píxels (zero per a auto)" - -#~ msgid "My URL" -#~ msgstr "El meu URL" - -#~ msgid "Invalid URL" -#~ msgstr "URL invàlida" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Missatge de benvinguda a Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Benvingu" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Aquest és un exemple d'un giny de tauler d'instruments. Un giny pot contenir " -#~ "elements" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Per afegir més elements, feu clic a \" afegir ginys \" a la part " -#~ "superior d'aquesta pàgina." - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Per eliminar aquest missatge, feu clic al botó Elimina a la cantonada " -#~ "superior dreta d'aquest element." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "Per a això, faci clic al títol i arrossegar fins al lloc desitjat." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Gràcies per utilitzar Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Mostra un mapa de la xarxa de seguiment" - -#~ msgid "No overlap" -#~ msgstr "No hi ha solapament" - -#~ msgid "8" -#~ msgstr "8." - -#~ msgid "9" -#~ msgstr "9." - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "Maps status" -#~ msgstr "Estat de Mapes" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Informe mapes visual general i ràpida" - -#~ msgid "Panel with a message" -#~ msgstr "Panell amb un missatge" - -#~ msgid "My Post" -#~ msgstr "El meu missatge" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Mostrar un gràfic personalitzat definit" - -#~ msgid "Groups status" -#~ msgstr "Grups estat" - -#~ msgid "General and quick group status report" -#~ msgstr "Informe general i ràpida l'estat del grup" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Mostra una llista de la salut global del monitor" - -#~ msgid "Dashboard replicate" -#~ msgstr "Rèplica Dashboard" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "No copyed. Error en copiar les dades. Ha de seleccionar un panell de control" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "No copyed. Les dades de còpia d'error" - -#~ msgid "Successfully copyed" -#~ msgstr "Èxit copyed" - -#~ msgid "Source user's group" -#~ msgstr "Grup de l'usuari Font" - -#~ msgid "Destination user's group" -#~ msgstr "Grup de destinació de l'usuari" - -#~ msgid "Group Dashboards" -#~ msgstr "Dashboards Grup" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Replicar Dashboard" - -#~ msgid "Configure widget" -#~ msgstr "Configura el teu currículum" - -#~ msgid "Delete widget" -#~ msgstr "Eliminar el teu currículum" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Widget no es pot carregar" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Si us plau, configurar el giny de nou per recuperar" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Dashboard actualitzat amb èxit" - -#~ msgid "Could not update dashboard" -#~ msgstr "No s'ha pogut actualitzar dashboard" - -#~ msgid "Could not create dashboard" -#~ msgstr "No s'ha pogut crear el tauler" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Dashboard creat reeixidament" - -#~ msgid "Slides mode" -#~ msgstr "Mode de diapositives" - -#~ msgid "Next Dashboard" -#~ msgstr "Següent Dashboard" - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Previous Dashboard" -#~ msgstr "Dashboard anterior" - -#~ msgid "Pause" -#~ msgstr "[Pausa.]" - -#~ msgid "Next slide in" -#~ msgstr "Diapositiva següent" - -#~ msgid "Add dashboard" -#~ msgstr "Afegir quadre de comandament" - -#~ msgid "Add widget" -#~ msgstr "Afegeix el teu currículum" - -#~ msgid "Update dashboard" -#~ msgstr "Update quadre de comandament" - -#~ msgid "Delete dashboard" -#~ msgstr "Eliminar dashboard" - -#~ msgid "Dashboard options" -#~ msgstr "Opcions Dashboard" - -#~ msgid "Private dashboard" -#~ msgstr "Tauler Privat" - -#~ msgid "Add new dashboard view" -#~ msgstr "Afegir nova vista del tauler" - -#~ msgid "Add new widget" -#~ msgstr "Afegeix nou giny" - -#~ msgid "Search results for" -#~ msgstr "Resultats de la cerca" - -#~ msgid "Create networkmap" -#~ msgstr "Crear networkmap" - -#~ msgid "Screens" -#~ msgstr "Pantalles" - -#~ msgid "Create visualmap" -#~ msgstr "Crear visualmap" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "L'usuari no es troba en cap dels grups amb el perfil EW" - -#~ msgid "Succesful updated" -#~ msgstr "Exitosa actualitzat" - -#~ msgid "Unsucessful updated" -#~ msgstr "Unsucessful actualitzat" - -#~ msgid "Fields" -#~ msgstr "Els camps" - -#~ msgid "Tactical View" -#~ msgstr "Tactical View" - -#~ msgid "More events" -#~ msgstr "Més esdeveniments" - -#~ msgid "Create module" -#~ msgstr "Crear un mòdul" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "No es pot connectar a la instància de Pandora FMS" - -#~ msgid "Web check" -#~ msgstr "Comproveu Web" - -#~ msgid "Module description" -#~ msgstr "Descripció del mòdul" - -#~ msgid "Step by step wizard" -#~ msgstr "Assistent pas a pas" - -#~ msgid "Click Create to continue" -#~ msgstr "Feu clic a Crea per continuar" - -#~ msgid "Please, select a module" -#~ msgstr "Si us plau, escolliu un mòdul" - -#~ msgid "Edit module" -#~ msgstr "Edita mòdul" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "L'alerta que està intentant afegir ja és a la llista d'alertes" - -#~ msgid "Please, select an alert" -#~ msgstr "Si us plau, seleccioneu un avís" - -#~ msgid "Please, select an agent" -#~ msgstr "Si us plau, escolliu un agent" - -#~ msgid "String" -#~ msgstr "Cadena" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Un altre agent ja existeix amb el mateix nom" - -#~ msgid "Preview" -#~ msgstr "Previsualitzar" - -#~ msgid "Edit agent" -#~ msgstr "Agent Edita" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Si us plau, configureu una adreça IP vàlida" - -#~ msgid "Advanced configuration" -#~ msgstr "Configuració avançada" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Els caràcters no vàlids fundada en nom de mòdul" - -#~ msgid "Please, set a name" -#~ msgstr "Si us plau, poseu un nom" - -#~ msgid "Please, set an interval" -#~ msgstr "Si us plau, assignar un interval" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Seleccioneu l'agent que voleu editar o eliminar" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Seleccioneu l'agent on es crearà el mòdul" - -#~ msgid "Create Module" -#~ msgstr "Crear mòdul" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Seleccioneu el mòdul que voleu editar o eliminar" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Seleccioneu el mòdul en què es va crear l'alerta" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Seleccioneu l'alerta per ser editat o esborrat" - -#~ msgid "Group View" -#~ msgstr "Vista del grup" - -#~ msgid "Synchronizing" -#~ msgstr "S'està sincronitzant..." - -#~ msgid "Users synchronization" -#~ msgstr "Sincronització d'usuaris" - -#~ msgid "Groups synchronization" -#~ msgstr "Grups de sincronització" - -#~ msgid "Alerts synchronization" -#~ msgstr "Sincronització Alertes" - -#~ msgid "Components synchronization" -#~ msgstr "Components de sincronització" - -#~ msgid "Tags synchronization" -#~ msgstr "Etiquetes sincronització" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "No podia ser d'actualització: Error en %s" - -#~ msgid "License Info" -#~ msgstr "Informació de llicència" - -#~ msgid "License info" -#~ msgstr "Info de la llicència" - -#~ msgid "Customize sections" -#~ msgstr "Personalitzar seccions" - -#~ msgid "Disabled sections" -#~ msgstr "Seccions per a minusvàlids" - -#~ msgid "Enabled sections" -#~ msgstr "Seccions habilitades" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Empenta seccions seleccionades perquè pugui" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Pop seccions seleccionades per desactivar" - -#~ msgid "Passwords" -#~ msgstr "Contrasenyes" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Error a l'actualitzar l'usuari %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Actualitzat usuari %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Error en crear l'usuari %s" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Creat l'usuari %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Error en crear / actualitzar els elements dels grups / perfils / perfils " -#~ "d'usuari ( %d / %d / %d )" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Els següents elements dels grups / perfils / perfils d'usuari s'han creat / " -#~ "modificat amb èxit ( %d / %d / %d )" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Error de connexió amb %s" - -#~ msgid "This metaconsole" -#~ msgstr "Aquest metaconsola" - -#~ msgid "Profile mode" -#~ msgstr "Mode de Perfil" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Mode de sincronització de perfils." - -#~ msgid "New profile" -#~ msgstr "Nou perfil" - -#~ msgid "Copy profile" -#~ msgstr "Copia perfil" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Activi aquesta opció per copiar els perfils originals usuari" - -#~ msgid "Sync" -#~ msgstr "Sincronitza" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Error en crear %s grups de components " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Creat %s grups de components" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Error en crear / actualitzar %s / %s components locals " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Creat / modificat %s / %s components locals" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Error en crear / actualitzar %s / %s components de la xarxa " - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Creat / modificat %s / %s components de la xarxa" - -#~ msgid "Metaconsole elements" -#~ msgstr "Elements metaconsola" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "El nombre d'elements recuperats per a cada instància en alguns punts de " -#~ "vista." - -#~ msgid "Visual" -#~ msgstr "Visual" - -#~ msgid "Could not be delete" -#~ msgstr "No podria ser eliminar" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Ruta completa a la consola de Pandora sense passat caràcter \"/ \". Exemple " - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "No hi ha servidor afegit a metaconsola" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Error en crear / actualitzar %s / %s comamnds" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "/ Creat Actualitzat %s / %s comandaments" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Error en crear / actualitzar %s / %s accions" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "/ Creat Actualitzat %s / %s accions" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Error en crear / actualitzar %s / %s plantilles" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Creat / modificat %s / %s plantilles" - -#~ msgid "Propagation" -#~ msgstr "Propagació" - -#~ msgid "Only database" -#~ msgstr "Només la base de dades" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Error en crear / actualitzar %s / %s etiquetes" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Creat / modificat %s / %s etiquetes" - -#~ msgid "Active events history" -#~ msgstr "Història esdeveniments Actiu" - -#~ msgid "Please search for anything text." -#~ msgstr "Si us plau, busca text res." - -#~ msgid "Original string" -#~ msgstr "Cadena original" - -#~ msgid "Translation in selected language" -#~ msgstr "La traducció en la llengua seleccionada" - -#~ msgid "Customize translation" -#~ msgstr "Personalitzar traducció" - -#~ msgid "Consoles Setup" -#~ msgstr "Consoles de instal · lació" - -#~ msgid "General setup" -#~ msgstr "Configuració general" - -#~ msgid "Passwords setup" -#~ msgstr "Configuració de contrasenyes" - -#~ msgid "Visual setup" -#~ msgstr "Instal · lació de Visual" - -#~ msgid "Performance setup" -#~ msgstr "Configuració Performance" - -#~ msgid "Strings translation" -#~ msgstr "Traducció Cordes" - -#~ msgid "Consoles setup" -#~ msgstr "Configuració Consoles" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Error en crear / actualitzar %s / %s grups" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Creat / modificat %s / %s grups" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "servidor ip redirigit a conf a DB font" - -#~ msgid "created agent in destination DB" -#~ msgstr "agent creada el DB destí" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "creat mòduls d'agent de base de dades de destinació" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "creat alertes agent en DB destí" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "accions alertes creades en DB destí" - -#~ msgid "disabled agent in source DB" -#~ msgstr "agent deshabilitat en DB font" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "No establert metaconsola IP a la \"llista d'IP amb accés API \" conjectura " -#~ "Pandora consola." - -#~ msgid "Successfully moved" -#~ msgstr "Amb èxit es va traslladar" - -#~ msgid "Could not be moved" -#~ msgstr "No s'ha pogut moure" - -#~ msgid "Source Server" -#~ msgstr "Origen de servidor" - -#~ msgid "Destination Server" -#~ msgstr "Servidor de destinació" - -#~ msgid "Add agents to destination server" -#~ msgstr "Afegir els agents al servidor de destinació" - -#~ msgid "Move" -#~ msgstr "Moure" - -#~ msgid "Policy Manager" -#~ msgstr "Policy Manager" - -#~ msgid "Apply policies" -#~ msgstr "Aplicar polítiques" - -#~ msgid "Policies queue" -#~ msgstr "Polítiques cua" - -#~ msgid "Policies apply" -#~ msgstr "Aplicar polítiques" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Error en crear %s polítiques" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Creat %s polítiques" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Error en crear / actualitzar %s / %s mòduls de polítiques" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Creat / modificat %s / %s mòduls de polítiques" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Error en eliminar %s mòduls de polítiques" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Suprimit %s mòduls de polítiques" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Error en crear %s alertes de política" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Creat %s alertes de política" - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Error en eliminar %s alertes de política" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Suprimit %s alertes de política" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Metaconsola necessita activació prèvia de la consola regular, per favor " -#~ "comuniqui amb l'administrador del sistema si necessita ajuda.
" - -#~ msgid "Network traffic" -#~ msgstr "El tràfic de xarxa" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Per tenir la millor experiència d'usuari amb Pandora FMS, que recomanem " -#~ " d'usar" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ " Mozilla Firefox o " -#~ " Google Chrome navegadors." - -#~ msgid "Monitors view" -#~ msgstr "Veure Monitors" - -#~ msgid "Create new report" -#~ msgstr "Crear un nou informe" - -#~ msgid "Report templates" -#~ msgstr "Les plantilles d'informes" - -#~ msgid "Templates wizard" -#~ msgstr "Assistent de plantilles" - -#~ msgid "Live view" -#~ msgstr "Live View" - -#~ msgid "Agent management" -#~ msgstr "Agent de gestió" - -#~ msgid "Alert management" -#~ msgstr "Gestió d'alertes" - -#~ msgid "Tag management" -#~ msgstr "Maneig d'etiquetes" - -#~ msgid "Policy management" -#~ msgstr "Gestió de polítiques" - -#~ msgid "Category management" -#~ msgstr "La gestió de categories" - -#~ msgid "Metasetup" -#~ msgstr "Metasetup" - -#~ msgid "Back to login" -#~ msgstr "Tornar a l'inici" - -#~ msgid "Agents movement" -#~ msgstr "Moviment Agents" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Exitosa actualitzar el networkmap." - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Sense èxit actualitzar el networkmap." - -#~ msgid "Unnamed " -#~ msgstr "Sense nom " - -#~ msgid "Filter by agents" -#~ msgstr "Filtrar per agents" - -#~ msgid "Filter by modules" -#~ msgstr "Filtrar per mòduls" - -#~ msgid "Show modules" -#~ msgstr "Mostrar mòduls" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Mostri als nens Metaconsola" - -#~ msgid "Show modulegroup" -#~ msgstr "Mostra modulegroup" - -#~ msgid "There is no group selected" -#~ msgstr "No hi ha grup seleccionat" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "No es pot connectar a %s Pandora per generar networkmap." - -#~ msgid "Agent modules" -#~ msgstr "Mòduls de l'Agent" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Afegir mòduls seleccionats a l'agent" - -#~ msgid "Undo changes" -#~ msgstr "Desfer canvis" - -#~ msgid "Latency" -#~ msgstr "Estat latent" - -#~ msgid "Response" -#~ msgstr "Resposta" - -#~ msgid "Check type" -#~ msgstr "Comproveu el tipus de" - -#~ msgid "String to check" -#~ msgstr "Cordes per comprovar" - -#~ msgid "Add check" -#~ msgstr "Afegir comprovar" - -#~ msgid "Delete check" -#~ msgstr "Eliminar comprovar" - -#~ msgid "Various" -#~ msgstr "Vario" - -#~ msgid "Thresholds" -#~ msgstr "Llindars" - -#~ msgid "Web configuration" -#~ msgstr "Configuració Web" - -#~ msgid "Alerts in module" -#~ msgstr "Alertes al mòdul" - -#~ msgid "Checks" -#~ msgstr "Xecs" - -#~ msgid "Deleted modules" -#~ msgstr "Mòduls eliminats" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Error en afegir mòdul %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "S'ha produït un error en crear les descripcions, l'operació ha estat cancel " -#~ "· lada" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "No s'ha pogut crear l'agent %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agent afegit correctament" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s mòduls creats" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "No s'ha pogut actualitzar agent %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Mòduls de esborraran" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Pogut actualitzar el mòdul %s" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "S'ha produït un error en actualitzar les descripcions, l'operació ha estat " -#~ "cancel · lada" - -#~ msgid "Successfully updated module." -#~ msgstr "S'ha actualitzat correctament mòdul." - -#~ msgid "Manage agent modules" -#~ msgstr "Administrar mòduls agent" - -#~ msgid "No admin user" -#~ msgstr "Cap usuari administrador" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow desactivar filtres de vista en viu personalitzats" - -#~ msgid "Customizable section" -#~ msgstr "Secció Personalitzable" - -#~ msgid "User synchronization" -#~ msgstr "Sincronització d'usuaris" - -#~ msgid "Group synchronization" -#~ msgstr "La sincronització de grups" - -#~ msgid "Go to agent detail" -#~ msgstr "Anar al detall agent" - -#~ msgid "Create new module" -#~ msgstr "Crear un nou mòdul" - -#~ msgid "Tree View" -#~ msgstr "Vista d'arbre" - -#~ msgid "Group name" -#~ msgstr "Nom del grup" - -#~ msgid "Go to module detail" -#~ msgstr "Anar al detall del mòdul" - -#~ msgid "Create new alert" -#~ msgstr "Crear una nova alerta" - -#~ msgid "Stand By" -#~ msgstr "Atenir-se a" - -#~ msgid "Go to Alert detail" -#~ msgstr "Anar a l'Alerta detall" - -#~ msgid "Delete alert" -#~ msgstr "Eliminar alerta" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Hi va haver una etiqueta loading problema" - -#~ msgid "Plugin management" -#~ msgstr "Gestió de Programes" - -#~ msgid "Create plugin" -#~ msgstr "Crear plugins" - -#~ msgid "Edit plugin" -#~ msgstr "Edita complement" - -#~ msgid "Log viewer" -#~ msgstr "Visualitzador de registres" - -#~ msgid "Start date" -#~ msgstr "Data d'inici" - -#~ msgid "Copy Dashboard" -#~ msgstr "Còpia Dashboard" - -#~ msgid "Network console" -#~ msgstr "Consola Network" - -#~ msgid "Custom SQL" -#~ msgstr "Custom SQL" - -#~ msgid "Export this list to CSV" -#~ msgstr "Exporta aquesta llista a CSV" - -#~ msgid "List of elements" -#~ msgstr "Llista d'elements" - -#~ msgid "Service Map" -#~ msgstr "Map Service" - -#~ msgid "Service deleted successfully" -#~ msgstr "Servei esborrat correctament" - -#~ msgid "Error deleting service" -#~ msgstr "Servei d'eliminació d'errors" - -#~ msgid "Success be updated." -#~ msgstr "L'èxit s'actualitzarà." - -#~ msgid "Could not be updated." -#~ msgstr "No s'ha pogut actualitzar." - -#~ msgid "Policy: " -#~ msgstr "Política " - -#~ msgid "Status: " -#~ msgstr "Status " - -#~ msgid "Data: " -#~ msgstr "Dades " - -#~ msgid "Last contact: " -#~ msgstr "Últim contacte: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Networkmap empresa" - -#~ msgid "Not found networkmap." -#~ msgstr "No s'ha trobat networkmap." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Networkmap empresa - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Èxit creat" - -#~ msgid "Succesfully updated" -#~ msgstr "Èxit actualitzat" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Èxit duplicat" - -#~ msgid "Could not be duplicated" -#~ msgstr "No podria ser duplicat" - -#~ msgid "Succesfully deleted" -#~ msgstr "Èxit esborrat" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Cap col · lecció assignada a aquest agent" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "El networkmap ja ha estat generada." - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Mida de networkmap (Ample x Alt)" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Method generation networkmap" -#~ msgstr "Generació Mètode networkmap" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Estat networkmap Refresh" - -#~ msgid "Resize the networkmap" -#~ msgstr "Canviar la mida del networkmap" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "Aquesta operació no es pot desfer, perquè està en DB." - -#~ msgid "Save networkmap" -#~ msgstr "Guardar networkmap" - -#~ msgid "Update networkmap" -#~ msgstr "Update networkmap" - -#~ msgid "Networkmap resized." -#~ msgstr "Networkmap redimensionada." - -#~ msgid "Error process map" -#~ msgstr "Error mapa de processos" - -#~ msgid "Details of node:" -#~ msgstr "Detalls de node:" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Aquest agent no té una política assignada" - -#~ msgid "Policy outdate" -#~ msgstr "Política outdate" - -#~ msgid "Toggle the collection table" -#~ msgstr "Canvieu la taula de col · lecció" - -#~ msgid "Descripttion" -#~ msgstr "Descripttion" - -#~ msgid "Show Collection" -#~ msgstr "Mostra Collection" - -#~ msgid "Toggle the alert table" -#~ msgstr "Canvia la taula d'alertes" - -#~ msgid "Show Alert" -#~ msgstr "Mostra aviària" - -#~ msgid "Toggle the module table" -#~ msgstr "Canvia la taula de mòduls" - -#~ msgid "Relationship" -#~ msgstr "Relació" - -#~ msgid "Show Modules" -#~ msgstr "Mostra Mòduls" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Un-aprovada)" - -#~ msgid "(Adopted)" -#~ msgstr "(Adoptat)" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Un-aprovada) (no vinculades)" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Adoptat) (no vinculades)" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Export to PDF" -#~ msgstr "Exporta a PDF" - -#~ msgid "Backup" -#~ msgstr "Còpia de seguretat" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Utilitat de còpia de seguretat de base de dades de Pandora" - -#~ msgid "Lost" -#~ msgstr "Perdut" - -#~ msgid "Backups list" -#~ msgstr "Llista de còpies de seguretat" - -#~ msgid "Create backup" -#~ msgstr "Crear còpia de seguretat" - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "Error create ' %s política ', hi ha el nom i no hi ha nom lliurement." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Advertència create ' %s política ', hi ha el nom, la política té un nom %s ." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Error La política no té el nom." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Èxit create ' %s' polítiques ." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Error create ' %s' polítiques." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Èxit add ' %s de l'agent." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Error add ' %s de l'agent." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Èxit add ' %s col · lecció." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Error add ' %s col · lecció." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Error afegir el mòdul, no s'escrigui." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Error afegir el mòdul, l'error en el component variable." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Èxit add ' %s mòdul." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Error add ' %s mòdul." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Error Afegir l'alerta, la plantilla ' %s 'no existeixen." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Error Afegir l'alerta, el mòdul ' %s 'no existeixen." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Èxit add ' %s alerta." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Error add ' %s alerta." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Error Afegir l'alerta, l'acció ' %s 'no existeixen." - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Èxit add ' %s' acció." - -#~ msgid "Report to build" -#~ msgstr "Informeu construir" - -#~ msgid "Send to email" -#~ msgstr "Enviar al correu electrònic" - -#~ msgid "Save to disk into path" -#~ msgstr "Guardar en disc en camí" - -#~ msgid "Send custom report by email" -#~ msgstr "Envieu un informe personalitzat per correu electrònic" - -#~ msgid "Save custom report to disk" -#~ msgstr "Guardar informe personalitzat en el disc" - -#~ msgid "Backup Pandora database" -#~ msgstr "Còpia de seguretat de base de dades de Pandora" - -#~ msgid "Not scheduled" -#~ msgstr "No programat" - -#~ msgid "Hourly" -#~ msgstr "Cada hora" - -#~ msgid "Yearly" -#~ msgstr "Anual" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Aquest és l'informe generat automàtica" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Obriu el fitxer adjunt per veure-" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Si us plau, no respongui o respongui a aquest missatge" - -#~ msgid "Cron jobs" -#~ msgstr "Treballs Cron" - -#~ msgid "Add new job" -#~ msgstr "Afegeix nou treball" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Ruta no existeix o no té permisos d'escriptura" - -#~ msgid "Edit job" -#~ msgstr "Edita treball" - -#~ msgid "Cron extension is not running" -#~ msgstr "Extensió Cron no s'executa" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "Extensió cron no s'ha executat o no està configurat així" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Aquesta extensió es basa en una correcta configuració de cron, el servei de " -#~ "programació basat en el temps" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Si us plau, afegiu la següent línia al vostre fitxer crontab" - -#~ msgid "Last execution" -#~ msgstr "Darrera execució" - -#~ msgid "Cron extension is running" -#~ msgstr "Extensió Cron s'està executant" - -#~ msgid "Scheduled jobs" -#~ msgstr "Treballs programats" - -#~ msgid "Task" -#~ msgstr "Tasca" - -#~ msgid "Scheduled" -#~ msgstr "Programat" - -#~ msgid "First_execution" -#~ msgstr "First_execution" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Potser la primera cursa no és exactament igual a aquest valor a causa de que " -#~ "la configuració de cron és diferent." - -#~ msgid "Last run" -#~ msgstr "Última cursa" - -#~ msgid "Force run" -#~ msgstr "Execució forçosa" - -#~ msgid "Path" -#~ msgstr "Camí" - -#~ msgid "First execution" -#~ msgstr "Primera execució" - -#~ msgid "Translate string" -#~ msgstr "Traduir cadena" - -#~ msgid "CSV import" -#~ msgstr "CSV import" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Creat agent %s" - -#~ msgid "File processed" -#~ msgstr "Expedient tramitat" - -#~ msgid "CSV format" -#~ msgstr "Format CSV" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "L'arxiu CSV ha de tenir els camps en el següent ordre" - -#~ msgid "Upload file" -#~ msgstr "Càrrega" - -#~ msgid "Separator" -#~ msgstr "Separador" - -#~ msgid "Upload CSV file" -#~ msgstr "Carrega CSV" - -#~ msgid "Wizard SLA" -#~ msgstr "Assistent de SLA" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Advance options" -#~ msgstr "Opcions avançades" - -#~ msgid "Templates list" -#~ msgstr "Llista Plantilles" - -#~ msgid "Templates Wizard" -#~ msgstr "Assistent per a plantilles" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Agents de gràfics ( %s ) - %s" - -#~ msgid "Template editor" -#~ msgstr "Editor de plantilles" - -#~ msgid "Get PDF file" -#~ msgstr "Document en format PDF" - -#~ msgid "Generated" -#~ msgstr "Generat" - -#~ msgid "Simple Graph" -#~ msgstr "Gràfic simple" - -#~ msgid "% Limit" -#~ msgstr "% Límit" - -#~ msgid "Report type" -#~ msgstr "Tipus d'informe" - -#~ msgid "% OK" -#~ msgstr "D'acord" - -#~ msgid "% Wrong" -#~ msgstr "Equivocat?" - -#~ msgid "MAX Value" -#~ msgstr "MAX Valor" - -#~ msgid "MIN Value" -#~ msgstr "Valor MIN" - -#~ msgid "Illegal query" -#~ msgstr "Consulta il · legal" - -#~ msgid "Uknown agents" -#~ msgstr "Agents Uknown" - -#~ msgid "Last 8 hours events" -#~ msgstr "Últimes 8 hores esdeveniments" - -#~ msgid "Modules over or equal to" -#~ msgstr "Mòduls de més de o igual a" - -#~ msgid "Modules under" -#~ msgstr "Mòduls sota" - -#~ msgid "Modules at normal status" -#~ msgstr "Mòduls en estat normal" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Mòduls en estat crític o d'advertència" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "No existeixen mòduls més de o igual a %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "No hi ha mòduls sota %s" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "No hi ha mòduls en estat normal" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "No hi ha mòduls en aquestes condicions" - -#~ msgid "Serialized data " -#~ msgstr "Dades serialitzats " - -#~ msgid "There are no data." -#~ msgstr "No hi ha dades." - -#~ msgid "Crit:" -#~ msgstr "Crític:" - -#~ msgid "Warn:" -#~ msgstr "Atenció." - -#~ msgid "Ok:" -#~ msgstr "Bé." - -#~ msgid "Value:" -#~ msgstr "Valor" - -#~ msgid "Add fictional point" -#~ msgstr "Afegir un punt de ficció" - -#~ msgid "Shape" -#~ msgstr "Forma" - -#~ msgid "Radius" -#~ msgstr "Ràdio" - -#~ msgid "Color" -#~ msgstr "Color" - -#~ msgid "Network map linked" -#~ msgstr "Mapa de la xarxa vinculada" - -#~ msgid "Circle" -#~ msgstr "Cercle" - -#~ msgid "Square" -#~ msgstr "Plaça" - -#~ msgid "Rhombus" -#~ msgstr "Rombe" - -#~ msgid "Open Minimap" -#~ msgstr "Obrir minimapa" - -#~ msgid "Show modules:" -#~ msgstr "Mostrar mòduls:" - -#~ msgid "Copy of " -#~ msgstr "Còpia del " - -#~ msgid "Module alert" -#~ msgstr "Alerta Mòdul" - -#~ msgid "Empty configuration" -#~ msgstr "Configuració buida" - -#~ msgid "Empty OS" -#~ msgstr "OS buida" - -#~ msgid "Lines" -#~ msgstr "Línies" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsola" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "" -#~ "Automatitzat de Pandora FMS informe per l'informe definit per l'usuari" - -#~ msgid "There are no agents with modules." -#~ msgstr "No hi ha agents amb mòduls." - -#~ msgid "Last 8 hours" -#~ msgstr "Últimes 8 hores" - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "No hi ha agent / mòduls definits." - -#~ msgid "Exception - Equal to" -#~ msgstr "Excepció - Igual a" - -#~ msgid "There are no" -#~ msgstr "No hi ha" - -#~ msgid "Modules under those conditions" -#~ msgstr "Mòduls sota aquestes condicions" - -#~ msgid "Modules less or equal to" -#~ msgstr "Mòduls de menys o igual a" - -#~ msgid "Modules less" -#~ msgstr "Mòduls menys" - -#~ msgid "Modules over" -#~ msgstr "Mòduls més" - -#~ msgid "Modules equal to" -#~ msgstr "Mòduls igual a" - -#~ msgid "Modules not equal to" -#~ msgstr "Els mòduls no iguals" - -#~ msgid "Modules normal status" -#~ msgstr "Mòduls estat normal" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Mòduls d'estat critial o advertiment" - -#~ msgid "There are no alerts for this module." -#~ msgstr "No hi ha alertes d'aquest mòdul." - -#~ msgid "Modules detailed event" -#~ msgstr "Mòduls esdeveniment detallat" - -#~ msgid "There are no events for this module." -#~ msgstr "No hi ha esdeveniments aquest mòdul." - -#~ msgid "User defined graph" -#~ msgstr "Definit per l'usuari gràfica" - -#~ msgid "Group detailed event" -#~ msgstr "Cas detallat Grup" - -#~ msgid "There are no events in group." -#~ msgstr "No hi ha esdeveniments grup." - -#~ msgid "Agents detailed event" -#~ msgstr "Agents d'esdeveniments detallada" - -#~ msgid "There are no Events." -#~ msgstr "No hi ha esdeveniments." - -#~ msgid "Sumatory" -#~ msgstr "Sumatori" - -#~ msgid "Info" -#~ msgstr "+ info." - -#~ msgid "Inside limits" -#~ msgstr "Dins dels límits" - -#~ msgid "On the edge" -#~ msgstr "En la vora" - -#~ msgid "Agent:" -#~ msgstr "Agent:" - -#~ msgid "Module:" -#~ msgstr "Mòdul:" - -#~ msgid "Generated: " -#~ msgstr "Generat: " - -#~ msgid "Report date: " -#~ msgstr "Data de l'informe: " - -#~ msgid "CONTENTS" -#~ msgstr "Contingut" - -#~ msgid "Untitled" -#~ msgstr "Intitulat" - -#~ msgid "Period: " -#~ msgstr "Període: " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "There are no modules." -#~ msgstr "No hi ha mòduls." - -#~ msgid "No description" -#~ msgstr "No description" - -#~ msgid "Restoring a backup" -#~ msgstr "Restaurar una còpia de seguretat" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Restaurar una còpia de seguretat de base de dades de Pandora s'ha de fer " -#~ "manualment" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "És una operació complexa que requereix intervation humana per evitar errors " -#~ "en el sistema i les dades que perden" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "Per restaurar la còpia de seguretat seleccionada, feu el següent" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Obriu una shell de root amb el vostre sistema es troba en " - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Connecteu-vos a la base de dades MySQL amb la següent comanda" - -#~ msgid "Create a new database" -#~ msgstr "Crear una nova base de dades" - -#~ msgid "Restore the backup" -#~ msgstr "Restaurar la còpia de seguretat" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Modificar la configuració de la consola per utilitzar aquesta nova base de " -#~ "dades" - -#~ msgid "Open configuration file" -#~ msgstr "Obre el fitxer de configuració" - -#~ msgid "Find" -#~ msgstr "Trobar" - -#~ msgid "and replace with" -#~ msgstr "i reemplaçar" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Modificar configuració de servidors per utilitzar aquesta nova base de dades" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "" -#~ "Cerqueu el fitxer de configuració servidors i canviar les següents línies" - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Reinicieu els servidors i accedir de nou a la consola" - -#~ msgid "Run import command using the following command" -#~ msgstr "Executar comanda d'importació mitjançant la següent comanda" - -#~ msgid "Into your destination database." -#~ msgstr "En la seva base de dades de destinació." - -#~ msgid "Log collector" -#~ msgstr "Col · lector sessió" - -#~ msgid "Agent detailed event" -#~ msgstr "Agent esdeveniment detallat" - -#~ msgid "Configuration report for agent " -#~ msgstr "Informe de configuració per l'agent " - -#~ msgid "Configuration report for group " -#~ msgstr "Informe de configuració per al grup " - -#~ msgid "Database credentials not found" -#~ msgstr "Credencials de base de dades que no es troben" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Error al connectar al host especificat" - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Connectat al host, però no es pot trobar la base de dades especificada" - -#~ msgid "Server connection failed" -#~ msgstr "Connexió amb el servidor no" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "Extensió \"Traduir string \" es va perdre al servidor. Aquesta extensió és " -#~ "obligatori estar configurat en metaconsola." - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Nom del servidor no coincideix. Comproveu el nom del servidor de node i " -#~ "configurar el mateix a metasetup" - -#~ msgid "Last event replication" -#~ msgstr "Replicació Últim esdeveniment" - -#~ msgid "Tree view by tags" -#~ msgstr "Vista d'arbre per etiquetes" - -#~ msgid "No changes found" -#~ msgstr "No s'han trobat canvis" - -#~ msgid "Get CSV file" -#~ msgstr "Obtingui fitxer CSV" - -#~ msgid "Service does not exist." -#~ msgstr "Servei no existeix." - -#~ msgid "Module store the service does not exist." -#~ msgstr "Mòdul de la botiga de servei no existeix." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Botiga de servei SLA mòdul no existeix." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Agent de la botiga de servei no existeix." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Servei SLA store agent no existeix." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Servei SLA crític Alerta no existeix." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Servei d'avís Alert no existeix." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Servei crític Alerta no existeix." - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Servei d'Alerta desconegut no existeix." - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Mòdul automàtic per crear el servei %s" - -#~ msgid "Critical (Alert)" -#~ msgstr "Critical (Alerta)" - -#~ msgid "Unknow" -#~ msgstr "Desconegut" - -#~ msgid "There are no service elements defined" -#~ msgstr "No hi ha elements de servei definits" - -#~ msgid "Weight Critical" -#~ msgstr "Pes crític" - -#~ msgid "Weight Warning" -#~ msgstr "Pes Warning" - -#~ msgid "Weight Unknown" -#~ msgstr "Pes Desconegut" - -#~ msgid "Weight Ok" -#~ msgstr "Ok Pes" - -#~ msgid "Delete service element" -#~ msgstr "Eliminar element de servei" - -#~ msgid "FAIL" -#~ msgstr "DECISIÓ" - -#~ msgid "Policy linkation" -#~ msgstr "Linkation Política" - -#~ msgid "Module linked" -#~ msgstr "Mòdul vinculat" - -#~ msgid "Unlink from policy" -#~ msgstr "Desvinculació de la política" - -#~ msgid "Module unlinked" -#~ msgstr "Mòdul desvinculat" - -#~ msgid "Relink to policy" -#~ msgstr "Tornar a vincular la política" - -#~ msgid "Module pending to link" -#~ msgstr "Mòdul pendent per enllaçar" - -#~ msgid "Module pending to unlink" -#~ msgstr "Mòdul pendent per desvincular" - -#~ msgid "Create a new policy map" -#~ msgstr "Crear un nou mapa de la política" - -#~ msgid "You must change password" -#~ msgstr "Heu de canviar la contrasenya" - -#~ msgid "NEW PASS: " -#~ msgstr "NEW PASS: " - -#~ msgid "CONFIRM: " -#~ msgstr "Confirma " - -#~ msgid "Change" -#~ msgstr "posició" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "L'usuari ha estat bloquejat. Intenteu-ho de nou en " - -#~ msgid " minutes" -#~ msgstr " min" - -#~ msgid "Password must be different from the " -#~ msgstr "La contrasenya ha de ser diferent de la " - -#~ msgid " previous changes." -#~ msgstr " els canvis anteriors." - -#~ msgid "Password must be different" -#~ msgstr "La contrasenya ha de ser diferent" - -#~ msgid "Password too short" -#~ msgstr "Contrasenya massa curta" - -#~ msgid "Password must contain numbers" -#~ msgstr "La contrasenya ha de contenir números" - -#~ msgid "Password must contain symbols" -#~ msgstr "La contrasenya ha de contenir símbols" - -#~ msgid "User pass successfully updated" -#~ msgstr "Usuari passar actualitzat correctament" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Error a l'actualitzar l'usuari (sense canvi?)" - -#~ msgid "Password confirm does not match" -#~ msgstr "Contrasenya confirmen no coincideix" - -#~ msgid "Password empty" -#~ msgstr "Contrasenya buida" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Aquest servidor té assignades tasques de reconeixement" - -#~ msgid "Form filter" -#~ msgstr "Filtre Form" - -#~ msgid "Search value" -#~ msgstr "Valor de Recerca" - -#~ msgid "Update manager settings" -#~ msgstr "Actualització de valors del gestor" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Update Manager envia informació anònima sobre Pandora FMS ús (nombre " -#~ "d'agents i mòduls d'execució). Per desactivar-lo, simplement esborri " -#~ "l'extensió o eliminar l'adreça del servidor remot d'actualització de la " -#~ "configuració plug-in Manager." - -#~ msgid "Your system is up-to-date" -#~ msgstr "El seu sistema està al dia" - -#~ msgid "Server authorization rejected" -#~ msgstr "Autorització del servidor ha rebutjat" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Hi ha una nova actualització per Pandora FMS" - -#~ msgid "Code / binary directory" -#~ msgstr "Codi / directori de binaris" - -#~ msgid "Plannified downtime" -#~ msgstr "Temps d'inactivitat Plannified" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Restriccions de seguretat a causa, hi ha algunes paraules reservades no es " -#~ "poden utilitzar" - -#~ msgid "or" -#~ msgstr "També es pot" - -#~ msgid "Module detailed event" -#~ msgstr "Esdeveniment detallada Mòdul" - -#~ msgid "Average" -#~ msgstr "Mitjana" - -#~ msgid "Agent configuration: " -#~ msgstr "Configuració de l'agent: " - -#~ msgid " MODULES" -#~ msgstr " MÒDULS" - -#~ msgid "Group configuration: " -#~ msgstr "Configuració del grup de: " - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Directori actual no té permisos d'escriptura pel servidor HTTP" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "Comproveu que el directori actual té drets de servidor HTTP de favor" diff --git a/pandora_console/include/languages/cs.mo b/pandora_console/include/languages/cs.mo index 229a9835d039f21d718a05f12070d6e9857156c5..161c8dee05be01c7fa67adfae7bb54abdbb0ca2b 100644 GIT binary patch literal 172044 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

Z6EeviqNe@FA3t7|;Z(GuwW zULo2tItXh}|0p`&CN%Dk(fjHkdY(^2FJN!ViQU3;^G@`>o`kkripIY#x-0q(8vnIu z?(U&|6?7kNL-(x%`aBsFuTQ}Wloz1u-Hzt>bM#z%kH-5Cdfqbh2+#k5=sq@z4n)VD zj_${cX!{MZybF!{IJ)lN(767N*E9AE`;b3c6zyLI%i*nP-iKf{ycZqkB{bgG(RLr8 zdHOke9gQbPuTWnM{XVLJ#jq3leKrpLxnwE2|0~e*wl4Ys8vg-wAJ3uj{f_1}eeZC8 z7DV$^3azgeZI0%vH=3u1qtBx4H=^@xNAL4P=ze^KuIGF#C)^R{zX5&Dd z`|7dW3>~L6I&M!ij|0*CjX=-WSTr9C(DV8pdcR)8Qkdt?@IBZ78&DpBwefZIK0X&s z)hC?8g6R5dq3dpg=KUVD{T%dr>t*yg@(KELz{zN;zM)+i^tsX)&07yNp0Q~E=g@Py z1zq=HbiA|Z{Qsisy0Kpvzh<;IdcRIV$A1BB|4uA_ipKjbdOi~Shjo-hzXw}jX&i<= zSD!}PZ$?5%k6ChjiVEqpMGe+ zVQ9W5#`?u*T+7k>a~0OXH_&r>AzEf|`1f1}U@hubpx3{|)_Bv9@N?4uY)1KIY>K~P zORPDRKi9@buoZre))yWY&eu?M9rN&Zd=|~m1#F91hKHY5dZFXaLf3H+-M3%ywnW;E zNJ{zl!aCd?zISG$?OsFA%^qxy-(XcNH!}Qs@eZ`z3iN*Z5IqNH(EA|OJz>03=(%i; zp6}7o#pt=+iar<4VRg)KZ#XaYusr2~=(&FqZMPX6?@M&v^!J7Pv?5yWg5IYOpzWT< ziueIK&M)YFop)4tzBj}Pl*gd+|BC&v#OScT>1ZBSqW!nv&3Fd=J}WpT%+m^u_x@OZ z5xs8@p#A>DhFEND$j?CZc{KyQ{wmu32pZpYG+(9e54J|vcQ4w0A=>^!wEd6h{5i&j zxavnop!G}8`F5hum7maYvWyS?Yhn$`ccS;}0yKYH(0w|G&XaROQp$f{v@SaC>u4M& z(D71FOiKCpEGuGN$`4`{+=QN=^XPsgKaiC2|I^eCf1-R0=iv59wC7xQe2{aEQy&WX zI{I+fuWRUjRGJ)q{nQj)*H~POi_!1T7LSBH^o!2JG1PBGuUDUvlyEn;LHB(#Ud4-; zvff9-b0O!{@SMtr>A7AAeXf>5p98mI25f{rKU$;v)C0})!8WHQCMxVd0p!fL>OpD)O5}w11_%r(a zy^5~m8ai*nV`2YpMC0j?#y1RI=Xmt~nu3nI1l|ATXncFn`H!RXUq;VGj_Kh!Sr>gi zk3-MbO!T?&Hu}AA5bgIZI#0rkP|kyndowyudvu@fMB|=`=5s0f{jeH67hBPFo<`U6 zeJr2H%9Jmn@fDpJ*4G+s-vu4N2fANV(fxlex(bbV9h#R9F=hQ|zK+N8SK`ZpC--_E^p^JDj6}=((?tuD1)C$06u?C!*(KUUX%2GurMTI{tUD z{0ACu#>azsF`05{G|w&2bq_$#?IbjRkE751`IwAvqWg3Ro&RTazN9(fKFEpw+)*1n zcb(Au-WkjN(Q|w^-iLEA858G*@3W%l{nQYhXAqk2hvM}a=y`b=-R~V}{?DTQuAuQ0 zm>0&Yh*c=JLG$qt*2JgKc6-osbP~<;IdtB?(RJs1BJ`^oZHj*H_CW8i@n~KjK-W79 zJvR%`@t;TIUytT%6Pnl0(0%*@)8GYkoZr#@sh$k`kQqHk1!B1t8fSBK-96EGhQ#{m z=s8`2uJ={6{|9J%U!wibME^qbndPa_uPoZG4jOmUSZ)H)yHK8jz417D zeri1(=5LO+?-d<@=52T^k3^p<_s8;sXg;Q)=YKZ(+*pB=a6g*IHuHo1@gBY(aS+_QX7k!}r=~^!&bzu6GYQ{%7dEUBI%K^i249uL7Efhp-8*!T0bY z{)VqENlN*9gD*TAejd!WG@Rc%(ephC-M<-F1D`|JbvSw^`X?Gsrsu-CvPW-3_bnHC zJr8MD!Y#W-#lj!_^q4Om@AIj;`akHV%p~C2St&b(K9Xjq|-k;GpuEg@cXuI?;gn3$U@fH#}fJs|9(f_=j=W{cY%xgS; z;z02=!=&+=7rn@}y`d`MICUTM`6=q&jD0E*WCg~5nQI+fAg`P_mGU_Q;`KapH0JY< zp_uZ|H~%Ll&rdDJbA1;)47}cC+;8c3j?Y!FNgT^-*=Un9mP-{-n7p8zl7TvqZFST z@%fX`)csM*_DYg9dz=YQsyB2kyGv>XFc_Ow?McsJHzS?u`89ryHpRbOT z)6=dOb>D=lgfqcpxE>7POxQ@C)xSsb$ z=6RI*49xihpC7>SjPpL%Hq&llj4K`an9RUOXq%Snt7-e+i@)N=-}?xq6I`E5ztlLG zF$%@JHpb)B4WzCp@5kul>s9()V2;aN^VO63a@3WjO|bG;g$pSCZbZN8s* z>QWvZ$9j!%3dZ^D)`@GrM#k$M7?;0x#oz7V`;oTK({>Ey@Be2l{58RZwQ((d;@Z#0 zar)4HDC7OjYp(k`MT|G_`3tTMq1>G7zVa|uGWDOvF|B($&VN^wuf&8?%yETl^Lfvv zEx)`=xR-wX7@Tl3szOoXs($)uYMYxT+^3;97`xeIb^)c7pr~FhX{-1yPoq7}FeMz7D z7^4W@#@Hq4cbYzD<2+-~U;oyL<7J^Oe|0bAHJWS9`TRTMyh}~G7;6LScZVhk3$X?7 zEcAaq_VdyaK0kqznCln%=RjZlvNYxO2j%Z#4C6ypLJeZfL|sGX`6RY`m2rNd?mNck zml7#2zGC?MGtA4|S31U@&v+~2{Ig=c*RIiTD^6mJXLxVrS|{4=VvIlNmou*WZ^}7h zzf#osv*inMy^eE~zW=@E^0_f>Dsep*V+@J&zDEDa#F3e6b*Z0D{iC#bHqOzX^0b(T z($TcIE6&rD>%Y=(4RvFfY{>u2*__YU{%2iFVt-@eugd?Q*B07Uh~uqg-osoe9P@Sn z>+$}ScQx8HioN{#vjbzl_&;NM>26}_&e)Y`|KICZKBSHF{qsNdUVn)BmN9NG-fI}I z2j-4z_xc6K^YtZleTlO)*T3eyf_YcPYxnSZ5Z7{0Udy#ye6B>F`g~qM-5BQVLwN{e z@K^s*US()=kZZLmujO;^7?(e1`kGJMVbs6Ddt}Vv9OkLd=i0_eo1C%U_TTaO2d=-s zctiMn5957Ac`eucHPl?@D!{u~oToJ7Pi5?fV!4@v@Y+Y8Y}EhC_5b(vEETI5dlA?8 zQ8%G4bDhF3Sm*83KS1BCya!PJk+-k?%=t3@K_C8_Z$eePmGV}u7p6RxxgOy21jea} zxp*(3O&YE}%2=oAznrl*IUk>W)#uuFt{tKNHQY%1|9$0P3}2OK|61(BUm*^4xRJ5m zqRkxUzRLAOjFXzWZy0A{Y`+QXP|sh1PB_RMug5udQtnUN;`C3V{tZUmioJQS=3R^W zT3o-2_LsQUlk)w{lLz05F&w}qjQu(FztHCvJ`bgRdD@iXU4VD<5N^spC-6^xNs(}h zwlnB^mCrNi%U}CW$Q0vU!sk8o8%EogsawjJ^=a3N&x@%4@3o%Kvl%Dl#pkA6FGIWX zjF*=fN-@qT%DpJ_*QgVE(RMfGvvk-@+pnp=GxlGMeW+W_wQrg4XUe1TE$V#jrQCoq zvQqaTWB6*swXX5A<=n(Dop%0yxUamFFH_FLJic<$wk2l39~q}SZ(rG?Gif`W&x48m zGu~ww|2^84qTbgM%Ad!v8`EwJ?|!^LjCF-*`y6vFWxl?&|BZh9vMpf+ZG8QWrMR{o zH`1;bbF`-1mCr@F{!(nWje1{$(kNxJ>pq_wdmhB z_Pv$1iu# z3Vr^ezD|sT-(pDlwd);>xqv=%X!8?ob~#9VWsGB<=h{lz`KnKweX-v1os>W1dVc2H z!{-}`DQ%4V9qR7p^QYANdM@_MM*EZ0`+ICH_?(VD85#dJ-f8JGjce<<_82}(`8z%* z6Ymzs=jusSwjtZTea@Odas46c`|^1fZGK~(ALx6AHjh%jiN0wl`x?RfLF#Xbb3Df9 zU*hMX^xF_)J57B_#(ONK7rCSVYqZ1na$%x?%Wb9P2g8C7qbpb^0uz?K(a$=lb!KTE?cnYmD&)>T1*G zPs*9t6JJB|;rMwbbN|KlarF7`b&a+qd7tLm9aPqhaW>?08{QvM|6=T4l+QW<}+OT z9Y-Vo36q2uX|t6+zS>at-|L~cj>?R?k2x;UWVO!wt0fODqL$B%bgi--2cSYjrI)~e=_f< zsXrCx9TVFh<9cr1i+Hc&`W)gv%6kKI7r=tl_oRLqlptHr*v>2nY5Uvz%P9?s`mX;Yg18`0N;xGBbIc{$_Ei}M}i+LL@v zvYXin+Se?)%vHL>M;ZpP$m^VLmO2b!Uj1|9n$IIr{mkK%W+I zEzeOtLjAf}_WF0U{W!+5D%S7A3DgZDhVu9e`r?nF6ZlX6B#a@Rw`tR!_YAK0;#wWX z{eb$+ao*SY+&RX3md}||M&M@xoJ)BW{>1fhan4kXokabg^uHo2ZNjGwD8W+L-$Zj9He? ze{k&}pKHcB&d2sCo%lx|;{G>Yn@ayjm~Sw3nP`_Kwrxb&S8e9|hql8hpP^kv%J;=K zFY@_e-jf;Q2yLgaj?=h^>(3HL0SDlfDX!;!+HRuFhFBgI$7vb0?I`-qrOh11+{$|= zeSBTvv#(`bEBXHs_a<jdmFmo(hs2jSgTa$;zmgq@RTiw;=u2RdE z4a%*$x4N$C*1hFBRChHqga9un3;`11JYqqdAV8P^f!K)*q|`tlJVuAvk2zs{VGJZ- z-uGW??S0OQ@|NUCoAHcs& zIo=N3Z-VDF!2K!Dos?O>zfIWR=lNXlehkklVc&^gzfULKIp8LQeSCvm6WUEuhO zTKyIN=79TR;69%CZz1eUd7dTwt>mZQkAiaxcbV!#*b}&ajrX6D=9Pi73)~^X9;7_) zjC`LZ?uWtkTll}8=dXxgB+Zu)_JR1j#Qy_u|33cr1fIV~{0H#d0N?KdpMD<>%=GVV zz-81^49MovtyJ@4@|{#9t0v z{~G`2g70~rXDIJ+{9lLr8t(4_$M=Ev3F=tl*6%H({T|+LC;k@*|6;=L<-HK`e}nM< z0`7mp^M8Qn$D=+<`zGRkILayiONjsXlM_+2Hu500mS`F_IBk@h@c z%eenhlwEM2M*Po_|MwEE-wzOX6j=SV_<)p@HN7Yk#F{3-5X;QdJI`2FC~?|+MSbRY6P@So4~ zW&*yBvVJ@6ok;f}Zv7qs*Y|*b1de|W?tg+Gvz+2zfa~3)`F`FPYk0rFlNFx|{GR~# z)A(OYntuh%8>1Wo`Pf>TYvBDX!nPv*XQJI-A;9=OL)dRqrZd3)UCKD%`4*n<#h-qk z0n8G4z60DJi~E-X&u8QR=vv+h{&i8uKaM*8Fz|my`j=DQk0b0yqKw~-|5r)>DE?0; z@t>3KjllgP@Y|90&x!lDf%xB1rq@S)U%~sEBcIO$<_5U*JMAy-0A%h0|9q77aqzwl zm=lryVcfqQ?)T??1pn_u+6~h5N&l1J{qqPrPI~=b;;-UiV15$(zs&QSJn!WB79Rb+ zmgoJ#E&rba`&Qn+%KLM9+T@jf3poBe`F{;{`C0PR@5gw)0r$5P{w;)m18F`f>bk@G z8vf6uJQt!&9}B(@A?$CG=38<9C3*iI?^T|!td-*;{_g(*?5qWO`^Bv)S58)l2zYdNcCXIeSL!SEm4&nNJEU5#)8A=f{BAj&dpPHt^go2fuINISlM)k>?i>elp;`GTyHvueb6%0L))d zo|lo&N$}mvqu&P+{y%^{&a;49zyHYlV}O04R?Z)ZxVD27kCETc0`qD3zm$CS`%G~E zF5%xu_>X{Zo%DV3`EbJf0ppOgGyVR^!pU>elqaC6mTC7%nuOuQ#|SSFNpu~@P8k9{RU~j z9()_P?*nKDd>=~K_w$Sb?`y#Gk;MOZ;*SFR$+%DQ{vW`Wxb^#JV79=08)5qW3jW7{ z8S{KO&%5yJ_r1Iy2WAf3Ka2lG0sjWlE>Z5k6J@^$-W|&M=cLu|D}nzsU^fYS9``2# zcZ|6A;Q#2T&#!}{{`>Iozah%_w}|}rq&v*}hX@<+ycS$X341@D4+G!l^LzmLJjMH8 zQ`YBrZ{q(2@^}t^8~+F5ei`W=A^dxBzk~O`A^nFC&&z(_8F~K_@6Q6}rG)-L#QiC7 zKSS8J@&2O-dmi^g;7Pw7()|nk9|*z^Ca?GB`DvcNPS`)?{huhuM*;Iu;Q558pVIzA zo{uBV9|HGeAp34`|6LyaK7sHTk^bNC==UgTZ;Ln&p`20nuL1Ww?vLTUL4FFpFI5ot zhZFYQ;Jdq)|1W~;e&YU!@UJDEeoqI!yNUaJ!u6ZyeS$K41@3q8{$}2X3A>?4eqR%C zUmWH9X7c*ak@v%a?*qwq814_neFB)*0P{5Id*uDcwR*i2_gjH|zXY@C8C(8QE zy#Ivf9P!sF!<%`&6#rL7{3_-72=e(X@_Ur`I*)$q;JrZH5#EP^{cE_tBjWxb^89M@ zKMlT*Chj`;FB1PQ-oH%z#|G@T690OhpXT{a@ODV^)sbHLyg%XJMA*v-duJ{DTL??P zUj*l81E*gXcl!N@aDM^;w?&^_1n#Zm{Q;4`U|&Pnhfs$v3;f@Q|Hmlve+`_1`9AXd zsEGe6!oN|0{C)+v|3*H)#QP5XkMfMk>l4BESCPl-alaqW7U{kZxR>JA?;3EQ49usx zm%DDE>-c{&{C5L)9{=s&|0u%VLE4|M)mvbv!~Z65e>3pk9clIYE5(sUzdks=6WS3 z|0Vv5Jbyu+#|e8I?#CkEQ-taF_HF19*+%4SteG++`C+sVDKS=mHDF4++ z?-2ffj`aHdpFHP?U*h>Yz<&(sz7SlG@z(DIaPI=gHs$zZ4=TO{|A!I(dY990xc@B5`c(n%sr>(!MA}QleIIE)1Kj#O#dDeG?-2en z^86;=zZL1fn)d_1{%WLsX@tKN|CjN+1^nx|Jc<7)-d_*=F9Y-&z`h~!>k!_Jw4V;#-z48}=dIsK;4kC<54E~{MlBzQDvHko z?&o+uCjvf&^vmGAH~c?~`!eYs3_Ne8J_|fw5&8UTg!h4achq}_xK(iO@aVUR|I>l{ zcM<<`!v7NgWzxJK&v!-}eI{_1i2DJ;{(IC>>A#!s-zNMOze-L=z&ie}m!0+pT zS&6cE2;%_Qufp>;0{@tL{5D~Sc=Y=f;9o-A8s++HDa+?8HRB(J5CL&-+P-6-Z*g?Wi2|d)r6K&0eQ9 z>Xa)~skJgLN86)uXQOPjH|Qmjx9GUCyIO7!CS|{)K`lyHw{~*><`9{V%(yM=unR|ICW^bIUFb(h6&J&i}eZfOCH7n zEu$Xw|K6`&xLP+8xut$>mrN02N#iBd|MF;g!6<|WmX{ephQT7Ee;F;E^3YxPtQ`(0 z+F`YOWkPrbyD}M#2OG3Vr`L`w$~L{#?M0$1gEm#`l=OHC84f0!;qHR7<}6nkpAVi} zRI`t$x)nz-&4}{cDr0P{X1lFF=yz^AQeF|#(m=0v8L!J7%?tX_P;9jN%%WlP)vMlb zZO{=0HQ4NU-D-v19E_l{xsW4>!^&E~kC=YtxO0tevGh!&@gz0EXkxQub<*o?GXXU- zC~mLC)JyOharmGtr^3;-K}wQ$B%#N@;pFLh)Cmiwwnj6M^R!9}m}Lvs!7up|2EYi%>g#!WLQ(JD)s zx+g%AH|lq2ba=X?5i=?~ZKjsSj_{1?g&)Pp_QC1VQ}t_()}ETJR~|asw}ysd;fry? zwCHuTZ2AbZ85!};vXmDeHa{f7`=w`7l7Twz_Mp@nRlU-Bt#YXry=wh1-{!E(nmq1m zs1oU`ue)uLCRFn!=mEZQcRXoBe!_90#CcWh#>tHVxqF_YdIQo5Ypf351FX!BuXBx6 zVB|{}@#P4jRyt+t)5Dvaz4%`~5W|)gTTH-cfCiwq-fyQHaX0emB@7c*+4F}Ts% zyuUa(m13mfqP*b#HbyiASmgDAbpIRsOJWavl9elKtv+0g6^(S_>fj1$DMbQHu>=tP zT1J*Fv~jf3>1*8%mkpZHCTntO1e@Sd_X-P%z36GRc5!lCijx_`8g*2M+B#ltKt@Gf zgJK?`EVLedMi?Z2)MdJ=U83O2oiS`)-zrdX1FE$JfqW`ATVWJ^`qH_jbEi+9FVo`C zC{zY}^yH=abMp`G3uW0o^6>n{N9QXzF&JfMI2@?H@`zZ&H!y@U^HF1m=n~DNtBg`j z6nL)kp{1pTa?zxNdK#AXAtMtuvxNFtDu(w~Yh}CK=&)`PWhYuq2Ulp~Lu;+k+Tj}iOw}@Cw7Cv$AfBqOV@GHkl4Pt1xG4rLT`$@IcnaiL5|vah8``y$KB) zK2}_l5ROSCIk^Qf+`3X;gqJr5G~QsZ%;m7TKya$H-078P`z%7VKRo~1fNGwiz8bfE z7wI4q9Sai?@3(Q|PnRHrI#%!pgjdl5dQ7A7yVsf?f|KX|G& zW+-Zy)85?`1eXrvuw5QP8Wh^sAouZw}l@1g5D&xv0rB5zr3^jzUAIi1XR>ve7 zC!sc}G$ka)#gA?v9-2(c;rW0KS?8WN$jgUY~K`5@E>zqg83- zUY9|~qH7C6dtm*uhHTur(z3!qQ#X*w7y?tUS0th+UoCD{K>2(aYW3)G<)+7uR;aug-3N}C8cSLr>nHoo|gOXm?(t^_!fUY&-IR`LJB?UkAKkBZZSp7Il4 ziBswve;KhindbChW7(t$Un$gNHXy4B6-Cy3CY3`i%1Yq@at5WTT;+Islh#ZT2D54tV~VRBIa>*2O+;?^d|9qZcEOek zdzB`jnk?%Sa?vlzHzC2K^eK2H_k`n3;fXBd3~f@2S*V5B>I_CHJQS?AsE@&f7Nne) z%p8&GAT(2~blnlm$K2eUhJ82n7#<+aJo7Y+}7)@`kRDTs@H%tuX-9Qlm@z83X z(?)Q|1dbeP3+v2WGf0x?oCj{PWO-{;#o7(QROrHZRe+P8vt+QVrdt4eEof!131yiI zGmdC>pt7zfchI@g*JfWm>HyWqt)+^Q`|$p#-y}iQvh~`EIdO8ZJ8E`1#%52#nejoR zwQe1!t@=~R;3`gAcf>1{8p$WpX;jx>%B5KOQ?xH~k6t)OL4)q?j)EuT2&6ot_+90{T(WS?TNY@{RkJ-51*)Gn^ z6=zOC64eqe=9m}OXtlM{QCzLw#ToXI&LDG=F0ZI(R1y740z?o$5Gyd2l^9LUxS=#Q z4(2nc?oPzQuo!>nv5-;ZRfVcsvV+|!M7Sw$xj7j|4%Ub5&hq3+1>@?rgsRyJfuF$K z7AeSD#Kr-`ob`I6!q{l627HX1v{8~Xt?`XH%vQtf%c_kkq*<#`%NW}n?W42uY70RE z&8RA;%{3sb{g7;|_W>GexSWx8Q2)dP*^cEI3Dz*zESa$jn%W>4PswZ}1_I7rPEKIG#R#!9Nml}azU*2?_(|K} zODIy)8u)Ft;dPtK(CB+iAGIu%oNMUXjA-8imio@r1(wc47FUc)5Z2aGo37stOlv|d zD=gOs$o~nYJm?aooZlVf8V5;f;`_vxYBd2)!c%%DjyHl$$}(mBbOgIeoxb+stT#>m z^64o*yGQzuGCN+Ockr;Xl~qomwi0)eH|z`nNkfqxX^j03cV2*|{5hqqND=9kR9P}H zu#zE#n#!z^x2qB&rAxZjHkN#92Q;8;w<)t%@cNrQ^y;)P8`4t#XgeH@o9P`)o6CB{ zf{${iQ2=q2>Jv0a$s|FYY#EzECRW2nVDhN@1le{GzO{^WS>7I@>g`7$jSeH9wp4~~ zHZmxl@%3UQ)OefN7o1^>2qm`7VRJ$cYr94@w=1}8^{s`TsK6x|a zhVkw~F&7H6Gqy+DB&!yr@-oo16{wCi(}TpW6Vqjd)rwS{={|Vu(X|1}kMo1UIxFs( zZtF@P9VGh00Js9hz!Jdq2cjW1YmJJ~!g=HVb~Y|WV92{*E6!!qLeTHg>#mAu z^mOb?%T&TfhDbur!&7PD#|!~u0TF>Fq)T^aT*?b=jFgZrsYWx^0i1)$T(8NHilVx~jW=LV+ zViC5lGp6hU0>5Q9W*R>xE-k63ZDo$!uYSNkH&DGn>g*&%GLPI#yNnumhBF@5GHY ze!7uoB|CWY?nTbt5*Bf9m@Ot_MMuhH_MGQCN|?*(P86Drx8Q@ee!_)f+FD9N5!Zn25? z#B(bxEDI`)a*1^|Vvt4ipiPlew00`^pd)NLnb}bVEv!*9^bIy0#o{PQE{)khRTEWX zJSjX61fy~~?cBGM_RFS1u?Nw=S>hO`?^OW;#|tb$YO>mX?Tpp^X7$KeC`G@LaP!bf zG8iL^ZbG5E37?CEnmVc(FS2i{QY2=yAh%a&TrqF_RNgYlIBJnn;D`$i_E-sKfqC>1 zlckI~F>0Q8aEadtXNc>VJGm-iZzQu~Dzm~Pu>OdBXn;)8yBYA973T$)r^g=7P%rk}BtRd1B%lEft&Agq;)?d)$z$V(;(hSxS6Zi=mm z-CJe9>0*kMS;bmx7QyA{7lg?O)l|6>@8#^kO=~rxFn2$WRngkxZtmCA42|XxHrXUL z4aglA&fI&4WVt&QA3Ax*T;eqLtf=Fbt>OW2pFF$hxY<=XFm4Rp9ycxVex+9B<_8ND z!!wY-^7RKNtN7h@GTCkyInPy|iq6}?w=g_h9bx=lMyoJ4IYNJiP^>8!d|ie~Lhf|9 z>s|8@-!%fJ_TOOdnz9S3a-|0?GoMx>uv#8r{y!#Ni88~;RzXj@aAbbZO z5Hrx(kk}P|vq2H;=uMjL9EvvMw|DjB?(_>&wi358We$Mt;BB-Une(pG<-5tEpluX3 zZCa!C>2W9H1RwEj?aQ#7O?hd28O9~HD>Yt%o{kounqc>3^fCgmVAFZp_UCk9eabZj zvWzQ0QUP`qb~;|A^{`tk^g$5KCPTTb1MJPLo=F*yV|Mjcj@jK?xnrWW*a3z6vn}!R zqRd>~1R-LR`E2N5ZA~J~PLIs)=RIN@-8{RZRmw2O%SFvhb^?jkG*YxzWN>&xwvDTe zz_~b(bo14CDysuv+rL&mF>_%N0Fq!a=%-<)KuHQRnKCBM>v^;2SjCJ;%r3-Uh+&AS zSQoW_HLRtbHBS7Nig4k8I+s05@;+cYZ-V>1Vmohw`+pkSSe070BpNAS zNKd8}c<=E#1#xTTn@(IK!h7r`G*dKYU7BFAQtn;kCcv$gcq%Ogj*$JBX!<&st0-fw zm!~4i2X)r^=DQZVQI_YRJ1;CDm5|b5{J0lpPf}wx9Ubl0!5tiH+ipFsR2$oTOddZZ z)x9pU*t( zW9R`!r;4w$&Ub7(bJz^+!RwTX3646FTS-mLuVX=e}ho27D* zRQ+N~GmL>vr@McF-v{g9>~g&ibT9iM{-3r2=1gbvn|nn!7|sLr{S^KNf}0G0+5-As zOv9UDxut2i2eN}r!&>6{G&oQ*?veK3Em+U-pi`*1-oF=pZ~#QN)D3&%J6KQLG<}^W zCg7Q5F-1B#tT*yax@PZ$FRXVCE`#N{or=(u;&XJehZ@<{DpN~jgB5!(M#jzY+|t0< z6Wzha#m$l*cvv(L)knpFCi|YLZ!)I#On1;BwM*rZ2ScUu$U(-)nL+H-*vJv(p?BHj-P*82EwOMUYjJn>2<4FC;@j6_jzBYy*SkGdUgWF;`}o@#0+hfSdEp0*T#f zTh!RInF;Bfb<(z2ifT{&h#QyaQYqJ#$o$WA3@|iKL|lx(YcwCZqOx?iD+IC)X|O!m zG_c#p5|?d!@kI*{EtI|P^6M^~*W^@)-`PSMnW_4JogQ+l)p^_aFauUHtX~7<@hXaK z(5_%o*~cb2g2UL=60(_s&0WNVYRe-001?)V>XLdqB8dS|!jMWLKn)Vk;P8#dYX%v! z-wg5wjIcP|<5}n=3O87}N7Fc*X#ik&sGj$CElvwi_G>Gc-lNdMB|CJ5*t_HuSaMUP zYn!@*Ny9!ahw~5$a7{M9ZWN818!;55i!s#G$(>rzW5z8`HDx$tJzeeKyJ`Vo&6UKrtQ+%H{5rhQFsSEf3vS-h2G`!>0~=oSzMgGB%5KmGen7wIh$p$14{Mte1Ps<3MIRbjr4PbGF4qvI1e5T-e6#5G?t zqB3Fq5yvE*@X7$t57ed-%XFCZPGAC`5wTp{MpV9!%t1x}wFzeDYodM%Gjbjjipw6j zRDeibTW0@V8KVsBG#oEB5JCW1Y_JT)Hxbd%JXXfK5v~ zZF5AM5an?;x!ZBy(Q$74=w4al{twb~*wX&Tc@|L={2i>{Z4U}J=Q9;F*`R2H;Z<%k za1AzBZf=@gwNb|M5I2z+m%$*C?Mzr(n_CBdO!>V}V0q}1m9ncxMDKwir_}WCMDYL@ z4VH%(_BwxZ*!s-Fbp4SI3+4-24U+SwoSt(CcWYhk6c5fpd>)*;z(3B)o!2EpBXeG$ zBH2+c$DKF=f}F(hBL^_rs0f{4uu~Tvju%IV+Z;Fp9PfNNrTbwqR+$PBi%;#BeVoP_ zyN5GIiQXBZc#z&Zr&CFCc>dw=6Cy2bwOizd&W!o+Y8db9z`^NJd!IIlU_LzENy#)#lXnetF;>&jt=N+BDqYttd!ehT53k{y|J zj6vI**Ft(!hjTTo4(>5(8h7n;J@pc8c(LDG2;YK?|^bj|$6%Sb_1u9jzYEQu{sR_&9g&!>Z6aA&r$1G|_+f}t)s_p8Trd84kr zikwvBbTCV_{j?v>Di3McQcP}2K0H@e=Pu2pP>gZ6Kk3}BLM$#K6ngp8X*3fvC&WyO zpxZO;#>kszx_>@)mmt@EDYF&bH3o79EQj1MH;dcuuJ~${viDtj;Nff9Dl2<-Tp`Ml zU`=yIg|6Sz!8+gn>a^i+s)&3JpTXc47N(mo#RTbiEuFwoUefClk#uJML~%|`lm9Ol z#adZF$vtGaOe}I927bf?A*VVZsHTEIAnS7q&xMCOkA&kcS#WyT-K8C{mf5lT(Fz5H z;0i})-b^Vm;<7H=O}DlIx5Aj!Ob|Y25saL6Dv?j4N~cZfA6-=nUfp@lp;OM0a4QEB2c`!Zgt@N~WBtV8 zMX4Ed-MWZ>s8;e&ioQhqK>z8E0tsLkzjAmkNeoAXtgk{24OMd(h+!%ZZLV$3!7U#) z4zl9{@QLzO-TOw9_5d^G@>plQatx?@kF_>AF4?(D9wqtIR~_rxz3=5olq?zomeKCw zsFqdvkt`=2a?qvm-TSEawa5LmH>B-x8;h?lj|;W6As~Y2_BSWv6npeeMbn6JM_qDc z;-3Q&$*%?I`0yyFCHs8CTLwz2K?5FG3#?&ihE5{ z0Lf46Z@MO?=GF;xTP}bRJ}re>ENp$4hSL-kr@SvD>sC(3J^bhT%pq=HlR_liwiw}_ ztgdqTCHOQsOg4uIYZN7|M3UwVHb5hBoSkia7$KjiHHwpt*V?_OIjY;2e5=bT733G? zWS3frK(fycHKG+Ky-k{A8t8UJ5!WzMa_X8cZB%g1CR}k7iSkGxNzQ1D&J-DHqjSE* zpeh(#g?RZ;PZvMaVM*n8j^Th>p>{X1*x(~6ffS^}PEaHI*yS#2hZJxB?6z&VW(7cN z#t@C_{(1#caQzphrj5cw$LS8&+vkeK9sUUK63Gba})5^6DXMUBjz4*!}2 zS)9jk^E?*{O|*a{2P6Sc zbF4xpIHw&R(<4|oJ;Uvrarl}x&T$WuBI zs=H}6)zI$l;XWShM_gj9+)8TU!D2Uj)?mKmnNS;%Mvj%vFHcPlIP&v$ae{H-<{T-6 zg(hC<2n#J~*YBL?3kQ-$T^(?q6V1i>4mq`p^W6QxWS12qB@9ouMt064z7fItSg8^5 zt}9IU=VcOYelHO*6bP2Z{>jQjot&1V-wonl{ zn*g2!IP-Z%I&FkYx8BB;q!ew_0wjbhg17FgJa0!4YFuQ5#I(kDr4%WYL-!Y0qv}d( z1u%9VVDLdg!jqH&?&W(b!|t+l((czl&9H&UU+F&Fd^4{4l#6aJ6dZslU~Q%5?iCl7 zPCdZCrAx(y7A4TX687BQHZiixNWb}PeEG#q^2ZHoq)|`B%lJR^1*7Em6(al0;Mz5V z6^N-R69`&9`koIcINs)Udd;vaQXgbMFP`rrrNqIExt2Xc+FG7{-NaD@^5o9|ahqP{ z_tW!DENS0YgCh{x#-ACc=KxW^jK>LJ!^jxE9JraDB|$vG#qUZ9(3h+9lC2FjUE+B!-&aGAnhK2)nJc5sMIjnc(gm zrB~3QhFbX(|G<5&Rb^A)p3u|Ptt63LOqdFZ4Ks?8V`}KHk?vYtJ1>`b4Sjw{ZeMqB z&B>cCr#B~yF#NM|4vbE}*f}T>fc03*t7DXAUjVyCFr7o#l}BKSMRTuc=U;ru-3!LF z_FkVE#Y`Hvv<&RR;ujlQuwRm=Jv{UJUYn_K5{aZKL{@Yawl2x3AiRU1;w%*iY@!AX zd|-{cHFU;y?AgNg*jkYktd#`}$1Zp;>h1ljsdufrG1*9OF`ZbsLX%iy>GX)(X1UcW z>xG2&tlF(Q?R)9z8Zq%Mq4JDL;dBew^sY4L5z(X?SjAGxFq&is9Sk7z7axi;Py4kv?&SN#hYnN*|xo)m_bsuEN z^zf1vgZD|9Y*Z{jD`Kz$=Q3GERFvj?SzOPcb} zsA&SFo4q2}8KN1}7oG9|2*>Oot=4)S)ru*8r(-jO!oCvfDdJ-Qbya{|NLF2nd zj*72rO;87N(XKR8&SbcH4E-nmCl5l*HV0JFeGn?Y{{EGM3($%A1?fo2Ev&OI4Vz_Jd;E9;iv?m{%PXZwT9e| zmjUFHI>u#cg?mlLYuwpuK4nvFPvSw3*ji;SLCV}0#6EfHqR0bC5k%<0wyrofp?toW zKX$U1zj*1w$@9FH^p%gLVxF(23`V?Q9QCh!$w`h!n9H{x%vtT1S=0&pKSFazB0nyi z-nO>Gd_t0I^dW$%NOFv0#v5?4HFr|?HHKgVAXbsR0o;b9K7{M(YdJe%h&fKBqeNk^ zwy{_AaInRe3>HF-i^Fnq6AS#nYQpG~G(*Ik^$e;|bO34!bS3=1iYytLP$x^HD+d+x& z#3qrs#0XbvI0Z@6Pm7af;~}f|Wupwx*O1O%S23)XFl+QOWC{`IB3>pkXlzR5^bDdX zg6?LS#V=*+PtwF5r#oSzHo_nHswzccZFSv1s9(ixi-|!b3JyQJ8p9;^g=&o@9u*r4q{*ZVHmLrNT&0S(o(e%UpE?Or=`87!np2Gj6GeJNaoO^dKuyeF6ogs&`!k z(M)Ky^z8%H(gUqj;hZrpcEyAYSVQ0!v)X;zyYuvKv%o}!Zg{SIJsW=7PP1DUTfLQu zSUAnGE=FX~24-3v`7D%;8Js29Mo;^f5KXC~xg@oQ&$Cck*BcTh5&&&E$LC9F9Pz71 zVRGvYi(AM3(tNUkt1U5x1y-GU*(P}|kOSBTQP7XtIF+KYQDWCxp_XgpX)*|VzxH)2 zqbqKPRx7`>n#c&yN`3IzJB$`Y-5Ttczg%YECrV|&#jekFnURS zaYgr)n};iCOvqRN>Ev?lqkk5ksDweUXan36`gdpMO1E^^bk#7|#CJ#?E#-RPi0|6Y zQ3E1Y`UGL#0|CU+r;)BT!UU*YST@)c?qYCQl_*1M#G28Hk40+l1`o>I_Vt7}$-$P1 zZ+1q-S8ZoOFh=h*9A#mv(UF2y2Yf$mSPy}hW$)NSjB6FJwuu92-?5YDU_>SmNfAG|qGSTaXA(1=mIGpqaylzxw_02#W*ItBt`^rt`{d724VJE+ zLv@$`sJJ-CANyDrW$&o(e=r*^UMkpxxVT80r|;ceTrV#6`78Ycbht1ThT4mh_gPPn zYG}kkZq_YZ>tm&|kWgCk?M=S9plff*Uyv@-o70Jr2#`l{(Uk-~-FI!Ygm?xcMOC^~ zc{8yI<%C7_`3$l<8hvR&Z2V$gY0j#bFY?`ki?T3S9AhgshN(jZYXP~p<)dG*zr^Ks z4VA0R29G(iydaau>=imObop(|(Cwqr4ozLOZ;iZA8@Lwc+4=xEK0H%v z$##PzVH0d7Ef-m(2-APjX(VBpOm!%@1sSb&H$hlyXh?TAy6geqgVHf~gZt$o^x~p@ z?Q&tRSm3*y9ro4Hxyl?3@&fUe4z!eRaCYp51jK#fwS%}vw2lrKdgk0r{0?9_>6{W0y9tJ#EJ%Oioz?Z;PHF?QRj3DS43^ETH zKutj|SLW6v3!6|8ZQhfTegu)MisU3HUNti3;WZs|1R&mq)n=ASlfyeEnVsa&x+I&pBma8@iwASg4_-|l_`xU;owMvZ)PZYa_VePlnewb7 zO9Ecx;1ZED&1 zgoQP6Z}vZQ{>6fpV`nR7O57H&5mbIs$^Jgo-u5&s%f&)4xMvcBn*tKY+xS|61d2!k zyCl7ob_EpTpWQkyl7_b<^F37kD-0PF(Iv+h5PtY_6C5M;h_4ICYxl{A0MD4uDXFY1 zfHYBRj3tY~*wX3V+|*&ljaw)`{b5ZPGmGHU0R4G8AQ%>8nC zmN}WhI;mMHd$kS7T)8#rY5S7dhV4i&Em|<5r2au?vv*a#S3Aov?)F(cts44VHn(W# zJP390qJ8E=7cZPWbMDe-ADg*9)4*#2W16#zj@Nc{jmwthf_;Wv*0y4n?FivUwINR+ z-_$_{Fh#J8GdSKkzJu?=bM{SN#$gXyU*2ULtfNt4_#Yh)j%qQg&=DsAMwMHZ$q5~i zhN~5VRSxdBek39_jeV6+>0nuG*@o%V9cw5Q+Ni`N^}1@C;`Pw{=Qhm=okg^HU`a`* zp`Mb0N$8tt&Hjp#Q9p57z?f}QE>sooBSU0idW-}wFXSN~N~dJo-rhYNc+wEG?(qS| zh+%WnE>!l#K#4J4yu=rAT5U6D#AsuTK77G$wTl<*o_3lvu+ruS_d71j(7S)-#R(`h zKiTWzP*bhxXkFE(t>Ey7pfVFyB*R2)*R|}haetXR;6;hYT44!2jaVCbKW&-AZ6q#1wQ z251n3!xo{0m}n#siea{n+3G8fYrwqX_>p_=x%`42*+k~W{l-HM%VBGm~q9#!^pN(j-=3qMc3%oq~y!leXcmxS0Tj8%cPrcLr@_9 zLRof@9W?NWsJaRr-!Eg#Yej+))gatJ46MFwj>pNVWcHMTO0O7?WbN{aW7 zsxG*0Nb^ASp{V&&=T;C?9qeCRv1#nH&nA|a5DJ|NsR<-^Cd;Wlz`*yqmNgmhGh3|8 zDu^8{$c{9d2?(QH9Cb}Z@`~&WXv^#4Jb_u9&<#X11L9iE9G+DSn=zjQK8Krf-<6a( z5ktPaYPyXy_#;(fJThbosAX&79mUdH1I0I82#}sq2~A(=TX1zoDo0i9lL6)MI)4~g ze4Vd(cJp2ysTQnELSUq3KrZLU&P{*Y&viR(E{nI+f&D9IByzO*f^H zXFH&#kO7L5P1f}TZ6;_)yC_Xe3SgBpMvU_toVaB@}XPx2ZGvY0%D1m>lja1q%`v0xvCwErv>SXt|Pm@)7b zWr3zFXar^`vy>?BBodP638v%jQ6$|sGxqL%BaiPF`||xFU)e}1;u8fhI>gqo~}+35Uo>VRqejJnRmrCnt3|5 zk>9S!Mq5qCHkx@lGBxvSC#*IaqK7y%d8xRxxTq&tN?+0!TjB2f`*M(InGA79!zO1g zFNr(h|4N6mDX78IGNB+Q&gCvTBX^pB;kqxD77q*ZSNBvLN+UFu{Ce1ai+jKsN1XC< z_BfS*RTX`f3(gL0_LuH7nO{ymUS-L}5aVdSP+d}RO03lRjIHnK8(S!HVWOuoyy8t` z!+*~l?NH@3E($2k!Z1@D1whKy(%ZTxdrVvm2-b0yNp1DAyPCpGbPEr*!IxyMZI+sH znki0NeUg8gz7x(C%@E-e{7_r?&PyH9Pymw(Pz|gPd&Vo)aRyIy?@EgDz?ve#Q#Q3Y zP2lwL#%$o`Di!!ENU|v{jk8k^fZYt$1F3hJmyY8omk=Q#^cuN*6h;3y6;30Y%;-(z+8H zaB`M>SzH=i#X0Fq%qte>_&Yzx7t;8~L4g3Khn;+V4AssU$m_y-c9n;2KWt!TB6!F& zmJuKew|am}U?Yl3M`OQ&h!6A8GgCv?bS_?)Uoa7R!iLdyq1}A@=Z5$0q&OQ@bhb0F zo&Pf-n~RCA!Q>M;X$B=T0mrz6nOjmea%9CKEi4vT50D9$xgKrx*4-6~T??JcG7TGx zqklM|j-uCm)EO>&lkr~`YBi+GyUo6YnZYVl#js-Nt8=QlTv4zhnzVi+D!ZU z#ig?s3Xb>dnGD5iEV5f`{}4_1{H8mdgFkfp=y1L;L>^yMu5I*a9UXoaiISsTETUa$ zb5ggq{kmwo{u*#Sqi>6xI$5E__KH1~@Gve#YFoWc)aHDplmpMG@pUs4WLgA4O`TH4 z>7>QP%Q@Q)1->+oexFYaZKaK==v> z@q9t3oFhW)F{W}q028GXf_~fq%mzk{1q^ELeOWY0~qr$)q~95mjf1dHU`CALvvnxkHLYAi6eOpy9z~qziP@IMSF$ za<|aojF_J6RLWe;c2YK4*B}vHbRc2%VNE^Y`n75{_#7VEI;~Ihj@k2dgtl>!%qr2@ zG=l9SlodD2LkhidGw^jdKKrt7>q7F#AG+!)Y)m$uMOx!zBEcV%xUekWIB$Y+(wP3it zX=26(K@?iDoaF*A(H`wIFLLC1`^DussXX+pvTo?5ko`L^RxG5Bf58-*Gfx6%jBJcS zEzCM!<4<;fc>eUc7Q=jLpqNLeTy5s~4s@VW=!I#^XV0Y`mF$v<(Lr>7>2P1T zY{({$57uJQjw)j^u3I5&Q@mJYanqTtc2r4H(h7S{-yJa;i7rW(A2`c9Qs)NgU+jnTV5&siU}a(i4m4>t`HtwPw20* z3qt4?-8jaKc2TDAX|oF-hBb@hZ731j2UvfJ6o%C)Z|!a^y2X2X+iphnMdFC9LREUG z9aueG6{EqT`5!dQKdP6Y{ODV0h;8kWp>&0$9_{I8$JM__H-*}=*KqNbeb?vfW`T>f zpiEOAuxmg{HHjfi3NwvC((UEISmZ3{s^Cd?niE6e(sf<=dcuUm*0)ApVhZE#j)Xx$ z3^&vAO@-MhhCmizcJjvOfe}~NY|cmrd4fc9)Npeah+DHYlckf4jSM5u_3pPbKI>;G zQsl7us?p4N418uL%+2bR^DbyYde}@rW^lbQ(Sfo0dVy!wJpp1plFV&qBHF7~DgCZm zr5kCQ<%)ZKnt@4;F;$0Hja>mHGE%Q#W#Z>Uvl&Zido2he25K_Q8Lf4p8};N+6U}6r z#I*Fg;u@UPbi$F7!6rs$-=_K|c)D4ToB-T!OeSt{uXa!IyV{*KIqdAI6gnP8Q?~O{ zIXp<#E%iA~jGxN2w;eoOob(B`vp|cJP1CL{!tB9LB{p9&nRc&@VHUfPm1md$2uBqG zVHkEe2+vxX#-s>M5q2>C!dR6v_Tly=hf>NokB&T=gtyf$2U9VY8;FOiF3QO1OkXY~ zO(4p8tp-zK_BRZHxCxfh*=+#36G<;+8k&@%Dk7QK7LHgI2?P!ip->0&bHh-@3oRXc zZLxHEf!s_#Yi`8#cCoZ{k>}DmYHA z?3hh z7+zQlZ{nym<$>DE#zf~Py=oQ^uD{cz-*9@~KFR*Xa$>s1 zB^B;<(@S4mb zG7D+a^cTrwnUh1D0R&vT4nUW(=)Nk`gIzKf(g-Yx?-e{3$T)#%P((EC=zR@m6&~&ECYQ=i z`)aRhm6!^zzWO%V@0~by%=rf={=>PE37p6l+@TFya@&26Y)Ywwfw;u@;j50d?$c3w z`b4!6JB87+tA1)NuFA^j76@Mo8@g4y5X`d`spf=GJtuqz3AuF>TBr2OF zu|Z&zeyrsOJpxK}yMjZN436=L)!6Mk+|Empt85oxeTQmL0=sFXX;?&0vsXuc81!^T zi<1o#!O7-MI(zipjk0+UZekjMy-)uNhTC?WgfU{*e~La2S(%w((aWBIJ)xsE2A003Tot9WL zD9Q?+m=Taz@M8Ln2G8DmmkG1!w0cql_LZuy+ zB0e?wRfr+h?P1av#>!4`qI5GMq)5^h_e>bm0;%;ft)z9DXfjBWKKDnY67LT&h9DcQ zyE&LszMH|(fH4PWLYn44b-X=YpUc&^eV4}kK<56*ToLU3-)x$U*_gBavFzQz8Oxqc zmm&6Vx(3)jP1k^Pdb@wwmF@vH_oqFv(35-WhRo}aXnqX2`%o8eTD zEHtcfji^~ebs@^)C)GD5IYU(;dU56P>{e*xw$A{s!QF%?IX9|i(^6P(3Ql<2_iWQK zb(PbaH7~Lz0_Zw&m3ni#ep(PQL(9s26K60*PN{%Q&r=3F-lqNw=O)mmHYq}1fvD*H$?qlIn5D7r?63Y2&^ zJ1(Y6uxK}3rtVyq@ij0i`gVpSG{7ZeA@7Oxs4k{;rUrxSB$5TDAxHAXEw@&NT&s*e zvOVBqb%w}3AXeR<&Q$NUh9{b|h4TnB~P(D*C1_ zM&CVmO)a#6I`q)o=6J{fmgyGu;?!*vZ>>Bb_PwyegaHP zmW)dHU>UUvqX4oZ-ATQQspS}pb|*de(!V~MN`u(Oge)l7K{sxl2FuzH?U~-U;5HbS zQV+z}fTZL&SX(*03R_#TK=js(j>`?zfY(^AS4TaDG%bBf)p4WE>-60Fps^Nx-@uP` zjpp`ju$mZj>+NL=>2CD_MmF~O9-9tXzh$aGzsErx-L!<^$iufE3S5doxoT><2xZo4 zX|X{yOC~bfI9AasG^iXU@d+KHnKd)6+-4V!nmU!_5F*x)s(~_fV>1bA`QCDFxx$ht zNM*IQWVODZQ1`lqsVarAvyCG1nncx6qO@c?xEsQthtZK#y2Ez}M4;_vO(kbidSh&Q z5;yyjGRayZ%$^)3lr=selrNPU3eZ-QFol#f%0eq*?pS2TMX~gWm&hW~#AX#E5=EVQ z2)fWNpU{1ml-rD}ZCKRjmUpeLBJqxMZ7>U>>53a;=bew8SrA@7kH3A@(L zkA$$q`8fi5fZp)5Qc!@GeyxlqgJDu*nj01Et>I%XnZhb0?hJAF7`~u#*?2io^V_iILk_4{YoWCESoQT< zwzQVHwJ63*1?OWd zsD6$y%P~fgtp#dwOW?DDf})NeTP~f)2^&~_m9qhaPTP(2nsASMoSH}AVT0!$Ds>NE zS(<_Uaf?cc^3cw@w!k)32UHtJWow(}LO@l^0_0hjzC<`oXZo&!lQb*gWWBHJ7n~3l zOYpB9zDt9(TIGb*!(QF#Ym@Rp`*Q-3JM-!;SR5UsF4;;hacu#6HNMNeq5JC?(xTiZ zlNC$aCz^D8s_I0=l1#&(`ntgZ8Y&Ccv~^)yHF58q(S9S&6yiWh=88w=AD+MX=zJkE zz$4mojLD(HAbiiJcA+R7Eks}T~`utu15@yQ<{{>^)3LoXd zVsaZ+-p%ApN}@ob#;a#RCt1<$GOEf+&tOy!-OSOop4`rXTF;~MnkJ9fURAsx&|LAu z#fct@IGj5pi+DNCK0BHKlbD)f#a0|+So%(wYLF4Qz@~jN0jVfbd@(;W1VLVpA%kuR zv5l|mJ%Yef8y`Bdyy)8!ig|+s*+ar^=Rc}R>jNmh2v*+lhEM)<-S1_(_B&8Z$Nv!tX;PNPhGO!L<+58CdECn{`-w@gX`74+H6;%gQb%~jnEUc&+y?ZA@?M@RF3+F#)!;JvM;UnYHgmx2@TD?) z+m)-_(swvmEy8|~q^ueCU&BYddU4q|#r5V;Y#fNWtmQ}leDKtq(f*@aP`G2kwp2dK z%$X=jGhqsiw7vuAIP-3xd&7J>vGz!p`T`qqjq?`atwHHDMtJ>lo0McE)ACXA=*dg- z=jI21f{T}BUHV#G0 z0#1e_v(Q9!P2;9%a*L?KZtc;02~vUcG@_v1a07a`^>C-77|=&`CSU*9_j}a8cKT?i z#|nh0#vqN~QkS{R4lb3`Y1gI|k4hwFZDaYAH7;}hw(ZX7HqH2vFjm(cjr^Plo1$wS zK9q?TT6LXhew!Ndik4p!=_ZiTm_{_1GH?Mmv0e3`Byn1p5IW_vCUg@BD3;x8Q1L}a za_P|7g?=gWOZAE>G08h4K6AsNMZO0mTN+wuzM|IZP?b*^*Y8IDUy!|>EAS7+{V&Kp zsM!CXIS&|e`>@)N>f7*z{r4kF?u1>D1{a|Y@yLU&p{dnbZmHEcRTZ4}qg}ph%A%HL zSNFOO*gWbVZ}9uqFO3oV+lm1<;VI zZa3g=6%O&}T(Q229cA7xTfgd{iI;MYill|ripiAG9Tg^y%2w(sH#hhcP16M`!D=Ih zNacx37iU}k?TOh)fUV~?``;VXd9OqtRia1?kzkS=Cex~;Ukm9Z!ej_dZA&5Tr4?3@ z*-_q(65GCSm5$F!b{8hYL2NW;Jy^C1$Ol{Sj%Y+pHt=hdvqCA8tU1HgxYW3G3&KU$ z{%Xra&@w1Q?}KxARi9i|m;)-tm63g!jOjBZhE$gn+u9$8%vw%$rAxw|u>PrORmZv` zS!r6`I{m@q%38Wmk7jbV&Ra`-v2tk|0%~}vV7Ij?NpG*jumo#RehCQi}Rs}#!10y3EyNX~_lxy<-@dwFiNhfyQ#pd zpu)N)@u#b@inYGgodq!bq8U;9fXU_dW!h4p?Sp?oyfR(!wmKU&i!%t`@!Yp7i!BqO z8Fv*1`_{IBFH3(+^IWALd~e9^A@^#grU^WA#bYQ{5On;CL;pa*V*_-C`iJ3@KB?ty zJKpa)vxJ*V->GT#zo>1x(VYa6v?a zWmK4$JSx@-(@qwqt~N?fzf>Ps@3pzuV53N8zOf`mTKA0#lv29NNDE~#SmlqA@855V zqcSF`=%B3Pk_rneO?k(rg9=m(Y1VweL5dga=urP6?fhM&v_3R%q%!&|`$@Z21M(8j5)i z30MO2s6dCio1lvN6uLEPRB-b)inVQaRk-@e%X{=(`zS(-M%xK0V(OElE29@(vh(Oi zFO05q+ec4Lu8fYNZ!KT6aB=DAX=Ge2_eambzMUxVI)3N9M~~lo^sbkc$6tBko|k>f z@w<*62k@w_b`jnN+{=#M^~&uO1%E4*J2Q!C@-A5GU@cn^NhCZ z<;hD+=T4t2Uxhs~fpd_(&h<~@@=eU4=Q^YNNbR50J-XCsZJa1iU+-Y@_o|iAr}esX z7;WG8q6_CPoUQ72=iKoZ!Dj0i>rv_KPH;As<2CTC-TtQ<4+_Wq>PMCyIQohTPGw_P z_UKvkaWVwr?!@Kp_(iWfdcFk*yS9n#{8`(>o~q~F$ICnKIdS|hujlKIKIoScsg5~i zd1!f}E7tCO`MocH#o=6?6D2)RumIXpd*f~8R=KX@Rx9f}&uoYn*_tTUhV7oQK75GY z=x*qn7=x|Bb*0+crm6co&(Ts_JI|pmZmlU;m+J34-Rti>OGM>v=64!X=Igc9-)(h_0beQ7Kd&@R$UEEck>2LGjQpyo2J2;h;$h)hsNOW%? zd0Bo(Dw?0Gl1|M%tQ(Uap1Y{m$+L^aL!D6%%khPC#lnrJcAg!vse(*gjyYVwa2oDB z-CyVP53MJ5p2ebc!j%MrO#-+2&%c>6mXjOrw96%XJI}BZ4b~^@=ncj?!Uo!3-DQ~=!9=h=~ z6BtXXO)|k?o?*Lpai3r_tGwR2F2c`nA=OrSedlTOGlZ8r*Ec)QKiP*F>k?y}39;Q= zkiDh#?s}7UiDZSMqF*2W}$5>j@oSp8H%RA0c4gdA2uT?=pqhEUR+Z9N4^EuK;N5=bv21YAL?7Q^hbASm~>wgQhoO z-DJx~)AZT$2{b5!G5AiZ`8f3&gC!g-!gW~0MyNOx#@=v1#d3O9_i6=uaZNJapGRYln;Zj48oimJNmXEvs#6xIr6>Xdh1z zbZT(pom69;6{(fL7S|`6(17GU$H1BC(QL5}w67J{!5T4X!lmjCG;ePs+ovHP&)g=< zF4%u2Ept>G>XzNe%D^oaY4W9ZP}8K6%`+Q1TgmsZ)q(Yu&Y?=V&e!!(wD3KIz`#sN z(GZ(6JJ0mip(CuKsZonXx+SGJsh%l!-Z9#I{>?X@hMd^&6%q}Z;o$n#ka?f`P?J_O z)%%jkrsQ2tEo}_o6U*hD=a^{_7F4m<2U}q2R#n`JK4a>`u%$9GgdE59R+~ldStvp9 z#wmhj!<%d8>6JD6c!0NBbQ+bsXpIuBAPVakHyMR}=!1Pq01-sEke0H8)Z(XnBdVtI4hPGx52biFw z)J*nGgpTBe3f1Oc6r6%-O6mk@Fjv{7^8>Gk~PhNa6l-pMt!7y2wLqw!XKB#K{8Or~&v2P>cG z!fLxbfMy?-uJZ%|8zqd*^{viE@fzmFGwb4C7PM0AJgZyL-C<@k!{Rlh;dCjOG;LB5 z#m#N>2WwKsY^~pT+Z&M&*+;uRaY@0}ulwmzhDIB!+_e?4gQL!kr#Lc!o(?mb8}EcY z*h0?UfYq#q?fq};FCp)hiAyQ3!@+9cSz;f9o}5qo)VQ~~W_2C;;9XL+4W~AC+HIwxw>mi(Z4LQm+8|h@k30s%( z%7-tVL;ihu=Sy!6dims~i_evum}((9EFfI1mU~YmTh~S9L|v;PkF=6=gr}C^#v%-r3?@swAOnCgqO;zyWLc2SHuat{ zLuiw3yiIcrf+Lv}uAap{!Wa-Pr%sMZ5?&bYyq%8+nV7j5AP!rljL3;ldfZ%&d`JsB z2ew^Zy=cr-~lQ7jkj#JVD6uj=w+NF8QWC45#t$yT&3Z9%lgG|J?KeRakgNVE@0VIU~sF@fDP$E;@_!8Lqa=pFH zdgbE_swL?GHsAXkA|`dgR<#5Z3&E4JNs<}GbQRFEbBrK%G!~)IEo{2kXV`1BPO0(E`BS2XqX;$__#h|pZh zIp66aF-}CXr1;mkZgG`#zU0^3&P3Q9zmE+ka2k9>)Y55E51{ko#DF8NAk27K1E#MQ zqf=c__jD4VrI3kGeW5&{A(`keYH`KG>_)M?sI!7#wg|&^5FSKkUxVv|p{s08lv8Um zD-OdOzNt07pAG;u_lDU^0}x)!_>d~(#?w2`-gpYuqzY=AtXDjyg&HQ$7cuuzYjtDs z80;Gi0Hb_T4%i?QlNDj!p5Z%EUS|!+s|v_8x1`z(B~hl46fUz}Viw9iBe>VyLc7IS zrn1IwY#b?DnC3H$2IX~=d0Q|t3|*l4CQ-k$ybV#i9s&@JmeXFB@XS0w@29p^W56b= z@G$^fZWKk|Dw!G^bO}?323v+SO=e(1!@foHTC;AC)|rFs5$rq*g26iNHY#QK>3Wkv zJ-tfdU2bw?@mLEqV$>dCA{oNxa#K`c&*U)pZ)nSqF5~NMTif=ZHa6KDDcN+HPwQ^l zi6nNP(_CfY!#quHaYiPfao;GsAH0_>+(>MbVt(go6K1NA1iW25oE26bxwUamE6b>T z-SjAS$_0K-q;|^}1Bu(^Arzf%JF~SV?)10=Pbr=hJPBpW-=_Guq9|B!I^nOJGzq<31NWB3})%5Gzp+)+~) zMH)=L8j1Qw5`4Pt0a6#`vph3z88e$QTb!gMK1ZM8Qv26rsvH->zYS26=J*e>1 zm>)V)3@XIzk}Z~Xj#d3GJrQiM)ZtL%ikqd8K=e{R?b>wYJpJC(HL^WQdbLgiBKU>y^HI^7A!O0IHG;JytO0(?@AmkjnTT4 z+-M@L>*6C*J({ahI&AAZun03Vfqea|AhN;%OdgjLZ-yYdE23hox-)Xm=_}?l7TDZA zRrYCxbE@U*uoU1U?w(1*X0BRGOo{Ak&h_=G3#L}D>D4SD$jcl0$Y462v&F5m6-i>W zJ3jZM#NJTI10HFOlNZhjvri12_%>)Dd-9N)SW-9PjU`5M?=cPPDp_ae0>o!3iT8m? zO>QI3G0zBMLt|@*(3OH{kA#T;zYGracDKXe=Mk5}}h|@+l zT$!voC%Yh6Fj>7T^}`IPXuU+Wn<$8^DqEGN2?Wa%KsU{)LSfTkq8&k&-5W&343tobG4)Vv`z)IKmDLk*y|uvJ-Cff$2(fu!GwSwSbE;jDHkwlYMq zv~}Zcx^(>Ev;m)8j0rKl7U3I>TI-*GvNe)gY11YwhoS9@vYm}8?r9eywyKb4YTN@H zN1II%T?HVcdM&=i<&XihqdbQ+7lEk`t&)$NRG}e-AJbReGpJBjJ|8d%P1EP2CB-Gy znU&5Y~MbOWg;1;yeNfR6G9FCTT_KStjQ~K^}`FjloF( z_QUEsN^{C|)LK*PXIwt_v$shOmx85Mf`?r7krGGuJ)G1kfJD%uiDF6Nq8g^SZgIX9 zdVv&#Y!?dZ4Ap5gRRZkRS}cXx7ZsP;x<|T7V~gQlMdx;{f-Xp(Y5ONL24mVDtH6Up ztODHJpz^D>S-6T8c&rVdRjYTW##Yx#x0rMzFlnK_=+>eiNu~+4urtz<6gU1!2i6gT zAiF*QeTmn(X!lVnVsn8UV)hji29j2cA&Lv>EH5WJkjf=?D(UInMua&R@^J<)Lq4to zjEPq>)-b{Pj!=+bKPp>6RQI(wHvw^RwA!ny>HI6yzRkO3TgSCfo!7!<(@Gi0ceNiAx;S4~Y)-ez0xx4G<$d@QM-zX8-UH4r4uc84Xo+M2eV_HU=k6>!jc z`0HA71PKP_v#uhpMeMu-@jx4MEU~u)VF@tg%@Vk>+MhEQ55eq}1mq;fxYp!0(}?ioVz7?QkbJB9&^G#B%+50jWwQFXo|b%J zwE3;?REt>;j4*b!l?}~h*y^~okH(FSQdn#4yr9at4)=s+FI(Q^GS*kfxl|5k7HXq5 z$JAH*DBPepB_+_viyFIuePpHE+r@=Mo~m?J7&TM5F{BF_%lZ`}@=%XvlZq^FJykB- zyl$FDY-&GSYG__3{3Skt5h3wfjgc6mnUU6yr`dOrCPRiO3|pD_bEgg5NrZ`JCmEhm zzBPElHX5|46e4M3-MHS8y2p0g&?OI~-f=R0ru*QrN7pzHQk?0wuGmr_+rwIhi<@le zON*;I#P~VW<(~CS+1TGo+eSLkSVg?J7LggPTG%=|ISOooka)D2gCI0l)5$1FN=O&O zf{7V(hHDO$nk)pM@yStMkNxHbNeDB7K>|}tS0tlaakBgm=1i|^P6)5b2(YTL^+Naf zj^N}vC&g%Sl%AvUi`jAVjZ?-ZJP9_*MvgZJqBr-a*evT(mRN-}CUQJI%lshg-I)klX}z)*dfxwhAp55%P6;~g%v7Gf}u~W z70vhAeahxyRfa&Q<#XfgmFf}KFQKk?JrkdpNlvdw_SVK+z{X;b;L~cL)7_3NQ4q;h zRVaOo{9B`K34G?vD$b$?VR!R#i>)25-4Szu2HmvNY-tke8tw84jUB~}Oy$lrk#fjQ zKv6N-R-)N}u4Brwg=NYy_Cu6cm1{jsTJ{ol}JDrw%HL4p+&TYn6HlhhWNpFLQQcym{GA8S^-o(|h_XZf<_TLQ}Cr_47{B;b6t zSjL#R`K~VEVSJ!_O?YNdQHz3jJB+CKvC^q73rr5(gRpL@GITOjr7sg+z{nk*{_-~W zy;Egf>o9^mw>vU1W_Te=LQA10Ts}%^08%g0NG3m!lFV}9?(&jE1X>iDUnWGUEx z1ZfFs?xtwq-E?8vHg;28|^hO6L`<$DQ|*Cl*=3haQe&x9 z12+anikTKuWHLDP>6W3oVRV^sWJUBkO<7^PZ0zHGZYWV*Lk zH@GWPzL3l7$|JM7g|p-uvU}ydvYxIydHvONrHWWf<$iRdC*ETTS+!rw8oV&MuP+U* z9_`NqtYq=VHRmYDLaf>`Ovu&@c=hg8QLGGpRVuzY{Gl~lxvFC5LvOgL6*Gm0Gb(K< zSYG}s@er%2XRw3yd}3rYk!$E)cRUQAGWqUMIY~>`oGyJ`aH$O5zVmPzaEu=fHZ@6- zn6qWQMX9YCxxWYktRvLwG;fd_H#b$~HquQ0F+;z*L z6kM|u%DlxF5Majg48U{9t~#j6HynJ#dyZc-IP<4%HAbNj&oWqgKL*|mk2mfGMz z_A3b`Nqo4N^Lyl||Hi4Y)v*rNlyg5z0^j^7gSqXyi4=ko1%?+=pNjNb^7>!6!GI(| z(h9Sdq4i=l=jmIHOm%})$8p_$rNZ_V?AB1<3}xn z!Z{Y})#~OClzoE^4AnAd-_@Qdg?)b$qb9jb!4RvPnN*=O-Mm)Wm0hZjiQZNk_~2_= z1bWpu(O#o$%L1gCoG*@VZekw%O8Ys$jX$~$jFlr&5S)EuxRwKQ4$gt@5b^T6Eyhd1 zn4SAfpH~;14i_Ec@p`i-ygnf(jrOK_T7gnoAJTXc;dtT-`8=982u5F324sxy@t_sl zQB?#yTGpN*c97aVT%G!MNEJ+M74?2wBmbel>$!(hc6s_n6EGTemaFJhrZ10-HZ2 z!?3coKOw(x%{PYF1-LbH4egY=Z_F;#U%y6dxTffm&@iMN@1KmXS6{A*l>}m$`}oOd z!A&a;Kd==_q}6@Drv4k#h2?tsyYcnrV|`t(Jr{LT^5xgq-i6gFoZwG3xi_!+O{e$T zFWh*7udV3{{m(c0;%~k2vP8v^>ewu2LC)67ZMVJx0qlU%aiLJGA2s1`BId8^=YT@1 zE{c!zv8{q%!qu1k@TNi3Kx=UmX^_2k|>n>e_7Y8x|QUEvrpF_=?s* z4f*lrZ^ozINiiM|3Q%v;vjqEQr8I;0jp!eym($pTC}f)G6bv0A_|b?YEg-;JIEeDs zA5I^U$Vcvj8C^k=xCnA?P`_sw_K3;4-Ks}xn$i@EEGXckV+alt4I1tIJ zt7`c*5$)CY`nqd8M#7sY3xa7J9vuUZ zocIkqxbG1SSqbeRa{9cgRKzZyPP?J`_b7KZXdjiGs_2Ix15r=~ zB!9X|lL6;yKYajNg}K3jB~$EZARQ*2PGZ`itMFSy9r5PbQuVt93zMb`5m5mXh0i+dw zB*hS56=Mzxk}&?F*LgDfa)YYUN4d1R{sT&Q9_8Z zf3<=$kkUyUsgCr_qSRk(@uXcS6BoLR=}zcD3{eyi8ErJ%fa3J{IOB;V%~9NXT$6;t?48M@n_e zP>PDO#*bh9<(#-QCk=v01v@ve&u~di?MuK^2(*)yfMK!VS^KUKIW3Z|MAV%o`O^Uw zz(y~>V{S#{KD9(IXU(TC|K$W&SJU3ITu>zMU*LL58>GkcnL-OjN-fI~l1$UB=AnDS zb}@N&Bs8r#V zduTdIV@5Mp522E_r}PSOy28Sr6U3a+@?@W(ro0V&;wEJEqs<*?s{;0M68`n)_W=dK z?^Zt)>F*GM3bnOc3|pc++x1<=UaRawg)L(s&UZ^CyN@P&EE4Fd{iTt4em-=1NvNam zS>`EecQ@*JQ&iQfcxI#zjxEoP=4%$$0dtki^`zWk@r`;H#EHkjZZBDA<#=?cCFGk= zkSPa8(|uwfAv#qsZ1Zb?0)Bl6+hh5I!Xcx+)6MV03pNXzMvKhQP!%D-Z!*e3~#vS|g8pPw(wtoRY=ru(>aU z+Nn@78?lo0$`Zj^1dylwW@ka4X1DtHW}~Oeccw?TtTy(j_OSmh909YJXP(D;2dGo9 z+WuKJrgs_#9)lo;bbi^;M62F=hvpOVeY<`C9n>k%L;pNUCqUnYkSC(>8vqIyFm#~( z2WzuKM!t4Z$7e<=z>e6Ti{{loDGc~EK3@aA%d0+fPFa1BQJ6q^A&5V?w7v;fY2~Nt zwna^)d~o@ia2-U#Fsz`C{VB%`d~+VLjU7yhZ$JoMRN?R`4xXS>6HLahz>!w`vQ z=pZ$s(OLY17%|orh&0yF4*Qk$?&ogOr-6Dtdq4`=?Uc_LFkyUiKnKXv%RlQl)uQzy zb0qc&3oJN)>4=sxt3(%nq88w;1-yr3WOt54|wI0vx^-)?OX1v`f^bDz4C;=={TL*gP) ziO@I;2q?1+(46~v0l#*)`TQRLIW#k{An}Xd`7z23+`Cm=U`7*CeOXd5vJ`yTd@jP? z;OUvJJ(DMFl8^3kfO^I-f=3MGhjm`!@Ez~Dz4P&xh8<-v7UW9wuoj}*#Pa0l+5=+! z4a%UP6DX&4yFpH`V4ZJmwt=Mr3vz-yB1VrS5!QnH_rIiV+Pk5UG1l47aY&Z}X;yx5 zn(JxZ2gLZRk3d8d770+s!O0nH7IlMzY~H{gGdFJ^cZX%AMoE;5sROh}vn`fLRELE# zRr&xB?d_n2k_g`h)TGROgQ?rnK?&75>t!JXD%g|B6Ec!GFZG} z%Lnii?AuEit-^;Uci9NPx?Fq?)ba@-+^`tNv|S3`x_Ri6Mry<#{t=E{ncXhLj%hkg zHhk~4|NS|22oz#F^LmcYqDQl>dBYTKeP4GMyW;dk&zX(9t0K`ad}aS-WIykT7y4<-5Cl7qlO zT(&5k_V&*}Neg~mGAhivkba)gQlKkNNbq2g{c}$%#YmtJ>+ za<;ccsrR==$1wSmpX)-e{O4b7O+QptZ>a@S$T(-Ev+_NoEpiC_Qfx55nA~}B@jz3L2ZW7N1s4)KQZqE=qxvV)H=F7xO+rN1h32`N1V%UBLV; z-*%p1`EI8ollm@q{IqLt9nNqnT%EDNFu@i)di4)i?@QSue6* zB===aTpN&VxLmT2XH@Rq4&&{!KjHzr^5h+$b$BD%Pq{POOddoU=1o%Y`j-D9^+c&9C2 z%T)~mti|;k^3S0%e)%tBV43*ofI%V8Qf0u^cfVM-Eb(N+sbOb?V;TZ0hjD6r%4?2Z zsQd@rEw~n`3#&V}3cCW97bib#N>|pybssWJ&iXU(t!&@D>NA17dEQp{3h37haZ^j} z5?QLs2K=jG?slzBX5WDaW4Hx> z_Y!I{lonkHKXOoROc)S!H=+}v2ph2(A#fx%L3-K|hjSh{aIx;SlS@v@>i1Oy)k$iO zAT$dW^g{wcJL3Sc6Wohz3ZNrRNIB1j4!A}Lqu-lKk^T&&+HR#nhwMHZ<5Fpiec9*E zfoLmd!>c=1G`V#2LdU0U@m+wQ{a4aLX(8>Avbl8^xfO%Sw*iHs6s?+K1Oy^0$^hbW z6w@V=X4L358>O3YivojgDxH~t=yoj04b;=uG|KDm{DQO*&9;OI9wdh?p1!;3@>Fl= z()z^!W$Zi)#5`Zc_1F;gFN+!DQ-?)^rqs!~9GhC^ouvm?YJv8VxrVnfiF99QO8nv! z9dNzs0utB>p{+QyBq%Yr8-ko0M3+yVqIYbzAAIyF|2+5#NYRmx#<$bq`C|WsREk!u{@FFc zgy3e`&|th^Cw};oQY<~ENhkkfF+nA6YJcOB9+CgX?Dj}kmesiVtO#r+k}h{jK6*xL zwZkGa8q=6h0H$Ju#oR&Pay#*}Ebp#hseP!}y%GRWKoqHEKbmIrxv;w?mRV6BTpC1-})yrA~v5l;wdSv)yj$WrQ+N%Q5h z!HRjQ3Y=fCr_v#)nmQGMZoF_kit63k_En+3v0iLa$RBCl(qAd^3N$q+u-QNBC?+jjs@%`|%K7aLHgjws-*U36bVQig-=)Bnw;nI3^#V*e)V zZ5LPO+lFfvT(RfkaLbe}D-9&N^Im^xvr$he=RKd9FTq8E`6qDLz`LmnGDB7_T(=j5 z)Z880z2l$TVgB%T4VYKFKnDG$6(ZW!dh%d+hA!EBG6T`mJd4%g?Dxs!F&bXe6dpBV zRMBvVCyiHn(sbP0zA|9h=~te!{YpnO06Hp&VqHgq?O7^j22O7)Kclp$#+C2)j^lW4 zD(O7=?LdTjnq7GYTPW@awR>H5d~7_)`l4MXaqCOAMq!RgrlmneN>t`)cfmscz$Snu zDd#R0=Eq`!hBf-zyJp9!S&dwbVpvu`ls@>R5+d)(vFS)!YU`xAAy9$+E#~JJq%iPF25 z%kFpk$SkMQU6j7FNR^3}Wp_Tm>|UyFYH`dxBX6@EniKzPUR8Myko=w#gwg5Kg=MC@ zbgCU!T3h4#@!0V4?`g?-d2AXScFpz$nVMMoCuEyzcDC*`JG)0OO5ROw?mG`Z zx%iR3>HIXL{rJ=VhdYnc37IiPrPi~@+by<&)0YpL-^@soq=OY$c44~Tmv*-Z z9-VO0A(eO$=HPjS6jW|L6K4&Vt!gw+cG;uY6|cUgRFJ9Httq9j_&=NRzVXy(Ab0U00$ZgM@&YQS^gdz4s~bj&lGxzp<>Fz!xT9>e z%?<-srE=Bfb5};AO9?kgv&X$~4ZFSYtf(L3(v&fXQ8o+CG2~Sa2a335dugua{F@rU z^!y>!H&$$xCXR$Hnu-}-mjj7Dc31_BRyuge%)o!{YchiWM1Q4Gopnq%zEosG)((-G zTs9UcO};`Jw(sqg=k7?Rlx448*d5xUU4ZcB!I)dRR_MotCSxMdLG+~m=vWo{JC+=zbo`+UwxXFTTe_3C|5*XW)L)XkvL6ebamBs2e29qoT0 zUq2IcDkN7LgvlOJjh@O{vK)hmb|Jh-%n=bksb+^{<3{1GR-J=3_{5r1(U?^8#H=c) z$bC45LzsV%0zzRq0>#0SOtOF#c)t) zdEOaSauk=PD-$$6Uh>+Xkmu#`lW`2Twi+A$C57GvAYG9jA6I*t`Z8hb?mS1f>uu_S$3w zjEP9H{+ur?kWW~>ctkUEl{#`RDevNu`5HqpBU_cRA*RaHe$5b-UeR-NvZxCN@7k}i zXdR^Le{SCnyfO;fPG-0Wz+kAKlpjoXncPs@Y-7))3yt;=o^N2c*MRh2%KVzGv% zn5{jehr`Cts7*PF;;q1YuWFH_m;(;%fp&SbAEhFXKYx8pwXPGiqUtf9{mmw5o4W!&WpKG~@v{p$u zcQs;$;+7fnjaG?QTAT9qQ+6ePNdp!?QCP6E3W8CXb;`@>_Q#|=j}Sw-p{QOz z3Sl;Kz(+H=9Ox0}2KwvxT?CMF3p4EE5YEF3O zG%c0o9tPzwbcB&Q55%2_eTajGC6@(@-An;Cq-YT{fuo8+1MEUQUwyAF@`lduNBCmf z5{7ZkVF4X!RlPQZ{>EV`kJ$15Mv-2!#4DwjYqN{O#$3IBGu4!I&c?bf*z1iwMZG)= ze@C3zVaf0|Bw)w2Eu(!)q#K^&2hF|B=HBRFa)vIDa^`TNRCRLq#k|*=v(1|4oS$e9 zaHCmMCcIkK7GWo0dtr^Ot4D?6gY1JfCC8W-EnzX{@-s=4_$`$)i{Uz7m8!EXo=u~p z@%&_D{uNd9j+V?jZ57aj!(W~C)5xk6(@(M{tHIRj7_PpZK3>Sv8sdS85q(n?Q0HIK z2$U~(F7qgV!uy-qHue{Ps=B0P4^9|7s_~6Gg>%EteUi@XFE}BP>14vO^rTE}QAe~p z<#%#+&#LeC2SidSsStwXgoc_7f*n`HdPQjbxZsJnW+``I%BGLZHsh2?!C1 zSB}L|W4C*%yF3~FT#W)N@DuDQKEM;^0M>y05_gLD2KUFv7%x0lJT>^`fJ}2BqV&i2 zkj;yuHNUk1^2?mb%hgB<#7RoYWYDLA)aOh`D)*-TR!f7!e3M7k{%XwhZ1KFj4K6Or!*_A0183 znlI%o-pcb7H?+yD`DpRO-{UIIY%qN@j+fCHVK3j|esAFt#;tLFP(&+6Q4FSGz?7k| zXB-Djay|8IjF8-@2Wnl)$=%Pt`rlilvon0@A&{_bLs?Q&S4Ydtqn;s2t5s4(jJi*-5uyy0xaqAM zk8rp-l5}+P>U)>~7HWhOJz|J(X4!0igYTY?G~w}_fY{p4cj&aLe}KO-%vl{ zt9>mxVROE*v@~i*g;Knw@|ka*iETL7ATo5>GuGU0okjk zk=T}A$l>}gN43p(v;8d-;fYY0vcD2i3cQCDGNj_RfLARhT_OaRjzqSl>(8 z-`3U=qU|6#v~iO|M2eluOe9~)v_G82FGr`FKCO!@ zU5YJeF}?#e-07guhd!{}kJ_Bv>r?q|D*ljn!yUlnmEuWYyqBs~$fAo!Wp)TS%qMb; z=gh}Do?v|G1VobGwN=iB^)RVhRzNb)39Pbd$dl%yc#&iH{DZdrn|FP!|INF%fBDN_ z+9FY3XV1 zQ8A|d_o^o=TEvoQD!o%rH9=ic&HJAo@ztQoUo@Y&kFDKB-;-`c$C2{lH=cq$FL&Gq z5tnR~;I?`hz+ObvY<#QbV(|OjQ*-D=3E-7P^XkWf)Dg9pJ}PR2j`Yb^c~VorI3h}2 zTj^G1-Oaep1G(@JMO!(vQQND(z~1bu+9wlvO0h6Z733Z*_VKg>5XRwKpB+!2u^cAK zH6aX7#1>wTf*Ukqs&HgD5+dY6-jW_o@p9%D7JGqFeoE6tWBq6Db-VvtXfA|oBL4xE zdpLmv=u;f3SioR8nN1tC)??(LMMhkL4Mmt7dYU>iQ4xRMd#O`+yk}~TYs&o6d_%9P z=@+KNSYOjG-n~gp|M4b;{?pZ}dJQxWp0f+qgGIkGvN@hHel-Bt@S{}ltavkYJA+T3 zw?9uU%!=neTq_^)ZB8nJf$9P6W_8^J4wf32!l80kCvmXU)v+&HSsliyO&gfVq3Uuf zw>v>@17MP`ny>EPuaMnz#hw(l*lcns(SzV5_!dx2?m=$kS&uIUaybGE9HUS398aro zud)5x8Ssl@8V6o&Gq#{k>);~HtqifpnG2l=eJ*$S%(zprdBY{@#`sBdv6hAF%BM_O z^(SxPpY~*OKE(td+*9^QB35RBdI9}LGO6xB&Z^;X3j^+wkEBeHE`>-*DOevZUi}dz z;teoaFb?5`@am5WbVsG_ObcK@>0CI|(hycx4UYm_h>pi)CVRZ<(_S51*VP(P_11LR zRDh9|9M;Qv1RagPwlK0>Tt9l{x81cb3GBY&oabkWrZO%m~?Ed!xilG z7;*ZUl*oOtYmU;Mv^F)j5miYdS(bi^Sxh$BA?dlcIkkuJ4m$ zLhl~S!8S373It)n!cdHDTiWlX>b8#9# zT%=ha;0%{*a5-Aw*E?$OZ|@NB4CGp4T4QsXqgVM<59s5ia5AhET@OJ4KhLN_h3?Bs zm!b3^b}y?JS{eF&JvkC~4_>1z_#V(3t6SHx4{5kXUfY-CC~iNjn%|8Mu?iN?eS5H` znecMxcm(eSj-(a-RDgV*+_j1TwYuS|h&eD_h+QW?Ze$)$AA2HE0lmObfdIZ*?%JAO zdsMl#D-3Ya)d2@dm2y{*Vw7m``GrQK>4ZiYuWGoXU&y>+N}KBD-TB$*(jIreOmnU5 zELFKMpdftl-y>dXeyc6WR*km{EvV0BCmXH+u5)WPM8#Gqr-1UM~fNycR-Ou1X0TA zFgS+ZVGpp%I+r9l=%w0L+mNOBXf${;{iJ)mz1#&{-z`R4tHzYorpi^|`pZ9~B{V+EkLtQ)cH>Bs0;~qvh%bhR`%FrCLNY*Q53>)%cjLt~z|qAPR~+ zvZl%<3C3V=A4ulzcjanQo|k*=h9oVtx~AiO^_N>iFSZ*nd)F2rZgQv=oI@RgP-}6y znaejyyYR9+pB^#0j1`tD4$9OGO5izymu5pjlLhk;P{QSh%hq|jJ;mI8qH>qgI^!gb zZT^E8L*sNoQ2A~KZEkjc_{YF%6r9conVQ`jG#76TIiyHA&u8V_K|_!fFg|JuT1cjl z@DL@lW%3TF6_n{G|5wl>^loEm$l`}cE?=aP<&I8V9UaJ~nLTJZk3yD}}K^U9=0*47lvb3UI?#oxPN&P!cyyxB zar5U5`*7g_IMgfe%%u7c3mKP}Z&jdk-yC|6WpfOf9jp^R%$|i;Mf>1Oz?Yrl&fq0o zdkmzSeI_n4_Ir1k(FcPiApU|DhDbN}QCzoEJ3K|Rn=el0fJco^xq!f=^SA;WPw?)} zAX_{_@cBns6_HBfesHr0tpQmHiuyq7HB{*A_P2j_`nJiDE1u5HlYc&&4Y8l}L#cFXGdri4HaEeglSPW()TU+Tp-?h+% z-dpae7#!%@3YNcS(Fs+D$8Yyk26cya?+-tk%S_h~nLkC7ZZzwTPQ%`7@u(VoSkt(P z<|i!)Mkec_jhGp9RQ+c3_^vq`vFVWoc^maC72xYso|Kz>7#d>^*Q0JR=x!{ic}Tsz zH{zL@Gs0+ezl2XxA7-dthqJQY7kZxby(eYF=PPc*BH>SXMO)eXW~rq4`Urj=on+mG z^0eRUa+^h|t>L=4GBstlRP(iB7PnnjpwVSC7QK&0eIgFvSQKUWbf^%TEC~?@ix~u# z0!X(*#RfYW-|2U;;JWq)7u&LqzW&W_ID8fKt$O7ta`;ICkj6J5A*{Z6*HjMedh}Qk zlXHxFC>L?`J3E^088=xM!D{c;_j#-{Gl$nDMB(QI+VoC^JT?Z;gn9|2=Cip|>EV~R zOn-KlHrm=X-z$5~B=*Y=t=C?O{)DD~cr|q_suF+jUFh@bu9pRvye;&cpUwTn5hB0I z(VUxTW0jeKnIfhLczrjdC}u-UrA&lE3*)C-PvT-9GbEs;t{twNy(sU(1m~Q)=vLY{ z4C#IkCO@$U%nQr}IGE9Ricj&bw5sN(;To4cAz!AJBC8hTAr4q)mYwJZgpM@U$;++Dbt2wSqTyULEh>a zcbr}}A^+1h$S2}l{Jo0-Y;kN#hPdORw+){aMjf6*o!3$j8DpKbeeCh3#*W7C>t6MN%2$sj86NxcS^KNgNAe0Z8#dGLD zAioijpVisOAS{GP{OXUEsucmKc%~Mql#}2xf-yYIxRHrk6Kn-}b@ZpMvDbN@CBM2~wJ-;Fx;bijd-@dhfc6R*1*4E+}K43B%9YJ|d zHaQ!Kn83^P@njQU__sdvV*|h1oKU$`{Az3TVM#^7kdNnBywzt$Ii1)EcM<)i=SovC z8q*8mUYV&;nl@5}!=dW83EE9eg%EvK(52Qy#lcARBvrmqY4aJ48!#H~ zIov(u`~?c?fY!Ggmh6i@Y2qbmNp(fr@G+B~4d#W46T=wA`{m>oskCq|4Gihiy?r{X z)02<|JE-Ia;5c!bXwJL&DU0lAgf>ke>&uPb;<8KvLgefrML??+SaT%H6Aq z`DFLNZuXr}ymm3jW9Oo1fIL)CDJHv5w@jE5az|CF!XJ>SzC?%7#sC7TRD^ES9V|mn zi#hsX;i`#M$#Ao}LbG13tgL`{U|0|bq867(?rc>;Sx~KyM0U&Ew9)vN*2nn6_mGbR z@`Fl0MqpLZe0~MaC9AT?t-OeRlrOESGi;H ziOhsB59;i>oIVp1uh(3})$bE8Ardl)w#cc8uta@|!}5HBClfqESmABsiS!RF1j*Gx zdA+SVbQaN>q6&e15O?4A(B}{_>$b?)nhJYQS&ISDY|N6AVLw&rt?f)@bwqYBhQT5$ zhe~>AyhaHA;AnnkwxfZ!q$?_{RT2Q~-Uv^ir7VA=S31S+747Mj?YcGG_+DWl%_#EO2+&R4r-|&eD7xO`l};C~|2_z?YF=_Dm;l5I8P_4a&Dw>!dDw&0?>M zu3PVQxs{6w0cR-0SCbIp5$@MAn8%QEF3<~8C7LAGf%3^U35rPwt!(8W3E`@>*pc<4h zE`!B=i2P+&6?89OnR;&kM>!mtD`ow2-eBD~?w}mW9K>=r3TOiV^d^c&C4IBXGgjS{ zja4nh$r?W``8ml!h^^`G^(4C|{yvFJjf=iD*hlM5}y>ed@xH zeP42`DG-lL5h3Rc7?jQSe%j_K?v`^*V8$x-*v)J{E{=vj%{L|?Mm?u=ZPtdq-;N3Pw%<6-Of zzyJLf%0dB>e6u${I%Q{U(TvH_DQV$Ox5VU5W+a09cD|{1-Wj*=08_GOA<+YUT}Y^O z)sUwM$x5CyvS=4f2#(U|dYq8L!$n~0qEWtf3 zD?ZYUz=)$2E(Fyc7xr~vhumgU5B;X)KdeSHivCn1I)ZBX0d8(p5W$ckg=A=6NkQ6* za?w%3Aj777lPg)}rQrsYiO&>bO_~zDXN^EP5!^BiT6(%E4l;Z?z;K}R;yTg}V-O%g zm6@DMgbgVuz9c3LPeBP%_*)k3sN7G%&`K2%HPrHC$dXAK!;VskuXe{ zIwPv70Ye)*!mR?zn#Ts!gYh=f+CeF3D?)ZsV6d3@(8sdO0f zfd~Y_wu3~!wf_e%mUdOAmRb>+Fij^^d_mgqj@MDjb&#~tkf_Ze3@p9B`rMSN6$h<>D~+xyAJ0j_3~s}PEDI_W69HR^EY<9Y<8~f=;GtQ3 zh*WF7@RiG&;_8FuE=C}+#1nVLF(GGz@!K{Al!gy#;po#C;t9-}EYuy{-Rge!ReH_W zf^Wth1$As^!GzEu{mdUvMd|&QqJ1g?(R}PK^!`VrR>T1Y#t@R_V6*_5_`v&wk8_mI zJ}zCdJL25KZ#k;;FyIlE6}C!>gZU6;9)qkWY8~3VgLdQ0cm6ke#(Ixx21+uhW^AFg z{g=Msa0UCTyqhk?ERLwHe2u~RC0u3io8Q>Y@^)D{m2E5QxzbzVt;&Yw-8E7kL!o}s zOFL6J4=13iWG#iYw~?q{n#?%7!keB!isPesaH7Qt4e)r|aLt`y)J&Z4mLhwT6TH9B z(WKUsb25+`NE}WT2AdVPObTi4V|L>R?k|z3K9O1~Gqg+05VMzmmftOiUD(eEM>Jio zM5jvRguM^1X#^V&Y!3<~@v>uK3$9TMfYv(wGJ`RuI^ z!<5~>EfItS?N!HuVejATrLOe#K3Xaf?(U2JZ6mDxTjt=^|Dr*OEWMdrK>uZ@5Cqi> z4t2jQXZBK^&Jy%XEj5R&F|P^?TyhAUOw3h*GeC#Iq~{_!Dr0Hyc825LgL=$uH*$_y zve@_=>Ic&p6&FbD7B3|}pfjemV#$1+G#_`!-Yy1uO~WsiyUvE{037~+DFnQbOxa7$ z-ti&S#v}-u11v7D45cMIZ0^YEggoN>yyv2!_>S=rVFe<*A^aE=jXgJPuD@fS02{yI zdI(}6#XX54fp=BuQQrQ$zy9y-j-Bw*GF`lFnnsw>1HS2w2e2Z_w5_L1TMBMRh9XR~ zRB4hHfiu}USvk3kqzmlI#98p84gtb+_mpz*eAhjO1<3^US64@= z!gs%<2Zs4533+KW9^>5_;_>5mTyWaCJ0GJ&INa36z=L!buNoSs5Fn<2$gkpQ?{_%22&J$>{Nj*J zpXqrXkoi|YoJD>k;td}i#l7L>Lc`3>vP1`#AGz|swihLR7w@h#F)Wp>A|{igtHKhE zybe~D1ilK8%v)8J!TNUJtUL`$wO5oiQ(|)%Ik8^P>M)&Dd&N9j(g_^uOT?v_Ado8L_yeY{U! z`MamT_w^s50jR&y0n?=Eig! zZ+49v;anVK>%BEPn!gqP&gS`Lyf8C6F6gfkA3P{bS`F$IjI~V<8Zr``cl+9AND-Y# zz3_7Ixy8d$tg^lyftcZ=1U>8DO&Q_~!&Z#>@}tIPP>eg8LLGH7cu0H4ka3{m(t&n4 zB2G=3z_WDsd>H?fLimpa-n}JATp$?Z52@hvd88 z?awV?Rc=xRM&i5m55!dF505y0`De77z$BrY#;dts;A#8t<%?I(4o1?GE1KE`Iz#pd zzj#GgozKVOVJypoI3!|S;aJKg%&z4*?C!YSB>zm-s)WG0cs#sl{@XUNfF!^ zGp+CeHtO>kpNxZ&?-y3*RFbsIrJ-W(drIHDrg;7ITwbxAR8}z}(1ae5s?=3|uc~7F zh&mI!3JSR+ms3b1)8?ulZSFI{K!&-3G@2?9+ABAanqN0w2IT5CW+@(WT~Y3=8D3l< zx=NpRZVDe;PiQhw-6kuHb?xQ9;-?1Xh^#xJc2Js7B}vokCJ`tXsPjUwqBu%&rFzsv zE9|5wRlr%zYA_DKgijXtr;emVMpIE6(1wU zq}x#~^%@>{I59XAeJ=SYqFAKYm|sfC0(dy*Iha>w6Nw!y5>HU~squ+LKw7CSSbb2DfHaB;kx94d>Ksv7{MbM`y%|4E8qi31Da(N5woBr4?I?E)`%ER#5);Vs zFo#6d4go6qo&HG8ITEph{I)fV^HWa8ry-a#XMec z#W);~j+!1>YDmAAKV|{SgoRXj9Xv{|~Hx}A|8$L$Wq=5>?_hwkp~?(XhxL=cWN2vQ>+L_k1VdW4}v8tLvhQ)op12KKR$pe+@^DXAP+5hvqX>dv9F6-xq0)s}KuSApxpDa*L<8 zcy?671uVU|S>E!iVNsFf^^G3eh{nSdIog9)%bYNP{E zD>4$bv=dPcOvNv79%?`97iuNnpxX7#cV{d)CMQ~WzRw?=aa|IEGsjRe z2BJEcX)eN)#KSFq95s+@sFit!8t`k3htU?efhR$wXRvraRJ)~7TU~2`-#WGe1FgVF zi%&zX&|GslYH2s1W^@$Q;a{kRUs^osLKjbrT8WIP0T;3K8mM~B{Z^nmYN>`>fibA1 z4@0fYeAHgAxA-2^;X8|(;YCz~cTrpU3e|C>U)&)~j7m?7DxV!SV1H2pnqd{xX>DKy zTA{9C4^+j0r~&#hFOI{=7=hY?t(XsYqdItwQP5lD+Kpz$M@=jR(w^U!g@7vL#$H$w zGvf-(geNfzzCw*S?P9(Gm>abs?NMiA0BUQdq9(Ky)owUyV!KiG|3K~iB}`2Jz9$4U zv#3iL6~;jo$bwqJlBm6|gX*9ws>5$k1DIp3LUp(URsRS^#+#@C{AoTxt>_y}O#i+p zOWol}fy&5@s#pxwP$`U#^-+hYIci|NEj|*{5TA)!+TT#^>_%O)BNz?;!l?K+M#tyq zSHX7#H1cT6oQY6-pB^=k92U=mIf)lVHP{I=VNcXb%s>tJ7mIH~4fGJkz$=&$|3uY~ zwVd_WsZFrlo!)e)hVr3KeROGy8kiOx@(dciX@r_+?Z(4^U_1HOAKckG#$`5Dztgl&Gc8irUjssKZzZ)nRSa;cAVVVOP{j zO|tYEsDaGE__!9;?rzioj#>N)`c?40Wqd%*B=&k&F)6A-R#XFpF%nil&9JhiH?nwp z)c2wvY6}OU209FNXvd;v{w=DXnd@2q5CRJ<<2Q3BYQ~3A9i2w4$SsS%GNXmN^u!oK zesS@HZlgy26xG2?i^u%Utw>zd zj8dYuDl=-ybDL#Q9o9v4*dBEz`k`*aBtL=N1eReDJdZgs-UfG_N}`s&5o!SKF$)et zbvPH*@M6pV4K<+ys4X~;IvZC}?cBl4_|)S5WE;-D&(rtGuQw%k*x~Pttq6X3f)&5Y_85oVpaQb%EUwglT z1TF0b^9ZWKZPY1#gqq1S%a69hEp2K{MS4lI8ESxou_DgJo5muNlT;7P!p_=!?6IKK&@ny zJ#GTAP%G|FOF(;E7`4RZQK!8zYHPZnX4Kytiz+t@9p6K3 z>0?y6SIAl6&;NVfsf~p?Jc&>PN`rn%GhN>UwfNL*4 zDm^u-d@j@{xg7eV5okg{4Yx)Opd%{1A8N^lpk^`}^?{jS&OmiM2UY(Hs-s(|`p+;k zzCmqi=s|b*a-vqY+(Gs~GJ)nKs6uO0N1ae3?T#Ah2vh^#qqb%~s@ytrBgP=U6_vji zHITEG{wL}~^w{DbFgo#Qhgg3tRop|)RHzlmj=JYXFb38%8=(f)8a43#sD=ll4%Jx8 zpMV<398`O&Fdc3|UEeFH>;1-0KueMAup2-=)X2-AW?aYOEzBO~Fw~MyLQP;g>X!U$ zt~2*o{#n!^y^R{sM~sF3*nhYWNfJy?LSEEXG{CCZ9CPC@*b`4-9xQXj4WJKd1qNXp z9Aok6s1MA1)Py214jw=aHcqNX(eb@!7ALq9s`uD9T&;Vbe4qf#VuA?@n20Ni<))$pO6er+R zY=X&7vRWSbsKdJ9l$*#7)CwF&)xV7)_&4fS`A)O{Dv*SL%#K>3(x|1ai&?NGX2UV~ z1+KRIZRSDq4CWyJ2C9QNXWR;=N7c)N8bB%3fa;#Hpa0EC(8xQX?qzRO1A|eAXfmq8 zFBl(Jp$4`C3*%p?rA~d;4Lm(+t8$~ZupnwB%c08EM73A%EbFhCwy=U-P!$KF?)OmC zz($}B-FQ?33s4O&K{XVPD!1Lz_oF&Ijat!b7XQcM?=T_hU--|t0i;89kjvs#Pz^V* zcq_9TYAFYyJ|v@21DTH+z$#S78_nIQ+i=7@jfsh0Lbc=nhk$1E(F#O9@8YpAF6r?s zo(6SGGN1-l0JT!3EWZM3>#Ab#?4UYmi5gIM)RqlGwL2GS$M0K7Kzq6o)xZJNk{w4i za1%ANC#Z&AqdJa!!8H^UHLzr;mB@;kaUs+|OQHr;8MUSLk;~$19E`L7O$n%jmZ+8J zWOg_EpawP&)!^5t4#%My{sGnDLezkln-S(d)C5nPcTg+vuhjjIa?y=EA*!KJRD~>- zUKBO*N~jg6h8l1~)OBiwI!t}dF_?__EYzoV9je|DRK4@4f!{#C3O*u`6r)~pE07vB z!t|(_=R?i77^++~OoHuDKgEWa0o0+~h^g^3s{B(k=4JN*ONZ*W@MZR21?rHXnRLPA zIMn-l&0%L6w_~8o+eaz-OU4UW~!} zzmtHj+fht`*HH!En$fSjJxqkDNzaL@SRF&LDXRWgsI8fV+S>rC+*;I%>_DBNOQ?Px zAS>bbMZMuFCP5WUkGZfk=E0t*8O=eRkwsV;BTy^%5w%hoZn~LfL6y&qTI#~6EvkYV zKx4CWFx}4&83HOeHkiPDHW!<}nR`$ToI+irTd0+Kh?@Cp)QqFtaw`^s+M?{J0p&$) zMNw3}GLrs%H3?`Bo0%QaBi;u!vwo_EK4K`wy6wz?X^7WEjkpJ<#UZGAvrtR>E9&rVL9M_ERL9p)_3oHY zQD@~NYQXXDu>T6AxZ?(p5jCT{s16FDI;@J3uq&#g9;lg)#6&pR;tNpitwhz|i0beV z>N|7U;?GfMEb5=Ezm}@NpRPg$)FEt)TB81_2BxA;?E;H$L!I(tsQPzN9lk*G`3b1QQK*s6Lp8Jv)$vwTg`*a~h3eo1X2Q64-I*weDqjk< z1$9s}ZiQ-Zki{ohd_JmOe>ed(cn~#^Tc~^f5%ohQ)jd}*FKX#4p+?>U)$l-6x$)*t z<{AtoeGh6NcTn};qXrssKd9fAk${${Fh;>z7!B*A4rMdcj5=XV9Dp%!II7$@)FJy0 zbyjAh%5OoPk%Op1d>Yf?GYrK<5A;hd`(KEF4nrFZHe}Amn4~X7b+`^=;TF`4_F4QY zY9;Pj`a29Ip75coUl28*(x@|36C-064F3K99t5-kU!sfWcn#5aYGq!aRwmjL*HIeOZOV??x{8<)+oG=9SXBAhI1JbO31~@j|Kmnj1~u|p7!TW` zR-iBHv=77hILZt&7oldh0d*#JpeA$%HK1pxGZyD52M{x$w$9&|fR=V5#>MI8eALpd zL3O+pHKX5AOLq<9;2qS8Jw+Yf1kc<+GGTn;xlz}y3?{&KSPTbXbNctKB2b%z7|-3G zW}D#e#MfX^?Ek|3ar;+PLwB(p#{Aa}tOja{>!T*{C2FAKP%F65;_ES#_%YN#pWqj| z|B+w1y-9$Yac0zE%8zQOEUM#{s3jg@`QuS5GZS^~=Ac$)0ZzlEsPaW$x%SIpKH`m0 zTQdQJKmV5y&`85kOSA{IH)pXGK1MBN&DXBMR;ZbFMs2|$)E16HmHQTx;!kEc>WA4M zm<;cs%6V^Ce-#WNpa!y|GV)uz0_uZP168gwhTsTP$J0>_&qK|0D{95|qB^>Ps{h8) z6TNja&x@Hzul<(wSH*!OsN>RYUz8S20rN>`>%v$mayLn+(vcey?5V%IGC7t4%AAN!z9?u;(aYX0X6fV zF(qz7wSNXv;WLZJ`{3fa`~*~>I%-B;(ZfNgPv)1Xfeb^ z^mCYn_yfxi`RGo6T2y;wQCse>K|ov30Q+G}%#Fvazz0+ZQU7y>pgK-#@dBuy6=hKk zS4SP@MyQqQgc|U0a~f)^e!&#F|0@Wn;6BuzUBxo^47KO^Sr1hxhZ<;A)JoK|^d_hQ zwnkmw9;g9*iJIX^OoJ0q16+nWW8s)c_kSM&E!`zlNB^K2dWGsJvgZZwcT7}+aZx`r zlAy{bM{QLos^g5P!|OBcPGZvW#C)Gg^;2WIIs^v zEJm%!KGb2njH>Vt=D?4r2D3+X11N@SxH6W+T37rqR&1vTS6sCuVS?OjK$;5$?~FS=XuSXh^MJk%EX z+gjjDR0C5`GoNkoHK@b66?JX)qn7Rhs^dqfv+*8vR?^0B?PNpEun=miN}^V_n#J2V z{l1h)V-{)!=30C$YKt~l{4Ay>e#zpmQ5}6SW5smwq^OQFA|D)IaZHYl zFq-av9|9V{U{nL&ptj;W)Bt`$E&XcC-)QbZE$scTs!(1ht|cQ7afLmg^@m zs(f0EuKS;hfI2Q@mN)C5Dz-!|Wf##(GZ?UuF(<|f_*v*9?@Uav(Rmc6L&#AQ^yN2nEw5yzPlRX(@H%VS33jZkM~ zsO8T^ZS}f1+<*O8+)sk`_BQIrXXG#3$Wx&j%#W&2*=&JXiT6d-`_bHts(%qR^Jl1f zG2*%jq(=2u5OsFy#kKq2hXl=NniW`yYUmKEfm`M))QsZ9a~PPl z6H#BjFw~X=%z3D@vDi%mM-x^du{_U1<5!Jw5RKkS6?I)Q5-C2EG*P%|!I@e-)| zl~5hkMlE$q%O8qrcMMk0&;N-8ij!~@^}Ak-5NCPJPyB0C{u-=~53mdtO6d98;vl3U z-#P4vDH3_Xf4uHTrT>lWlSs|NR8?VK^B~;8ddySLr0~r(73Qz8~xJ zyV-2aOZ@MoUhr=wr%C3{LV48TYLCkIqXxbfb=@AKZb7W%?mFheWc2T=VhL?A1M#64 zit|u=v=eo2FI(J8;eP6+Mm1O+vtTb&xtXZ@z7;d$S=1K1N8OebDV@bJ`18Lx0X5VY zHS;iwZ^KaH*D)XZQhB~fkROZU4s3w0P=~TcYWFju9i}5b0M+hHi*G^==n`tcUK;Md zJ~Y|VxPlGL!RC*shPI(9UPD!kn%0>MHQ+`TAAwqdC8&Bw%*UvejUVdr3t~ay%|rbz zV=4(M5RMx0c~k>$Q5~mB=d6GlKzDNnY64rZ4&K3PSTMayAAuUsGCYOHa0)KS!0!_t zf8W8M(evdY&@z)7z~szssn?=@#kytjx2TSCW^sq9G3rx22z5&qVS7A}I)ufudcH>3 z1hsXm@Dg4}O>j##cYXa=2}CC0F6!PsM15FZpzdju?54SQfkzPCM)VX6~yRR z0b^nfi#I}*Yh~%(P-kTTawxg~1k~YDR6`LM758H#Jc4TAxTRl4eJO8Z0epsV*2Jjwrjbr6?Kdf@2R;(Oqz?HBKwn44j&b-`zjr1G|+S9*K zzvX^JEouCGZV3~k@>8Ssun_8}VHwn3)jPCs1^Oz(x;)$(tOl_H=Bq31T>P% zsMG!o)xf{zN7Rg?=XV_^K{XtTTDi=qmB@`6a0%4F%A#&f1G5e4u=YT;H`3Dm(+H@c zIhL^qwe;brB|T{Q=TI}hhT6+}sFiw->Nsiv*G?>~OgsduV>48Ti%|8#QCqSDY0vNb zoq!rRg4*Mg<^|NsTt|JeUScRFFX&dFI0k2m`YG7})lnZ*J0nmlGZr=Q8K{ou;9#7O zd3FDj7IGO?u^AaPu{kcm+~^f{1IUZong$sBjRrNqp{O4w)3G7$$F-QUi08YHN3a!c zEb2bViHf;_cgNtL|A!OMUX8-cI0dyO8_ezIKGY13nkP|b=B#-EwUU>SA1S^Y7Qcl$ zGk49uE&n^fuyK`Bu6c2I#hmERL8kcOP?3D^fghpqy?(o0jOK? z6>2LcVkrKA8el|m?!Ow`OoBSvVFmZ2uGMK&L(fnhzD6Cocb5J|374M`r_f?@R7cB7 zx@)!pgMYq2b$HwS6N4*KlKZbc{hI_Gl9#Bsuaqkg6O|qhgDYX_=}_gepiXsOi66 zsGoKZQMV&n8M`&8ffPrTE05YTe+vToB6YWfVW=hk)|_MMt1Z4A^(j4$>gc{1rL3Ds zTGW6tqdLrk>Zl0nj8#T0eJfRMGt&9psg zX8lnsH33y_E~=e%sG06Xo&IyEYx*2jK3+vvE+Yp2`F{}t8hLfpNL!eLQ4LKue=#?p zW^w>Epp&SMZ=%|Hf$At~B^OVDI=ne7o)?v0t`hfO4KyY}d)XP)&^Kn7xdb(k&E_Ad z2Ckyc#52@k^D4W6#Y7#lgqRDHTY44L;jD)xuz6*_Yv2bGwD*fq_j#omfjVrzTl_fc z6kozV_!P5ayDIMQ4^BqKH=(xVHWtTMsEOsT>i%q42{o|6egc}=BGl4tMD6VX)IhFU z`aM*+H>jD#uI4&QfSHMxMBSne79WW@i7!JP=Ch~)yhimCySf{oKNSJZC@-qvDyUOi z%WQ#K;%=xd8iML*25QOIqLy@%1AUqLwm#Ew_{zPy;K7Ix7`W9n?jwWJj!q{mpGyhIq8v zOi=f~G67YngPK_f)QE?mw&WXB!{ab3hM`tw8)`uNPy;@X`m)`${J*gn@t3G;owts& z25JJGG5Ej#{fdAZ7=s$|6pPP6b+`nzq{mT*=@ROce?Wa$vetE0G~1%K^lMbT$*741 zPy=3xn%IuI+-h4=Ni|5}RB`pyEVij`5nfHXpNFc3A2ZHp*~b6QQwcds6+b^ zwGz=9yYlf-hcYedEagBQ-i9vS?`uUs4Ru2`?8o39nhVXfs6E_)8ps7pzl&Ole^E1! z*~Dguk%;F+mCu7ZBc)LTs)3Pp|CQ}UHPFeZ1{RvDQ8V6x zTH?K^vvS_z&&_B}UH#;!0q4Oqy8jgjsA7B6k`F>{$#~R^W}zx9v;1wSl{$tx3%4yl zQZsk0lAvx?D%3;@qGnzUwX&5_18#_Zb=aDK2GAGP@n}?s-=k)-40Yf4VqtuOMKN=8 zcWB$7&cJxop_+#}OA)B@7g1*;ehb%6GF15-Ex7+$+VUjmP}D<>tT}3=9Z^5s`lD9j zM@wIB@d)z(Y69m`Tk`-lPyxdb%r{kz7IW6D=`7p&H~iHHlTib?nbS^bw2@(=q2il6t}gjm>;!t zH82N`Laoqh)Rsh`4(n;uS-58L=co=pq7G|F8#myrsE+evTC9t?(chPVX7)4cFfB#R zWIt+VM={uu#jl~R)g9Ep?qXL=*w%fhzQ#htSD@OxfvSHGwbjp2XD(8^VBGIZL_i4{ zP$MpcTDlsj5qCrlXcUg}_#mNHB2EW4z{IF6Nr^hVnNS@UMtxaJV@~XV`q?tg{1s#9 z{_iKCj*p|3?oZTVdxJWJF*~|LloZu*Y1H0TFuAk>PDK%M?Er~xcN-JU;C19^#A zF+(S|Sogmsf!a74m2nCy;XCYr25J288@y-tscmqMMf#;E#TQCs_EPrv&xj3q&bXqLGUbzfJaKB1c|eLLz596%ki z6R2_*P^bJ3>O=Gd^#O|1%caLdov9S4fo8XO2|ocHz8a{8+M#CD3pK*AsOuJn>i7p# z$3I*CQdEZ0a}&@~Rz+R2u2>NJpgt^%uq-z?~BvdEloz$9u-85v@&WX znxL**AJi6&L#@O#)Xaax;8vk#x(PLreW-yQK`s4dtc?#*11sK7x5Upkoq!S=V}5Ln z8o+eaj2EJob{j^<3#bmRptj~Vs@z|w!{+PnI!ullcsA6Qlr<}%CQu!NfBtVkKqKsI z8G|kExA;`l0B4~FHXpS$>ri{VAGJ~^Q7d>KwG!`8XDh}4H}Ev5{Pd{y3S#ho|5K8H z4qGGCKssO+9Dv%hpHSa{O{fpb6;%1Rs3ndu&}~6dR0kPQ?G!={uo7wo>Y^sl2=#&L zJdpdZ3PVYdlTmv)54DslP&3(Mp0M<*n3?pKsKb?dkmsv~889FA!|wPC=E1mw-Hc14 zR-`g&1zQg0{%fTDNYEaRM8$tHe?@(GwxU+z66#C%3NvAfFI{?B)C5|g_O=gdiHD%t z{l@ZVqgG<2#n<@>sNfz;_ye_MS5X!3p+*{Mh&$~`QA?QJ;w4ZW*0%H}7`(=)mFa`k zaS-aT?lSkFZj*mM0qyAtRE5W=YxM$0V)U;(Ut64rjqriR%MNt|T!0$DR@4gYMQzzR z)KcHZN%#f_MSfkU8gOmhEJk?p5H|s z#z-UFA&rkZyaiDMX^G13X7Ml0F_=&He>wqmyvH)mp=NR$bxQw54JamOMJ7beIJKD> zHNZTmfmKCqVQUO_jJb$^iFt7`s{T0){_p>8*I@=!JO`>?8Pve)qgJ4a*#UJH`k=1ycw}q*zIg<+q-#+l z-G>^;EmQ+fE&c)ZV>r$@_X|r_R7X`&>9tTR&<)j2Kh*bO3hGO`9JAsc)Yd-2?7II6 z$Gd+8t2F9MI2hI7_o&~D)}k6ZfokX>>QF_U;5tf*Dqj$_MRidFZ-`pzwifS>8t`D$ z)(pc?`u9yBpdTvBF*hE;O!yA7VY-QKE~ps~ zKwaA*sF{yI4S3Qd?!QJhp9I~{Wma$vs-X?2rQeM@d{32Wj(RJp`c+>haMsFkkhC!iImjT%5>)PTBLe3-?*LoL~S)OFin@k18B zW6#p$57GwGt;# zAE?WyGjP??Z<>!#EAqvlh6ZQK+P1L}9pawq9;`1>#@vRnrfGQt#mRpgGv$+4NP|XrL zpawDlwfE~$9Ueq2*#p!JqW|b_M{?9HNRLX-g{oHubygZ#etXOBg*rQaEQH@Fprzkq z9!KrDkqdwK&pz3Wvb+j8bkYnaW)M37Zn(=eg=@0qIeTXuken$A~ z5XecOKdPahQ4O!eP~3#N9T!mzTt_YSKW6MXZbq3g3+V+>9k)cSSP#^SOh64}9_n^% zM}9W=eY;%1w-5CJIcx=vnJ3LNsD{s5{4ex~-$xDnA?obBMjgHcbKQ#MLJgoOYT&g| z6YPc|y8nX+Xip}fX7~eYAWJR&E9wKa4fV}Ffx7pXPy@P!+WV)L9(kTC7aN<9o)~ju zFVq)x4(j$SR$TXg69L_V-Kc?_M2+w|YEK`cI(~^-I^WOk^hZX0`7)sPvI^>+cSoI- zsi^C>8Fia(pl;DCRQpNibN{s`83?F>@~9>1gj$JjP!*@+SX_qs1m|Ah@++VQ-q7rb z8t6dOH-7}`yD%2D1#?j=8IC$r2NrPu)zMKBLh%~vgYqA0NmDO$|1wz~RK>xlhQCEM zI32Z=OD%m1YHN0*zJP};{sdL-6>5cI{o*E?=NG@*lj!3L;P+zmB==~x?o!H)P0 zn_-hh9{)o#e$L}{Oug9sOXeT22J!Ms+##HTWr?pqt<*!**1WU)O#Y>Aq~%b1(*?Ds z<5BngSJaB!K+WJIYDp6;b6b-QwS{F-4YxsE=ZUD5*od0Q4vU{auAT1!Y76{V3G5+o z8+9m_E_YiIj(LfnL0zY)E8JmBhZ;yu)LAHl8el`LiTy2qC+f7H!ce@7n&5lX8AZpO%Lk+AKYRN~TuIUWS zj0;dJa}ZPO{+}SAC47vk_{A#MVS3aTtR!kBnxSU&E$YyQp;lrMs-p-jiw96E8Dq6u zu|%j3R9aNIoTwEjDe2!=nSf?m7qvvaQDJ+cH_yvociCnb@)1?1~SCr0o3GmsC}Kx@>}_eJgXS2z^E z!Tk6RwWqnm-BK4u4Wt5UOY5P|Kxfp_4?>mqhjahc!FUpMcz#3;U<2xVa1b?DRxGc(6yB+{o^{tVPs{fMgXpG!bXwG@LhHxHtIYF)Pc zSR37kBN=MIsZsT^qE2^V)Q718YKARP6Y7IHj6+b@ILy*lAp`LHHWJX@>_Rno9M#}e z)Jz|smhe5Q;TRF_%a;n(Z~@eSYNP5k!z|btHPb1mc4nYfa1mcjK5 z8EYH&zc2||wz-a4qej>bwWNcv6^=lC!LFdL-&@pSO|jh#G#4sf8MR`~PgBO`8M7j)el-l<|E2`AMD0;~+Z{FYZ&7DsHR{y=iCHkt@9t+qK`cwW9TvxhsM~NA zbx2>KW*)M~O)v{;Wvipgb;UIL`9F$)?&|{7Pr(TDDym@Qz3y73My*gm)IjQD@TVH; z-Um=CvIf=O@2CM>KuzdxRQn0`Ig4N_`uDXWpnE?QRbjftm!L+x9d!mSqqfSo-~Eip zfLV!FLVb{Wqsq@ht-waijwexv@ja@3)&p*UHPElq*p7fsZFkfsvma_p2ARWA0~?E_ za5m~5UqG$Mzh;7iuH#&&@>Nk=*9x_gV^Ftg9;%-;2f6>cui+%7WeXgI3h(TDu*K29e=r*$@J30I(2 z<{)YyC$R*cLmjq|!_Hb*n)n3NC-s1(`~Gmh4VSM#p}K-PoH0&0bD<7hebjXxjsMWeXocIPgwEX^m+7+yeYOpWrn#@66v)?WL0CmmcpK;}~qGsL@b^1r6%CACwYR}?O zjCs}#U<|e=z8SRwsm^HyxPQe7sDXN@9}dG%BV3Le&^gpKi*(+V%Yj;nMyTubm8H)? zmD`UR$P?7cB)#A)iJDkDRDa_!tM30g0_yM*Y5>tMIt!uFJD@t6hUqXI)xcR)NB^Og zHp?Y9;M%Ay7>deYjB4j7YJhLC4raK_{Vz#i00EtWwWuY%jSn&8iu+%ye#CqnrthwD z2yy2%w*m=nxTP+HI!xU#4}OCh@LJRlrPHX1Ju*|=^n8PeSG~#oSAiWQ^v3h3!&3Q{ z$A5l>tw7CWz-@PL=b=6vi%{2d8R}EJ4s}frU`#xM(eWJWT3^H1_!xEX-&%f*JKTSL zDB|C7ACe5H4@Q2AS3sTO`lu!DkNUL!h`MIKVKh96k?;b>!po=u{e^1(A!^A#q6Sv` zPdAXpegZnx9Z?N^joPEp7#CNfI@*fb^9!gCQKY}zm##GGkk&ybJOVYqd#Ei4x#!BK zLTzCvYO8CYwyvYo@9RZCBOZ*ZI36{!>8QP$Z}HWr8E!`{^+k+>SIqmUU(sG-1jf4W z;=iMA%{kN|eT|xEya$>f_b)vG9ik#;Ez}Q@4yXnPS$raDU_Y5FFqHUa)RJC89kzc_ zD-`vi`_O!W+JYRYek!2aZ-$w4|9cS7kH_h#CH@t4=+CD%_98(`HxacrKcYHXY4JZ$ zXXF~{dOfl9x2RM8#S@pG9hF}KHGs+%uZud&El>mMYw1JuuUs@HVKfP?@DgeuMgMU# zuZo&!OH{=+sB7BA;=NHb8;m+!U!$&L7;1}lqGtLhYGRL3htYfL2AIKbfn2DiDS|3k z8Fdz#;V^84`S7Bp$A0Gijmdb}LglakZa`hv`>27%dG1yy1htiUP}i{n)(iT#_FJ(^Br@tndO(|4@grsErL!pTnlPNyHPmhA_D65(OzfUF`ywWey zR$L05rJYGsDoNTL()8SP_+l}0Z3PeCe{1m@Yvcx%s`5^tvz6pELLJORbz0xUPo4mzVkECG#zC9ES-bt)Og=7>; zZG~zf2?j)6<6V7V4hDY$Sf5JQpYU=mQs>0ZpQRx5(uNxIVz1qJ=tuO1xU+Ihg&HVowR7!idRn^W>Ay-0n{1)S%=C? zLY_XuF{t}3`5g)8C%l66xx`c0B--i!e`}x3S`|wW{y?G2H29owKWms@h=WfaY)%7t zZ4gTQp17V78c^wJ4-# zF12RUUS z!n>ESo`i(!QKv2W6$l?BeNa^9KhUC4K&3$xK8#nfBI)|0w7%gb2p{7e zO!}v17j+8RpgyI^jdXUN^wQS;A<{yqs~^9?^}l45zM;TrYj8J}J~F~pr2WF1$4=~i z(!#0Nn{p+s-hSe@tnq(nSWh&{?X$4r?}_WzZ#}(fyF2gKqy_)`PgRIaCb9!NP@oRs zPtRRCIckIAR|H=f;)(DW9bTpU9SY{cF_fu5-YctkkNm|}ZwKLngpX5BPfy;Ryw&vI z-%CYfGl`6*ke)uDb*}goDt5tvc+MJFM49fy`O}oIw5?1^%PYsM|F)U8Agv^CHp(90 zZNhuOR;>o%1^VxAw4p#w8tF_%TkCuX4b&%`gF-Pd7kM4=uys<5a4iOvi~Nk(&C=U4 zi9d)(B0UY^29#T4dC6^pWc#MrAhP?(yspBQpv+(CygzAr@>8h>jp*SIHoh>*W#D~7 zenZkW@V>Q%$5=;0Ek2KSz9elOPO>)C&SLU6;!fHL-v4MMY_Jad;TtMUS4o~-*4W=R z!2gIRCmcecM9)m%g;pF|NAh1 z{+7RQH4Qzs0%aIk590q2uSvKf6-H2_HRX=*rlw&%!*L1a^yqJ|{6XI5PXi(=Nb73l z`MWN@JG8j~eP)hR zBYn1dD$trdJr8+jQD!Rb+@;R9#EVmQCGF(0I{xfruC<18QAmG)Jb?}9I4gM}6ih^X zIN?uEE%H`cow_78AipK?ji@J~4fJ;g(uaE4NzcF=g*T~nJd(U`_4B_2i36x`goIXv zBdp<(<~PA6nLU>LG&9OwWDt7dk`{+fs(d!UxO8&P1~HqmKl1)-<;xP@Mc%?-TkQXH zGPY4Ui#5;^-_!876yVR7|9jGsKEoPOVn-{l@LdI~74;XA)|7Ap(#H{h zLEbXbT9ft#@d!VWI5yL=bk>goJ1N|O@G$IZ9ezc)CE+Wm=Q`nmmbZiWca%R*TY5^6 z{ws~IB))_4`3SFaS;0T%E4bU@{_zyJK>3uBJ!7$vg=11KKjDw~#sBKC|Mh63Iu%#h z090`ljfB}s1gMmZ3Q>rEO*#FM?N`DX@g8Nr#Wmz_!wjm-^N-aXjXTKeVR4ts=bbm3PGao^?E`v)zrztGGnkwoYtmE;d6(_Aem6uvxV;f9XI(}}Q z#<%i+kavXe2g?3S-W%eVXkX8H-n^tY)BPVvBq5!4At4EG5h{(Pa4ahQqS8ER>EMtx ze1N*OS}^Ka(>1czfEQ=94#)HzjpCk$#tcehSuS{U6fsP!eO|V+y^c z(i7BknDp1Aujl>28qb4c$h%{W=O?_F2Iuo`qFg=RYJ~HWzK61@h%Y4GidRo{Jm7-- zZ;1%RXY@bPSR4v>!i#y|lb4>f#*}SGqk6s|za;5@1!v>Z^w%_` zwZ;jQyN>J0--Vw)r-=B!v{@))C5?Z2-caEQl?z!yLdsS6lxbG~tb75|LMdO@W~m~@ z7(^xFhp5|uyvoE!5Uy{7O&5jzPeQ^aGWCq6u>J<*W#WT*+Y?`5o!q9}1S$?D?S?fF zK{$P|ru$2BI|qu5rA%IH_ZQUP-g`k?%Un@kS<*H}{`~%t@wYX67w=IZGb4Ux19(8% zI%{wSK2@0aIQbj!Cu_JIgSt<>6R%=3ZA^F$Y1LGa=Qeeck=Bc{O$pDyx1@Ksfv8MY^6M+W z<3DGkQe-5BqA{S8yuGRTBWaT<9F6oDDqznNtCJC%Q1)xyPft=h4W~|8-nW*nzdzWK zviE7TENvAfJfD0Xzb_$)dJ1D9W;G4(klDs1`^HjuE)5N(;XZ`*jJAg3TisYTyWN!0 zGmQ5)(&}5es?__Ev|h^Od2Hpc>HGWCrTL;#IsIn`s5kKi45X49sV}qHgT~tMhVl;K zElgt?M-SeL)UQCj-)$gm$%{oeKIQcMM|`5S!{5pEP4$!Tj+cM3_P^&33OBKtDRDIM ztyGF)X?ZCBp0J`u$H+cQ2DcpiW zm3Y4+ycYM7k(=-%8q7h3c2rDDBcC4qec$RzCoQj~KcQYS>gkz*ji_JC;xlRI7Uf^^ zz9T;_b*7Wg^MCJOV+xlIrZGw~C%FPX&l(v;-UAvqN&F`2$%(763uP}@d8L0z2laXX zU{E!9OIhAf97prjoo;eAhjCH8eM;jz@sOB+*23nN~SvQbI9NnFo-+IT_R$MBI2;!n!>f1uFM1d@=U z=ON)dyq`bMC{z5igr_vRghuA$bm|2xFBkQ)5ie;Sq#}I`gGx($0O@lG>lul$sryBA z_WwAQ3X-tbGV{~fRl;W}c!x^6DHxqsPbJ&)*3OuCYq(mBy3YI?PAdBX0?Y+P7g79sOjTEyWZnOPNlzvkOmI zUMU;gQY>oWk#u^`@>@~QKyi9aWNn>yL>2mFpYg(y>iyxF{Q>39qAoWWW1BbjnXDd!(gVk8>T6PLFo1)5?- zD>#hGdUg`eVQKjo%n#JrN++eq6_`PsbXDVvkd^U_9X{rq1~ zW@0i9kof62%%H}7ieMA#I1@&tfnO>A(mJhec`AOHdaKB5hM%4WpS7ET!Mr3tpQQ!= z`!D4v8HdEuG!#aoWf)l(;u{FBq@ib+jkK)RVQCtvNCSPzdq>&^>Q&|)K>Q==g9w+R zOb6Qd^!!73FlEzI=4;+hPd@GcQ7br_)T1`Cf}}m5p+6~{na&pwZ_gV}d^cqZ(!nLd z9r4q1fbwVPvV>RAPbnxk!L&F~|@|5~}dGmc%_ZPzBEPhJA|6if-*Vdux{l;60#*5K# zQyTl71}5WQsAmvwPU3o!S;vdWn@W5=^-|dk)6nJ-+R(Fy4m}Gie%|V@*Wdq}XchX< zNH}jd;+<_kC8!vScz@n0yqU>gL)uGg;3bXSBwbGi(#}&alz3F@tR4PG`QcVx<#Ljr zj&}5<)}Q~2P@oP@AmJ!sJq=BTBimrYtNfvmMCo@`LRjc zW*rZrZWYq~uLCgPE7-2lJynUv;BCR1UH3mW8Sxlh zYMYq~^`fzuRO(5gMa0wbek44fS5FvudPZ2CN3`*ZI;|{Tf_Oz&B>2~T#IISM`;<$} zpij}3KQVs^rN|+SZ;c@bC7c7N!vnx9ond(@BgP~GY$79lAgl5tYRk8`cWx2g=<B9`7HN z&&K;3WlGTT8LLlL@aghd-O@Jr*p%6*fBsX34&w4&;jLkr$E{*X8e2tY4K4i@BiEz9 zZ9kRp78))>{5|>0Dc6-Y^sKXTTS(7Hxb0^H(3Yp6%s1Fszr&X%;-^q=3Y91B(W#Gk z8PLWqwzHC$Xi^p&>mfh(}Xhp1&Nv#tdi~`J1TMjkNBcwKbS@|11*6+j2Fe z&<6&f=U3jUyisWItaXr;yrPtePb1~5BOiIusQ(M;G3jhM;TMEA5&qrUEpMG3p}j%m z#iO0sy@FWUv#9nl8jY@jv5#Ma#*OdE)w-f`phjmGxMqB%7 zYc^%yQT7YoX2jQ$H<7d~ybpNwxn~|wAOi9 zI=n?%HsW3J8fBBb>8VLW(W$fq&ygP!^^CHz%gGyPX@3$vZuL~Aq?O5TorhbVzZ01km_;HoLR69` z29?(lKSia^HshI8XlmiU_>qo=P;L)p{w2Pb^6{zr0&A1rg15CgwT?Sc<`1j?y>&iQ z`=5}4^~hL8gMA6dCbK#9UK2h|I5G{MCjUMjAx+PHYe3Xq#U19;D0#I)6*K9F*&4 z1F1@SQ_}Plwfe>Bc%02RBYCk2S0?`j>5;AMD}4;~gqRU@+K|S4_%8)Ne=3t+fW{Bd z&>V&7ye4I?<5sKxsr+x`mm+-<`NL>S&nfde!ez*>PTW72$Z9I5qhKu(;?el;gf~+_ zPc^eEd3^|HP=hqQlyVKM!5-8<=!*Li5su((LfJEv)zgLWbZe&tb<+|4lXs@R|JMmT zprPv&UW3VKIADcUIVNcnc<+(^ND21LqLX5*Mt}wzSx3_-qh}rQ8-$0tsILlTH&HG* z?M~rsL;MTu#J_*&dr9Fhtl~{Fz9c-C!ijAk_tW_((tjd-2$fPPjCyvH7QwsTMSZc! z)AKF$12!ndPx5Z0of_0@%e#QQl*Ie!U}YhYgGTC;v6}bQXBAhGzKJr+Xs{vaEeX#e zO;3K(^i(E&J8e89z7!)|vTw5al=5e3w}91~tO-yqA94R}D%T?O0&i6sXhfyrgqKku zt977u4pMltH8_FrMe?rNK+hBZg+`m$?5&tD9`U)nQ7HTKXKg7z6{}lF|CP2|R%suJ zQR!6AdeUywXn8sq!MmKa9@bf~0DoCd{$<|w3|3D(I#`L5Nn2uVW>!Ylavl5h9hfaN z{Kl?zUigCFyLe$q_s$J_wYN!F>wUAs;_Po2HfDeJ@V)!{cwvOXKm*qk%9!wQ_u5`OUP_()-$FZ>dg;o=Wr z2QPjb*5y*!z=A4X;;`G7Dum^~d>}0QmHXj&uNL#dhhK}$h_6ra!iwDN6}IJOrLfqy z3Wn9V)hX=vTQkBs+};?L(FjsCtsypz1nr_>8q4Ge9E2Hk;C5J?HV@d zUgfZOkJ5(uAH@iii0#DSOu4Qz|&O${82@3jcz zOWzq9-Tr+#ck9_HqEb@tN#sDul-_TFe^Yur0zFcBNg~Fj^3p~L90>I?2HuByT>>Z4 zd5Hs0(|Jn+%hNNK#2LIQfk_#>VQ~lestxSaYd|PX4eZoEP%0xWoXF^{3VfT12HRxz z_671}@yY~-W%05GR%P)T1mb4(G6gDR^%4epWc6YO&S&+K1U@KKI-8d#>YxFg`VWYh zmCf_Kh{f5xe_FlC-j9JN z`MoqzzHHaOcOYj0FHfL%0k2}jaYA08P$6%9AZlSRDXY>qFu#(QDp0*J6PQ=nD-^g@ zn1(AB@g@e&7x8*UG%o7R_W~)4d$9tsi+eQ!GmCqd0^gMIhWt>{yBPRb((4d0tCY9K z3v@2yRSo=6#)}BtEbFBVtV-^s51cOR4Gh#S=OvBkTh2=rDX_YNmm}g`1+SPF;Qwyn za73QU-ZzmVUQ}grf$Y`2H4)GFix;t?rdJ?p;7vU*O(1=JZ$;pIeQ#aFj}5#mks?kv z@;Z4D-I{oly+D*^-r>OIW?t<;q2^xNh@Q>8Azt9$7GAAD^OoMEK(tn@3;(g?Q6b%W z_3hco*C0q}<90mb(5pPoJ4jqx?;(XDr2Uu))ArVTy!Xya`Pa_PZMh@if?4^oW*4Z2Bg$(GV>YY0J8n)}-rPILBYIOt6x_V6` zwsrMxMv1uC%S#q1kax6~C!$qf?^Tq*PlMRk3}1OETEXp}0_Q1ztNV9QF$ zMB7?Ttq z!82PWl|kDygg3UyV%1hIRXWrT`3SuAwmy??f0oU46%xmW3Q6Mi3eEZCN|~c}RZ0z% zZq=16%-^j+*tJ{dKd4$Gv8Y~0{Eskm_RCP_?3e5zK39>~V_K25m}v)Od_VBf zYVZL`gF1akIuU9&*==PWlVekfx6IV9Fzz{`xBcl6d5vientR0!dfM6`=|P(vj$)5# zv)k}GIJi-KsWW2}QeqQlS&|a1$;s0b^cA?+=JCcZciUVZr_F1)t(H~!Wv(lY#g=6S z8#LRuT2gae#V%vBi`N?EXyB~aq}i5)=dB3|bRU%|6B3hSbO=|W&sONLS_(XYKX|iI zYSaF#CN;^|qQ<@>mxcG6rHv2Y6&v&4lT(~@T=ID0xV)gA9G7dtp7(VsZ=aOk^5au7 zpJ6SMs(#%fS)wMKmSU*Gtujlf8zn^1*Cz9WUH;~+r9O-PuFGq?@H4q79NsQ(vZY8=v5v6 zlo34kg$~mDrEK8a4<(0F9_a_+kNPeDU;mH(;x~Ha|F=wJoV$X9uJ3t*R0nl|dPXdy~J}%lT&P;_u9`b8Z0g_HrUW5UtqwwA06!m&7)}ns&fpx!Mvu4ah`+Vi z67AvKP@Lny5h$Q%1Qzh`BTzXe+i)6P9mQp)3|$S}mXc>vM=>vq#2fUE!smQ_H2S#j zIXq$g807N%G05TCFck527^ZP_I6}A}9HIOq9OKZ{#S6?Jt`U0uNBDp_(TEzFWoYFZZcD7C z)W+s$%;f!OIFxfTR*0@j_&uLaMI`f6F^cIiC}npHvKTuJYuPXjSGi?6&a0Papb)$q zha9yu9t(x%5^z!#CSttsOcDxI=1fHDay3gQeE4j1b6yI<4yB;|xvZj1hQ(R5sYu(x zDlKZ8+vfDQs5>cG0xq^b*P%+-WJkD~y&g*g_@N!+RJ;TCgi(c<$ecpts`f(M2~anj2mvqc zM1)E=aB={%eF$c}4{_Y(!zrFD!&rW`8AB9H`=NPf3u4r~Ezq8P-G>2eEJHglZ^bK| zxea^yWEx)*P%jWzwBykD!+a&@16v2P!0d8iK2gI+f5F2if% z!#Yf5bUj|AyB=14R*wlPct2hhIuB@JJY&)_>eG}H`3ydcU^VVA3ZNc0Al5uaR|>5` zQ;A#qpdPiDJccjda5JMxgHYLoa)um3JYPMA**tU%c_Y03kL<3lHj~R%;;}iW+G0%q E1!k^xr2qf` diff --git a/pandora_console/include/languages/cs.po b/pandora_console/include/languages/cs.po index a649a9b2ac..e6461360b4 100644 --- a/pandora_console/include/languages/cs.po +++ b/pandora_console/include/languages/cs.po @@ -10,22 +10,16 @@ msgstr "" "Project-Id-Version: pandora-cs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2013-07-15 21:44+0000\n" -"Last-Translator: Zbyněk Schwarz \n" +"PO-Revision-Date: 2015-06-29 18:36+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: cs\n" -#: ../../include/functions_graph.php:2125 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "Skutečně" - #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 msgid "There was a problem loading group" @@ -1739,19 +1733,19 @@ msgstr "Žádná plánovaná odstávka" #: ../../godmode/agentes/agent_template.php:69 msgid "Created by template " -msgstr "" +msgstr "Vytvořeno šablonou " #: ../../godmode/agentes/agent_template.php:152 msgid "Error adding modules" -msgstr "" +msgstr "Chyba při přidávání modulů" #: ../../godmode/agentes/agent_template.php:154 msgid "Error adding modules. The following errors already exists: " -msgstr "" +msgstr "Chyba při přidávání modulů. Následující chyby již existují: " #: ../../godmode/agentes/agent_template.php:157 msgid "Modules successfully added" -msgstr "" +msgstr "MOduly úspěšně přidány" #: ../../godmode/agentes/agent_template.php:184 msgid "Assign" @@ -1872,7 +1866,7 @@ msgstr "Akce" #: ../../godmode/agentes/agent_template.php:258 #: ../../mobile/operation/modules.php:555 msgid "No modules" -msgstr "" +msgstr "Žádné moduly" #: ../../godmode/agentes/planned_downtime.editor.php:34 #: ../../godmode/agentes/planned_downtime.list.php:48 @@ -2006,7 +2000,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:63 #: ../../include/functions_reporting_html.php:2489 msgid "From:" -msgstr "" +msgstr "Od:" #: ../../godmode/agentes/planned_downtime.editor.php:356 #: ../../godmode/agentes/planned_downtime.editor.php:367 @@ -2030,7 +2024,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:64 #: ../../include/functions_reporting_html.php:2490 msgid "To:" -msgstr "" +msgstr "Do:" #: ../../godmode/agentes/planned_downtime.editor.php:377 msgid "Type Periodicity:" @@ -2838,7 +2832,7 @@ msgstr "Běží" #: ../../godmode/agentes/planned_downtime.list.php:300 #: ../../godmode/agentes/planned_downtime.list.php:488 msgid "Stop downtime" -msgstr "" +msgstr "Zastavit odstávku" #: ../../godmode/agentes/planned_downtime.list.php:415 msgid "once" @@ -2915,25 +2909,25 @@ msgstr "Vytvořit nový serverový modul předpovědi" #: ../../godmode/agentes/module_manager.php:132 msgid "Get more modules in Pandora FMS Library" -msgstr "" +msgstr "Získejte další moduly v knihovně Pandora FMS" #: ../../godmode/agentes/module_manager.php:159 msgid "Nice try buddy" -msgstr "" +msgstr "Dobrý pokus kámo" #: ../../godmode/agentes/module_manager.php:258 #, php-format msgid "There was a problem deleting %s modules, none deleted." -msgstr "" +msgstr "Při mazání %s modulů nastal problém, žádný nebyl smazán." #: ../../godmode/agentes/module_manager.php:263 msgid "All Modules deleted succesfully" -msgstr "" +msgstr "Všechny moduly úspěšně smazány" #: ../../godmode/agentes/module_manager.php:267 #, php-format msgid "There was a problem only deleted %s modules of %s total." -msgstr "" +msgstr "Nastal problém, bylo smazáno %s modulů z %s celkem." #: ../../godmode/agentes/module_manager.php:482 #: ../../operation/agentes/datos_agente.php:286 @@ -3253,7 +3247,7 @@ msgstr "Ikona agenta pro mapy GIS" #: ../../operation/agentes/ver_agente.php:966 #: ../../include/functions_treeview.php:474 msgid "Url address" -msgstr "" +msgstr "Adresa Url" #: ../../godmode/agentes/agent_manager.php:385 #: ../../godmode/massive/massive_edit_agents.php:377 @@ -4465,7 +4459,7 @@ msgstr "Skupinové události" #: ../../operation/events/events_list.php:519 #: ../../operation/events/events_list.php:533 msgid "Events with following tags" -msgstr "" +msgstr "Události s následujícími značkami:" #: ../../godmode/events/event_edit_filter.php:302 #: ../../godmode/events/event_edit_filter.php:315 @@ -4481,7 +4475,7 @@ msgstr "Odstranit" #: ../../operation/events/events_list.php:525 #: ../../operation/events/events_list.php:539 msgid "Events without following tags" -msgstr "" +msgstr "Události bez následujících značek" #: ../../godmode/events/event_edit_filter.php:353 #: ../../operation/events/events_list.php:489 @@ -4719,7 +4713,7 @@ msgstr "" #: ../../godmode/menu.php:46 msgid "Module types" -msgstr "" +msgstr "Typy modulů" #: ../../godmode/menu.php:49 ../../operation/tree.php:67 #: ../../extensions/module_groups.php:324 @@ -5573,13 +5567,15 @@ msgstr "" #: ../../godmode/setup/setup_general.php:219 #: ../../include/functions_config.php:178 msgid "Referer security" -msgstr "" +msgstr "Zabezpečení odkazujícího" #: ../../godmode/setup/setup_general.php:220 msgid "" "When it is set as \"yes\" in some important sections check if the user have " "gone from url Pandora." msgstr "" +"Při nastavení na \"ano\" bude v některých důležitých částech kontrolováno, " +"zda uživatel přichází z URL z Pandory." #: ../../godmode/setup/setup_general.php:227 #: ../../include/functions_config.php:180 @@ -5595,11 +5591,11 @@ msgstr "" #: ../../godmode/setup/setup_general.php:236 #: ../../include/functions_config.php:182 msgid "Command Snapshot" -msgstr "" +msgstr "Snímek příkazu" #: ../../godmode/setup/setup_general.php:237 msgid "The string modules with several lines show as command output" -msgstr "" +msgstr "Moduly řetězce s několika řádky zobrazenými jako výstup příkazu" #: ../../godmode/setup/setup_general.php:241 #: ../../include/functions_config.php:184 @@ -5657,7 +5653,7 @@ msgstr "" #: ../../godmode/setup/setup_general.php:271 msgid "General options" -msgstr "" +msgstr "Obecné možnosti" #: ../../godmode/setup/setup_general.php:331 msgid "" @@ -5818,7 +5814,7 @@ msgstr "měsíců" #: ../../godmode/setup/setup_visuals.php:174 ../../include/functions.php:407 #: ../../include/functions.php:551 ../../include/functions_html.php:707 msgid "years" -msgstr "" +msgstr "let" #: ../../godmode/setup/setup_visuals.php:175 msgid "Add new custom value to intervals" @@ -5918,77 +5914,89 @@ msgstr "" #: ../../include/functions_config.php:431 #: ../../include/functions_config.php:433 msgid "Agent size text" -msgstr "" +msgstr "Délka textu agenta" #: ../../godmode/setup/setup_visuals.php:295 msgid "" "When the agent name have a lot of characters, in some places in Pandora " "Console it is necesary truncate to N characters." msgstr "" +"Když název agenta má hodně znaků, je třeba ho v některých místech konzole " +"Pandora zkrátit na N znaků." #: ../../godmode/setup/setup_visuals.php:296 #: ../../godmode/setup/setup_visuals.php:302 msgid "Small:" -msgstr "" +msgstr "Malé:" #: ../../godmode/setup/setup_visuals.php:297 #: ../../godmode/setup/setup_visuals.php:303 msgid "Normal:" -msgstr "" +msgstr "Normální:" #: ../../godmode/setup/setup_visuals.php:301 #: ../../include/functions_config.php:435 msgid "Module size text" -msgstr "" +msgstr "Délka textu modulu" #: ../../godmode/setup/setup_visuals.php:301 msgid "" "When the module name have a lot of characters, in some places in Pandora " "Console it is necesary truncate to N characters." msgstr "" +"Když název modulu má hodně znaků, je třeba ho v některých místech konzole " +"Pandora zkrátit na N znaků." #: ../../godmode/setup/setup_visuals.php:307 #: ../../include/functions_config.php:437 #: ../../include/functions_config.php:439 msgid "Description size text" -msgstr "" +msgstr "Délka textu popisu" #: ../../godmode/setup/setup_visuals.php:307 msgid "" "When the description name have a lot of characters, in some places in " "Pandora Console it is necesary truncate to N characters." msgstr "" +"Když název popisu má hodně znaků, je třeba ho v některých místech konzole " +"Pandora zkrátit na N znaků." #: ../../godmode/setup/setup_visuals.php:312 #: ../../include/functions_config.php:441 msgid "Item title size text" -msgstr "" +msgstr "Délka textu názvu položky" #: ../../godmode/setup/setup_visuals.php:313 msgid "" "When the item title name have a lot of characters, in some places in Pandora " "Console it is necesary truncate to N characters." msgstr "" +"Když název položky má hodně znaků, je třeba ho v některých místech konzole " +"Pandora zkrátit na N znaků." #: ../../godmode/setup/setup_visuals.php:319 #: ../../include/functions_config.php:443 msgid "GIS Labels" -msgstr "" +msgstr "Popisky GIS" #: ../../godmode/setup/setup_visuals.php:320 msgid "" "This enabling this, you get a label with agent name in GIS maps. If you have " "lots of agents in the map, will be unreadable. Disabled by default." msgstr "" +"Zapnutím získáte v mapách GIS jmenovku s názvem agenta. Pokud máte v mapě " +"mnoho agentů, bude nepřehledná. Standardně vypnuto." #: ../../godmode/setup/setup_visuals.php:333 #: ../../include/functions_config.php:445 msgid "Default icon in GIS" -msgstr "" +msgstr "Výchozí ikona v GIS" #: ../../godmode/setup/setup_visuals.php:333 msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" msgstr "" +"Ikona agenta pro mapy GIS. Pokud nastaveno na \"žádné\", bude použita ikona " +"skupiny" #: ../../godmode/setup/setup_visuals.php:343 #: ../../include/functions_config.php:447 @@ -6258,19 +6266,19 @@ msgstr "Klíč zákazníka" #: ../../godmode/setup/license.php:62 msgid "Expires" -msgstr "" +msgstr "Platnost do" #: ../../godmode/setup/license.php:65 msgid "Platform Limit" -msgstr "" +msgstr "Limit platforem" #: ../../godmode/setup/license.php:68 msgid "Current Platform Count" -msgstr "" +msgstr "Současný počet platforem" #: ../../godmode/setup/license.php:71 msgid "License Mode" -msgstr "" +msgstr "Režim licence" #: ../../godmode/setup/license.php:78 #: ../../operation/agentes/alerts_status.php:423 @@ -6786,7 +6794,7 @@ msgstr "Použít graf přístupů agenta" #: ../../godmode/setup/performance.php:104 #: ../../include/functions_config.php:369 msgid "Max. recommended number of files in attachment directory" -msgstr "" +msgstr "Max. doporučený počet souborů v adresáři příloh" #: ../../godmode/setup/performance.php:104 msgid "" @@ -6794,6 +6802,9 @@ msgid "" "number is reached then a warning message will appear in the header " "notification space." msgstr "" +"Toto číslo je maximální počet souborů v adresáři příloh. Pokud je toto číslo " +"překročeno, pak bude zobrazena varovná zpráva v oznamovacím prostoru v " +"záhlaví." #: ../../godmode/setup/performance.php:107 #: ../../include/functions_config.php:371 @@ -6802,12 +6813,12 @@ msgstr "" #: ../../godmode/setup/performance.php:113 msgid "Database maintenance options" -msgstr "" +msgstr "Možnosti údržby databáze" #: ../../godmode/setup/performance.php:119 #: ../../include/functions_graph.php:2533 msgid "Others" -msgstr "" +msgstr "Jiné" #: ../../godmode/setup/os.php:70 msgid "Fail creating OS" @@ -7703,7 +7714,7 @@ msgstr "Naposledy vysláno" #: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97 #: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204 msgid "Stand by" -msgstr "" +msgstr "Vyčkejte" #: ../../godmode/alerts/alert_view.php:113 #: ../../godmode/modules/manage_network_components.php:555 @@ -8665,7 +8676,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:339 #: ../../include/functions_menu.php:445 msgid "View visual console" -msgstr "" +msgstr "Zobrazit vizuální konzoli" #: ../../godmode/users/configure_profile.php:343 msgid "Edit visual console" @@ -8674,7 +8685,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:347 #: ../../include/functions_menu.php:473 msgid "Manage visual console" -msgstr "" +msgstr "Správa vizuální konzole" #: ../../godmode/users/configure_profile.php:353 msgid "Pandora management" @@ -8737,7 +8748,7 @@ msgstr "Rekurze skupiny" #: ../../godmode/massive/massive_delete_action_alerts.php:143 #: ../../godmode/massive/massive_add_action_alerts.php:142 msgid "Agents with templates" -msgstr "" +msgstr "Agenti s šablonami" #: ../../godmode/massive/massive_add_alerts.php:81 #: ../../godmode/massive/massive_delete_modules.php:58 @@ -8762,21 +8773,21 @@ msgstr "Nevybrána žádná výstraha" #: ../../godmode/massive/massive_delete_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:310 msgid "When select agents" -msgstr "" +msgstr "Při zvolení agentů" #: ../../godmode/massive/massive_add_alerts.php:176 #: ../../godmode/massive/massive_delete_modules.php:342 #: ../../godmode/massive/massive_delete_alerts.php:227 #: ../../godmode/massive/massive_edit_modules.php:313 msgid "Show common modules" -msgstr "" +msgstr "Zobrazit společné moduly" #: ../../godmode/massive/massive_add_alerts.php:176 #: ../../godmode/massive/massive_delete_modules.php:342 #: ../../godmode/massive/massive_delete_alerts.php:227 #: ../../godmode/massive/massive_edit_modules.php:314 msgid "Show all modules" -msgstr "" +msgstr "Zobrazit všechny moduly" #: ../../godmode/massive/massive_add_alerts.php:181 #: ../../godmode/massive/massive_enable_disable_alerts.php:147 @@ -8923,17 +8934,17 @@ msgstr "Nezavedeno" #: ../../godmode/massive/massive_delete_modules.php:324 #: ../../godmode/massive/massive_edit_modules.php:275 msgid "When select modules" -msgstr "" +msgstr "Při zvolení modulů" #: ../../godmode/massive/massive_delete_modules.php:327 #: ../../godmode/massive/massive_edit_modules.php:278 msgid "Show common agents" -msgstr "" +msgstr "Zobrazit společné agenty" #: ../../godmode/massive/massive_delete_modules.php:328 #: ../../godmode/massive/massive_edit_modules.php:279 msgid "Show all agents" -msgstr "" +msgstr "Zobrazit všechny agenty" #: ../../godmode/massive/massive_edit_agents.php:95 msgid "No values changed" @@ -9182,7 +9193,7 @@ msgstr "" #: ../../godmode/massive/massive_add_tags.php:43 msgid "No tags selected" -msgstr "" +msgstr "Žádné značky nevybrány" #: ../../godmode/reporting/visual_console_builder.php:148 msgid "Successfully update." @@ -9301,19 +9312,19 @@ msgstr "Žádná položka" #: ../../godmode/reporting/reporting_builder.list_items.php:473 #: ../../godmode/reporting/reporting_builder.list_items.php:478 msgid "Sort items" -msgstr "" +msgstr "Seřadit položky" #: ../../godmode/reporting/reporting_builder.list_items.php:480 msgid "Sort selected items from position: " -msgstr "" +msgstr "Seřadit zvolené položky od umístění: " #: ../../godmode/reporting/reporting_builder.list_items.php:482 msgid "Move before to" -msgstr "" +msgstr "Přesunout před" #: ../../godmode/reporting/reporting_builder.list_items.php:482 msgid "Move after to" -msgstr "" +msgstr "Přesunout za" #: ../../godmode/reporting/reporting_builder.list_items.php:504 #: ../../godmode/reporting/reporting_builder.list_items.php:509 @@ -9337,10 +9348,12 @@ msgid "" "Are you sure to sort the items into the report?\\nThis action change the " "sorting of items into data base." msgstr "" +"Opravdu chcete seřadit položky v tomto hlášení?\\nTato činnost změní " +"seřazení položek v databázi." #: ../../godmode/reporting/reporting_builder.list_items.php:562 msgid "Please select any item to order" -msgstr "" +msgstr "Prosím zvolte jakoukoli položku pro seřazení" #: ../../godmode/reporting/reporting_builder.list_items.php:587 msgid "Are you sure to delete the items into the report?\\n" @@ -9358,7 +9371,7 @@ msgstr "Editor grafu" #: ../../godmode/reporting/graph_builder.php:187 #: ../../operation/reporting/graph_viewer.php:128 msgid "View graph" -msgstr "" +msgstr "Zobrazit graf" #: ../../godmode/reporting/graph_builder.php:199 msgid "Graph builder" @@ -9429,7 +9442,7 @@ msgstr "Statický graf" #: ../../include/functions_visual_map_editor.php:55 #: ../../include/functions_visual_map_editor.php:539 msgid "Percentile Item" -msgstr "" +msgstr "Percentilní položka" #: ../../godmode/reporting/visual_console_builder.wizard.php:100 #: ../../mobile/operation/home.php:92 @@ -9452,11 +9465,11 @@ msgstr "Obrázek" #: ../../godmode/reporting/visual_console_builder.wizard.php:119 msgid "Range between elements (px)" -msgstr "" +msgstr "Rozsah mezi prvky (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:125 msgid "Size (px)" -msgstr "" +msgstr "Velikost (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:143 #: ../../include/functions_visual_map_editor.php:313 @@ -9477,12 +9490,12 @@ msgstr "Prům hodnota" #: ../../godmode/reporting/visual_console_builder.wizard.php:150 msgid "Width (px)" -msgstr "" +msgstr "Šířka (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:171 #: ../../include/functions_visual_map_editor.php:372 msgid "Value to show" -msgstr "" +msgstr "Hodnota k zobrazení" #: ../../godmode/reporting/visual_console_builder.wizard.php:188 #: ../../operation/agentes/networkmap.php:476 ../../operation/tree.php:61 @@ -9495,7 +9508,7 @@ msgstr "Skupiny" #: ../../godmode/reporting/visual_console_builder.wizard.php:195 msgid "One item per agent" -msgstr "" +msgstr "Jedna položka na agenta" #: ../../godmode/reporting/visual_console_builder.wizard.php:224 #: ../../godmode/reporting/visual_console_builder.elements.php:75 @@ -9510,7 +9523,7 @@ msgstr "Popisek" #: ../../godmode/reporting/visual_console_builder.wizard.php:225 #: ../../godmode/reporting/visual_console_builder.wizard.php:493 msgid "Agent - Module" -msgstr "" +msgstr "Agent - Modul" #: ../../godmode/reporting/visual_console_builder.wizard.php:234 msgid "Enable link agent" @@ -9549,11 +9562,11 @@ msgstr "Jste si jisti přidáním mnoha prvků\\ndo vizuální mapy?" #: ../../mobile/operation/modules.php:593 #: ../../mobile/operation/events.php:787 msgid "Loading..." -msgstr "" +msgstr "Načítání..." #: ../../godmode/reporting/visual_console_builder.wizard.php:428 msgid "Please select any module or modules." -msgstr "" +msgstr "Prosím vyberte jakýkoliv modul nebo moduly" #: ../../godmode/reporting/reporting_builder.php:77 msgid "" @@ -9733,7 +9746,7 @@ msgstr "Filtrovat akupinu" #: ../../godmode/reporting/map_builder.php:38 msgid "Visual Console" -msgstr "" +msgstr "Vizuální konzole" #: ../../godmode/reporting/map_builder.php:166 #: ../../godmode/reporting/map_builder.php:176 @@ -9882,7 +9895,7 @@ msgstr "Vlastní graf" #: ../../godmode/reporting/reporting_builder.item_editor.php:955 msgid "Target server" -msgstr "" +msgstr "Cílový agent" #: ../../godmode/reporting/reporting_builder.item_editor.php:979 msgid "Custom SQL template" @@ -9957,7 +9970,7 @@ msgstr "Prùm" #: ../../godmode/reporting/reporting_builder.item_editor.php:1063 #: ../../mobile/operation/module_graph.php:420 msgid "Time compare (Overlapped)" -msgstr "" +msgstr "Časové porovnání (Přesahující)" #: ../../godmode/reporting/reporting_builder.item_editor.php:1071 msgid "Only average" @@ -10033,11 +10046,11 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1135 msgid "Event filter" -msgstr "" +msgstr "Filtr událostí" #: ../../godmode/reporting/reporting_builder.item_editor.php:1138 msgid "No Validated" -msgstr "" +msgstr "Neověřeno" #: ../../godmode/reporting/reporting_builder.item_editor.php:1140 #: ../../operation/snmpconsole/snmp_view.php:318 @@ -10056,23 +10069,23 @@ msgstr "Potvrzeno" #: ../../godmode/reporting/reporting_builder.item_editor.php:1151 msgid "Event graphs" -msgstr "" +msgstr "Grafy událostí" #: ../../godmode/reporting/reporting_builder.item_editor.php:1155 msgid "By agent" -msgstr "" +msgstr "Podle agenta" #: ../../godmode/reporting/reporting_builder.item_editor.php:1161 msgid "By user validator" -msgstr "" +msgstr "Podle ověřovatele uživatele" #: ../../godmode/reporting/reporting_builder.item_editor.php:1167 msgid "By criticity" -msgstr "" +msgstr "Podle vážnosti" #: ../../godmode/reporting/reporting_builder.item_editor.php:1173 msgid "Validated vs unvalidated" -msgstr "" +msgstr "Ověřeno/neověřeno" #: ../../godmode/reporting/reporting_builder.item_editor.php:1180 msgid "Show in two columns" @@ -10089,7 +10102,7 @@ msgstr "Zobrazit na šířku" #: ../../godmode/reporting/reporting_builder.item_editor.php:1218 #: ../../include/functions_visual_map_editor.php:554 msgid "Update item" -msgstr "" +msgstr "Aktualizovat položku" #: ../../godmode/reporting/reporting_builder.item_editor.php:1247 msgid "SLA Min. (value)" @@ -10161,7 +10174,7 @@ msgstr "Procentuální lišta" #: ../../godmode/reporting/visual_console_builder.elements.php:137 msgid "Percentile Bubble" -msgstr "" +msgstr "Procentuální bublina" #: ../../godmode/reporting/visual_console_builder.elements.php:141 #: ../../mobile/operation/events.php:501 @@ -10177,15 +10190,15 @@ msgstr "Jednoduchá hodnota" #: ../../godmode/reporting/visual_console_builder.elements.php:149 msgid "Simple Value (Process Max)" -msgstr "" +msgstr "Jednoduchá hodnota (Max procesů)" #: ../../godmode/reporting/visual_console_builder.elements.php:153 msgid "Simple Value (Process Min)" -msgstr "" +msgstr "Jednoduchá hodnota (Min procesů)" #: ../../godmode/reporting/visual_console_builder.elements.php:157 msgid "Simple Value (Process Avg)" -msgstr "" +msgstr "Jednoduchá hodnota (Prům procesů)" #: ../../godmode/reporting/visual_console_builder.elements.php:169 #: ../../include/functions_visual_map.php:2037 @@ -11006,11 +11019,11 @@ msgstr "Smazat kontrolní databázi" #: ../../godmode/db/db_audit.php:70 msgid "Success data deleted" -msgstr "" +msgstr "Data úspěšně smazána" #: ../../godmode/db/db_audit.php:72 msgid "Error deleting data" -msgstr "" +msgstr "Chyba při mazání dat" #: ../../godmode/db/db_audit.php:88 msgid "Latest date" @@ -11293,7 +11306,7 @@ msgstr "Chyba při aktualizaci průzkumného úkolu" #: ../../godmode/servers/manage_recontask.php:158 #: ../../godmode/servers/manage_recontask.php:215 msgid "Incorrect format in Subnet field" -msgstr "" +msgstr "Nesprávný formát v poli podsítě" #: ../../godmode/servers/manage_recontask.php:208 msgid "Network provided is not correct" @@ -11375,7 +11388,7 @@ msgstr "Určeno" #: ../../godmode/servers/manage_recontask_form.php:214 msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "" +msgstr "Minimální doporučený interval pro průzkumný úkol během 5 minut" #: ../../godmode/servers/manage_recontask_form.php:219 msgid "Module template" @@ -11708,7 +11721,7 @@ msgstr "Žádné výstrahy nenalezeny" #: ../../operation/agentes/snapshot_view.php:65 msgid "Current data at" -msgstr "" +msgstr "Současná data v" #: ../../operation/agentes/exportdata.csv.php:68 #: ../../operation/agentes/exportdata.php:82 @@ -11743,7 +11756,7 @@ msgstr "Obdržena data od" #: ../../operation/agentes/datos_agente.php:172 msgid "Main database" -msgstr "" +msgstr "Hlavní databáze" #: ../../operation/agentes/datos_agente.php:172 msgid "History database" @@ -11754,6 +11767,7 @@ msgid "" "Switch between the main database and the history database to retrieve module " "data" msgstr "" +"Přepínat mezi hlavní databází a databází historie pro získání dat modulu" #: ../../operation/agentes/datos_agente.php:185 #: ../../include/ajax/module.php:127 @@ -11768,12 +11782,12 @@ msgstr "Zadejte časové období" #: ../../operation/agentes/datos_agente.php:189 #: ../../include/ajax/module.php:140 msgid "Timestamp from:" -msgstr "" +msgstr "Časové razítko od:" #: ../../operation/agentes/datos_agente.php:195 #: ../../include/ajax/module.php:148 msgid "Timestamp to:" -msgstr "" +msgstr "Časové razítko do:" #: ../../operation/agentes/datos_agente.php:202 #: ../../operation/agentes/alerts_status.functions.php:96 @@ -11900,20 +11914,20 @@ msgstr "" #: ../../operation/agentes/stat_win.php:344 #: ../../operation/agentes/stat_win.php:350 msgid "Time compare" -msgstr "" +msgstr "Porovnat čas" #: ../../operation/agentes/stat_win.php:344 msgid "Overlapped" -msgstr "" +msgstr "Přesahuje" #: ../../operation/agentes/stat_win.php:350 msgid "Separated" -msgstr "" +msgstr "Oddělené" #: ../../operation/agentes/stat_win.php:356 #: ../../mobile/operation/module_graph.php:428 msgid "Show unknown graph" -msgstr "" +msgstr "Zobrazit neznámý graf" #: ../../operation/agentes/stat_win.php:381 #: ../../operation/agentes/interface_traffic_graph_win.php:256 @@ -11934,7 +11948,7 @@ msgstr "Exportovat data" #: ../../operation/agentes/exportdata.php:266 msgid "No modules of type string. You can not calculate their average" -msgstr "" +msgstr "Žádný modul typu řetězec. Nelze spočítat jejich průměr" #: ../../operation/agentes/exportdata.php:309 msgid "End date" @@ -11981,7 +11995,7 @@ msgstr "" #: ../../operation/agentes/estado_generalagente.php:146 #: ../../mobile/operation/agent.php:131 ../../extensions/net_tools.php:130 msgid "IP address" -msgstr "" +msgstr "IP adresy" #: ../../operation/agentes/estado_generalagente.php:158 #: ../../operation/gis_maps/ajax.php:315 @@ -12056,7 +12070,7 @@ msgstr "" #: ../../mobile/operation/agent.php:169 #: ../../include/functions_treeview.php:528 msgid "Events (24h)" -msgstr "" +msgstr "Události (24h)" #: ../../operation/agentes/estado_generalagente.php:516 #: ../../include/functions_treeview.php:520 @@ -12209,11 +12223,11 @@ msgstr "" #: ../../operation/agentes/estado_agente.php:153 msgid "Sucessfully deleted agent" -msgstr "" +msgstr "Agent úspěšně smazán" #: ../../operation/agentes/estado_agente.php:155 msgid "There was an error message deleting the agent" -msgstr "" +msgstr "Při mazání agenta se vyskytla chybová zpráva" #: ../../operation/agentes/alerts_status.functions.php:32 msgid "Alert(s) validated" @@ -12250,7 +12264,7 @@ msgstr "Nevysláno" #: ../../operation/agentes/status_monitor.php:478 #: ../../operation/agentes/status_monitor.php:481 msgid "Only it is show tags in use." -msgstr "" +msgstr "Zobrazit pouze používané značky" #: ../../operation/agentes/alerts_status.functions.php:90 #: ../../operation/agentes/status_monitor.php:486 @@ -12384,7 +12398,7 @@ msgstr "Poslední stav" #: ../../operation/agentes/status_monitor.php:1286 #: ../../operation/search_modules.php:198 ../../include/ajax/module.php:943 msgid "Snapshot view" -msgstr "" +msgstr "Zobrazení snímků" #: ../../operation/agentes/status_monitor.php:1356 msgid "This group doesn't have any monitor" @@ -12692,12 +12706,12 @@ msgstr "Možnosti mapy" #: ../../mobile/operation/events.php:464 #: ../../include/functions_events.php:2300 msgid "Event ID" -msgstr "" +msgstr "ID události" #: ../../operation/events/events.build_table.php:65 #: ../../mobile/operation/events.php:107 msgid "Event Name" -msgstr "" +msgstr "Název události" #: ../../operation/events/events.build_table.php:118 msgid "Agent Module" @@ -12803,7 +12817,7 @@ msgstr "Graf události podle uživatele" #: ../../operation/events/event_statistics.php:65 #: ../../include/functions_reporting_html.php:1173 msgid "Amount events validated" -msgstr "" +msgstr "Množství ověřených událostí" #: ../../operation/events/events_rss.php:32 msgid "Your IP is not into the IP list with API access." @@ -12823,7 +12837,7 @@ msgstr "Zvukové události" #: ../../operation/events/sound_events.php:64 msgid "Sound console" -msgstr "" +msgstr "Zvuková konzole" #: ../../operation/events/sound_events.php:77 #: ../../include/functions_reporting.php:5334 @@ -13011,7 +13025,7 @@ msgstr "Událost úspěšně smazána" #: ../../operation/menu.php:31 msgid "Monitoring" -msgstr "" +msgstr "Monitorování" #: ../../operation/menu.php:37 msgid "Views" @@ -13082,7 +13096,7 @@ msgstr "Marquee" #: ../../operation/menu.php:307 msgid "Workspace" -msgstr "" +msgstr "Pracovní prostor" #: ../../operation/menu.php:314 ../../general/header.php:273 #: ../../general/header.php:275 @@ -13091,7 +13105,7 @@ msgstr "Upravit mého uživatele" #: ../../operation/menu.php:319 msgid "WebChat" -msgstr "" +msgstr "WebChat" #: ../../operation/menu.php:344 msgid "List of Incidents" @@ -13120,7 +13134,7 @@ msgstr "Naplánovaná odstávka" #: ../../operation/menu.php:385 msgid "Recon view" -msgstr "" +msgstr "Průzkumné zobrazení" #: ../../operation/messages/message_edit.php:35 #: ../../operation/messages/message_list.php:32 @@ -13130,13 +13144,13 @@ msgstr "" #: ../../operation/messages/message_edit.php:39 #: ../../operation/messages/message_list.php:36 msgid "Sent messages" -msgstr "" +msgstr "Poslané zprávy" #: ../../operation/messages/message_edit.php:43 #: ../../operation/messages/message_list.php:40 #: ../../operation/messages/message_list.php:211 msgid "Create message" -msgstr "" +msgstr "Vytvořit zprávu" #: ../../operation/messages/message_edit.php:60 msgid "This message does not exist in the system" @@ -13156,7 +13170,7 @@ msgstr "v" #: ../../operation/messages/message_edit.php:165 #: ../../operation/messages/message_list.php:118 msgid "Destination" -msgstr "" +msgstr "Cíl" #: ../../operation/messages/message_edit.php:90 #: ../../operation/messages/message_edit.php:206 @@ -13192,7 +13206,7 @@ msgstr "Chyba při posílání zpráv skupině %s" #: ../../operation/messages/message_edit.php:199 msgid "Select user" -msgstr "" +msgstr "Vyberte uživatele" #: ../../operation/messages/message_edit.php:200 msgid "OR" @@ -13200,7 +13214,7 @@ msgstr "OR" #: ../../operation/messages/message_edit.php:201 msgid "Select group" -msgstr "" +msgstr "Vyberte skupinu" #: ../../operation/messages/message_edit.php:213 #: ../../operation/users/webchat.php:87 @@ -13209,7 +13223,7 @@ msgstr "Poslání zprávy" #: ../../operation/messages/message_list.php:74 msgid "Not deleted. Error deleting messages" -msgstr "" +msgstr "Nesmazáno. Chyba při mazání zpráv." #: ../../operation/messages/message_list.php:80 #: ../../operation/messages/message_list.php:87 @@ -13218,7 +13232,7 @@ msgstr "Máte" #: ../../operation/messages/message_list.php:80 msgid "sent message(s)" -msgstr "" +msgstr "poslané zprávy" #: ../../operation/messages/message_list.php:87 msgid "unread message(s)" @@ -13230,7 +13244,7 @@ msgstr "Nejsou žádné zprávy" #: ../../operation/messages/message_list.php:131 msgid "Click to read" -msgstr "" +msgstr "Klikněte pro přečtení" #: ../../operation/messages/message_list.php:136 msgid "Mark as unread" @@ -13336,19 +13350,19 @@ msgstr "" #: ../../operation/tree.php:97 msgid "groups" -msgstr "" +msgstr "skupiny" #: ../../operation/tree.php:100 msgid "module groups" -msgstr "" +msgstr "skupiny modulu" #: ../../operation/tree.php:103 msgid "modules" -msgstr "" +msgstr "moduly" #: ../../operation/tree.php:107 msgid "policies" -msgstr "" +msgstr "zásady" #: ../../operation/tree.php:138 msgid "Agent status" @@ -13526,22 +13540,24 @@ msgstr "Správa incidentů" #: ../../operation/integria_incidents/incident.php:98 msgid "Incident updated" -msgstr "" +msgstr "Incident aktualizován" #: ../../operation/integria_incidents/incident.php:101 msgid "" "There was a problem updating the incident, please check if any field was " "modified and the values are correct." msgstr "" +"Při aktualizaci incidentu nastal problém, prosím zkontrolujte pole, která " +"byla změněna a správnost hodnot." #: ../../operation/integria_incidents/incident.php:125 #: ../../operation/incidents/incident.php:141 msgid "Incident created" -msgstr "" +msgstr "Incident vytvořen" #: ../../operation/integria_incidents/incident.php:128 msgid "There was a problem creating incident" -msgstr "" +msgstr "Při vytváření incidentu nastal problém" #: ../../operation/integria_incidents/incident.php:141 #: ../../operation/incidents/incident_detail.php:120 @@ -13555,7 +13571,7 @@ msgstr "Soubor nahrán" #: ../../operation/integria_incidents/incident.php:158 msgid "There was a problem uploading file" -msgstr "" +msgstr "Při nahrávání souboru nastal problém" #: ../../operation/integria_incidents/incident.php:164 msgid "File is too big" @@ -13576,27 +13592,27 @@ msgstr "Obecná chyba nahrání" #: ../../operation/integria_incidents/incident.php:192 msgid "File deleted" -msgstr "" +msgstr "Soubor smazán" #: ../../operation/integria_incidents/incident.php:195 msgid "You user doesn't have enough rights to delete this file" -msgstr "" +msgstr "Váš uživatel nemá dostatečná práva ke smazání tohoto souboru" #: ../../operation/integria_incidents/incident.php:210 msgid "Incident deleted" -msgstr "" +msgstr "Incident smazán" #: ../../operation/integria_incidents/incident.php:213 msgid "There was a problem deteling incident" -msgstr "" +msgstr "Při mazání incidentu nastal problém" #: ../../operation/integria_incidents/incident.php:237 msgid "Workunit added" -msgstr "" +msgstr "Pracovní jednotka přidána" #: ../../operation/integria_incidents/incident.php:240 msgid "There was a problem adding workunit" -msgstr "" +msgstr "Při přidávání pracovní jednotky nastal problém" #: ../../operation/integria_incidents/incident.php:339 msgid "" @@ -13773,27 +13789,27 @@ msgstr "" #: ../../operation/users/webchat.php:71 msgid "Webchat" -msgstr "" +msgstr "Webchat" #: ../../operation/users/webchat.php:81 msgid "Users Online" -msgstr "" +msgstr "Uživatelé online" #: ../../operation/users/webchat.php:155 msgid "Connection established...get last 24h messages..." -msgstr "" +msgstr "Připojení navazáno...získávání zpráv za posledních 24h" #: ../../operation/users/webchat.php:166 msgid "Error in connection." -msgstr "" +msgstr "Chyba ve spojení." #: ../../operation/users/webchat.php:247 msgid "Error sendding message." -msgstr "" +msgstr "Chyba při odesílání zprávy." #: ../../operation/users/webchat.php:275 msgid "Error login." -msgstr "" +msgstr "Chyba při přihlašování." #: ../../operation/search_maps.php:33 msgid "Elements" @@ -13824,12 +13840,12 @@ msgstr "" #: ../../operation/reporting/reporting_viewer.php:188 #: ../../operation/reporting/reporting_viewer.php:217 msgid "Set initial date" -msgstr "" +msgstr "Nastavit počáteční datum" #: ../../operation/reporting/reporting_viewer.php:198 #: ../../operation/reporting/reporting_viewer.php:227 msgid "Items period before" -msgstr "" +msgstr "Období položek před" #: ../../operation/reporting/reporting_viewer.php:244 msgid "Invalid date selected. Initial date must be before end date." @@ -14183,7 +14199,7 @@ msgstr "Incidenty podle zdroje" #: ../../operation/search_results.php:63 ../../mobile/operation/home.php:161 msgid "Global search" -msgstr "" +msgstr "Globální hledání" #: ../../operation/search_results.php:113 #: ../../include/functions_groups.php:120 @@ -14201,7 +14217,7 @@ msgstr "" #: ../../operation/servers/recon_view.php:36 #: ../../operation/servers/recon_view.php:51 msgid "Recon View" -msgstr "" +msgstr "Průzkumné zobrazení" #: ../../operation/servers/recon_view.php:103 #: ../../operation/servers/recon_view.php:157 @@ -14346,7 +14362,7 @@ msgstr "" #: ../../mobile/operation/modules.php:261 #: ../../mobile/operation/events.php:654 msgid "Apply Filter" -msgstr "" +msgstr "Použít filtr" #: ../../mobile/operation/networkmaps.php:202 #: ../../mobile/operation/networkmap.php:164 @@ -14358,7 +14374,7 @@ msgstr "" #: ../../mobile/operation/modules.php:674 #: ../../mobile/operation/events.php:1060 msgid "(Default)" -msgstr "" +msgstr "(Výchozí)" #: ../../mobile/operation/networkmaps.php:222 #: ../../mobile/operation/agents.php:432 ../../mobile/operation/alerts.php:316 @@ -14376,11 +14392,11 @@ msgstr "" #: ../../mobile/operation/agent.php:104 msgid "PandoraFMS: Agents" -msgstr "" +msgstr "PandoraFMS: Agenti" #: ../../mobile/operation/agent.php:109 msgid "No agent found" -msgstr "" +msgstr "Žádný agent nenalezen" #: ../../mobile/operation/agent.php:161 msgid "Modules by status" @@ -14389,7 +14405,7 @@ msgstr "" #: ../../mobile/operation/agent.php:205 #, php-format msgid "Last %s Events" -msgstr "" +msgstr "Posledních %s událostí" #: ../../mobile/operation/groups.php:102 ../../mobile/operation/groups.php:103 #: ../../mobile/operation/groups.php:104 @@ -14405,11 +14421,11 @@ msgstr "Neznámí agenti" #: ../../mobile/operation/agents.php:166 #, php-format msgid "Filter Agents by %s" -msgstr "" +msgstr "Filtrovat agenty podle %s" #: ../../mobile/operation/agents.php:333 msgid "No agents" -msgstr "" +msgstr "Žádní agenti" #: ../../mobile/operation/agents.php:436 ../../mobile/operation/alerts.php:320 #: ../../mobile/operation/modules.php:693 @@ -14444,20 +14460,20 @@ msgstr "Odhlásit" #: ../../mobile/operation/home.php:154 ../../mobile/include/ui.class.php:185 msgid "Home" -msgstr "" +msgstr "Domů" #: ../../mobile/operation/alerts.php:162 #, php-format msgid "Filter Alerts by %s" -msgstr "" +msgstr "Filtrovat agenty podle %s" #: ../../mobile/operation/alerts.php:272 msgid "Last Fired" -msgstr "" +msgstr "Naposledy vysláno" #: ../../mobile/operation/alerts.php:282 msgid "No alerts" -msgstr "" +msgstr "Žádné výstrahy" #: ../../mobile/operation/alerts.php:312 #, php-format @@ -14466,46 +14482,46 @@ msgstr "" #: ../../mobile/operation/tactical.php:146 msgid "Last activity" -msgstr "" +msgstr "Poslední aktivita" #: ../../mobile/operation/module_graph.php:366 #: ../../mobile/operation/module_graph.php:375 #, php-format msgid "PandoraFMS: %s" -msgstr "" +msgstr "PandoraFMS: %s" #: ../../mobile/operation/module_graph.php:389 #, php-format msgid "Options for %s : %s" -msgstr "" +msgstr "Volby pro %s : %s" #: ../../mobile/operation/module_graph.php:396 msgid "Show Alerts" -msgstr "" +msgstr "Zobrazit výstrahy" #: ../../mobile/operation/module_graph.php:404 msgid "Show Events" -msgstr "" +msgstr "Zobrazit události" #: ../../mobile/operation/module_graph.php:412 msgid "Time compare (Separated)" -msgstr "" +msgstr "Časové porovnání (Oddělené)" #: ../../mobile/operation/module_graph.php:436 msgid "Avg Only" -msgstr "" +msgstr "Pouze průměr" #: ../../mobile/operation/module_graph.php:441 msgid "Time range (hours)" -msgstr "" +msgstr "Časový rozsah (hodiny)" #: ../../mobile/operation/module_graph.php:461 msgid "Update graph" -msgstr "" +msgstr "Aktualizovat graf" #: ../../mobile/operation/module_graph.php:470 msgid "Error get the graph" -msgstr "" +msgstr "Chyba při získání grafu" #: ../../mobile/operation/modules.php:151 #: ../../mobile/operation/modules.php:152 @@ -14517,15 +14533,15 @@ msgstr "Značka" #: ../../mobile/operation/modules.php:194 #, php-format msgid "Filter Modules by %s" -msgstr "" +msgstr "Filtrovat moduly podle %s" #: ../../mobile/operation/modules.php:470 msgid "Interval." -msgstr "" +msgstr "Interval." #: ../../mobile/operation/modules.php:476 msgid "Last update." -msgstr "" +msgstr "Poslední aktualizace." #: ../../mobile/operation/modules.php:689 #, php-format @@ -14544,33 +14560,33 @@ msgstr "" #: ../../mobile/operation/events.php:438 msgid "ERROR: Event detail" -msgstr "" +msgstr "CHYBA: Podrobnosti události" #: ../../mobile/operation/events.php:440 msgid "Error connecting to DB pandora." -msgstr "" +msgstr "Chyba při připojování k DB pandora" #: ../../mobile/operation/events.php:453 msgid "Event detail" -msgstr "" +msgstr "Podrobnosti události" #: ../../mobile/operation/events.php:492 #: ../../include/functions_events.php:2388 msgid "Acknowledged by" -msgstr "" +msgstr "Uznáno" #: ../../mobile/operation/events.php:536 msgid "Sucessful validate" -msgstr "" +msgstr "Úspěšné ověření" #: ../../mobile/operation/events.php:538 msgid "Fail validate" -msgstr "" +msgstr "Ověření selhalo" #: ../../mobile/operation/events.php:570 #, php-format msgid "Filter Events by %s" -msgstr "" +msgstr "Filtrovat události podle %s" #: ../../mobile/operation/events.php:1066 #, php-format @@ -14617,15 +14633,15 @@ msgstr "" #: ../../mobile/include/user.class.php:211 msgid "Login Failed" -msgstr "" +msgstr "Přihlášení selhalo" #: ../../mobile/include/user.class.php:212 msgid "User not found in database or incorrect password." -msgstr "" +msgstr "Uživatel nenalezen v databázi nebo nesprávné heslo." #: ../../mobile/include/user.class.php:220 msgid "Login out" -msgstr "" +msgstr "Odhlášení" #: ../../mobile/include/user.class.php:221 ../../general/login_page.php:135 msgid "" @@ -14636,11 +14652,11 @@ msgstr "" #: ../../mobile/include/user.class.php:238 msgid "user" -msgstr "" +msgstr "uživatel" #: ../../mobile/include/user.class.php:245 msgid "password" -msgstr "" +msgstr "heslo" #: ../../mobile/include/user.class.php:250 ../../general/login_page.php:129 msgid "Login" @@ -14657,7 +14673,7 @@ msgstr "" #: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 msgid "Pandora FMS mobile" -msgstr "" +msgstr "Pandora FMS mobilní" #: ../../mobile/include/ui.class.php:257 #: ../../mobile/include/functions_web.php:81 ../../general/footer.php:30 @@ -14672,27 +14688,27 @@ msgstr "Vytvořeno" #: ../../mobile/include/ui.class.php:630 msgid "Not found header." -msgstr "" +msgstr "Záhlaví nenalezeno." #: ../../mobile/include/ui.class.php:633 msgid "Not found content." -msgstr "" +msgstr "Obsah nenalezen." #: ../../mobile/include/ui.class.php:636 msgid "Not found footer." -msgstr "" +msgstr "Zápatí nenalezeno." #: ../../mobile/include/ui.class.php:639 msgid "Incorrect form." -msgstr "" +msgstr "Nesprávný formulář." #: ../../mobile/include/ui.class.php:642 msgid "Incorrect grid." -msgstr "" +msgstr "Nesprávná síť." #: ../../mobile/include/ui.class.php:645 msgid "Incorrect collapsible." -msgstr "" +msgstr "Nesprávná skládací." #: ../../mobile/include/functions_web.php:23 #: ../../include/functions_reporting_html.php:2130 @@ -14793,7 +14809,7 @@ msgstr "Máte nepřečteno %d zpráv" #: ../../general/header.php:298 msgid "Blank characters are used as AND conditions" -msgstr "" +msgstr "Prázdné znaky jsou použity jako operace AND" #: ../../general/footer.php:32 msgid "Page generated at" @@ -14813,30 +14829,30 @@ msgstr "" #: ../../general/login_help_dialog.php:51 #: ../../general/login_help_dialog.php:53 msgid "Online help" -msgstr "" +msgstr "Nápověda online" #: ../../general/login_help_dialog.php:59 #: ../../general/login_help_dialog.php:61 msgid "Enterprise version" -msgstr "" +msgstr "Verze pro podniky" #: ../../general/login_help_dialog.php:67 #: ../../general/login_help_dialog.php:69 ../../general/login_page.php:83 msgid "Support" -msgstr "" +msgstr "Podpora" #: ../../general/login_help_dialog.php:69 msgid "Forums" -msgstr "" +msgstr "Fóra" #: ../../general/login_help_dialog.php:75 #: ../../general/login_help_dialog.php:77 msgid "Documentation" -msgstr "" +msgstr "Dokumentace" #: ../../general/login_help_dialog.php:86 msgid "Click here to don't show again this message" -msgstr "" +msgstr "Klikněte sem, aby tato zpráva již nikdy nebyla zobrazena" #: ../../general/logon_ok.php:31 msgid "Welcome to Pandora FMS Web Console" @@ -15085,11 +15101,11 @@ msgstr "Spustitelný soubor SNMPget neexistuje." #: ../../extensions/net_tools.php:224 msgid "Uptime" -msgstr "" +msgstr "Doba běhu" #: ../../extensions/net_tools.php:228 msgid "Device info" -msgstr "" +msgstr "Informace o zařízení" #: ../../extensions/net_tools.php:236 msgid "Interface" @@ -15157,7 +15173,7 @@ msgstr "Rozhraní DB" #: ../../extensions/ssh_gateway.php:52 msgid "You need to specify a user and a host address" -msgstr "" +msgstr "Musíte zadat uživatele a adresu hostitele" #: ../../extensions/ssh_gateway.php:59 #, php-format @@ -15166,15 +15182,15 @@ msgstr "" #: ../../extensions/ssh_gateway.php:60 msgid "Connect" -msgstr "" +msgstr "Připojit" #: ../../extensions/ssh_gateway.php:63 msgid "Port (use 0 for default)" -msgstr "" +msgstr "Port (použijte 0 pro výchozí)" #: ../../extensions/ssh_gateway.php:65 msgid "Connect mode" -msgstr "" +msgstr "Režim připojení" #: ../../extensions/plugin_registration.php:26 msgid "Plugin registration" @@ -15574,6 +15590,8 @@ msgid "" "Blue cell when the module group and agent have all modules in not init " "status." msgstr "" +"Modrá buňka když skupina modulu a agent mají všechny moduly mimo stav " +"zavedení." #: ../../extensions/module_groups.php:306 msgid "There are no defined groups or module groups" @@ -15695,7 +15713,7 @@ msgstr "Nahrát rozšíření jako soubor zip" #: ../../extensions/extension_uploader.php:76 msgid "Upload enterprise extension" -msgstr "" +msgstr "Nahrát rozšíření enterprise" #: ../../extensions/extension_uploader.php:89 msgid "Extension uploader" @@ -16061,7 +16079,7 @@ msgstr "" #: ../../include/functions_db.php:75 #, php-format msgid "Error connecting to database %s at %s." -msgstr "" +msgstr "Chyba při připojování k databázi %s v %s." #: ../../include/functions_db.php:1077 msgid "SQL sentence" @@ -16085,11 +16103,11 @@ msgstr "Klikněte zde pro otevření vyskakovacího okna s URL značkou" #: ../../include/functions_ui.php:226 msgid "Information" -msgstr "" +msgstr "Informace" #: ../../include/functions_ui.php:232 msgid "Success" -msgstr "" +msgstr "Úspěch" #: ../../include/functions_ui.php:366 msgid "Request successfully processed" @@ -16248,7 +16266,7 @@ msgstr "Nejsou určeni žádní Agenti/Moduly" #: ../../include/functions_reporting.php:985 msgid "Insuficient data" -msgstr "" +msgstr "Nedostatečná data" #: ../../include/functions_reporting.php:1142 #: ../../include/functions_reporting.php:1306 @@ -16307,7 +16325,7 @@ msgstr "" #: ../../include/functions_reporting.php:1476 msgid "No changes found." -msgstr "" +msgstr "Nenalezeny žádné změny" #: ../../include/functions_reporting.php:1550 msgid "Agent/Modules" @@ -16571,7 +16589,7 @@ msgstr "Jednoduchý graf" #: ../../include/functions_reporting_html.php:491 #: ../../include/functions_reporting_html.php:1088 msgid "Val. by" -msgstr "" +msgstr "Val. podle" #: ../../include/functions_reporting.php:4554 #: ../../include/functions_reporting.php:4679 @@ -16583,7 +16601,7 @@ msgstr "" #: ../../include/functions_events.php:2623 #: ../../include/functions_reporting_html.php:534 msgid "Pandora System" -msgstr "" +msgstr "Systém Pandora" #: ../../include/functions_reporting.php:5186 #: ../../include/functions_reporting.php:5223 @@ -16593,7 +16611,7 @@ msgstr "Stav serveru" #: ../../include/functions_reporting.php:5186 #, php-format msgid "%d Downed servers" -msgstr "" +msgstr "%d serverů mimo provoz" #: ../../include/functions_reporting.php:5194 #: ../../include/functions_reporting.php:5226 @@ -16603,7 +16621,7 @@ msgstr "Sledování zdraví" #: ../../include/functions_reporting.php:5194 #, php-format msgid "%d Not Normal monitors" -msgstr "" +msgstr "%d nenormálních monitorů" #: ../../include/functions_reporting.php:5196 #: ../../include/functions_reporting.php:5227 @@ -16618,7 +16636,7 @@ msgstr "Funkčnost modulu" #: ../../include/functions_reporting.php:5202 #, php-format msgid "%d Not inited monitors" -msgstr "" +msgstr "%d nezavedených monitorů" #: ../../include/functions_reporting.php:5204 #: ../../include/functions_reporting.php:5230 @@ -16636,7 +16654,7 @@ msgstr "Stupeň výstrahy" #: ../../include/functions_reporting.php:6136 #, php-format msgid "%d Fired alerts" -msgstr "" +msgstr "%d vyslaných výstrah" #: ../../include/functions_reporting.php:5212 #: ../../include/functions_reporting.php:5233 @@ -16650,24 +16668,24 @@ msgstr "Určené výstrahy" #: ../../include/functions_reporting.php:5283 #: ../../include/functions_reporting.php:5291 msgid "Defined and fired alerts" -msgstr "" +msgstr "Zadané a vyslané výstrahy" #: ../../include/functions_reporting.php:5345 msgid "Monitor normal" -msgstr "" +msgstr "Monitor ve stavu normální" #: ../../include/functions_reporting.php:5349 msgid "Monitor unknown" -msgstr "" +msgstr "Neznámý monitor" #: ../../include/functions_reporting.php:5356 msgid "Monitor not init" -msgstr "" +msgstr "Nezavedený monitor" #: ../../include/functions_reporting.php:5380 #: ../../include/functions_reporting.php:5391 msgid "Monitors by status" -msgstr "" +msgstr "Monitor bodle stavu" #: ../../include/functions_reporting.php:5429 #: ../../include/functions_reporting_html.php:2627 @@ -16677,7 +16695,7 @@ msgstr "Zjištění monitoru" #: ../../include/functions_reporting.php:5437 #: ../../include/functions_reporting_html.php:2632 msgid "Total agents and monitors" -msgstr "" +msgstr "Celkem agentů a monitorů" #: ../../include/functions_reporting.php:5460 msgid "Defined users" @@ -16719,56 +16737,56 @@ msgstr "Všechny monitory OK" #: ../../include/functions_reporting.php:6122 #, php-format msgid "%d Total modules" -msgstr "" +msgstr "%d modulů celkem" #: ../../include/functions_reporting.php:6116 #: ../../include/functions_reporting.php:6123 #, php-format msgid "%d Normal modules" -msgstr "" +msgstr "%d normálních modulů" #: ../../include/functions_reporting.php:6117 #: ../../include/functions_reporting.php:6124 #, php-format msgid "%d Critical modules" -msgstr "" +msgstr "%d modulů v kritickém stavu" #: ../../include/functions_reporting.php:6118 #: ../../include/functions_reporting.php:6125 #, php-format msgid "%d Warning modules" -msgstr "" +msgstr "%d modulů ve varovném stavu" #: ../../include/functions_reporting.php:6119 #: ../../include/functions_reporting.php:6126 #, php-format msgid "%d Unknown modules" -msgstr "" +msgstr "%d neznámých modulů" #: ../../include/functions_reporting.php:6130 #, php-format msgid "%d Total agents" -msgstr "" +msgstr "%d agentů celkem" #: ../../include/functions_reporting.php:6131 #, php-format msgid "%d Normal agents" -msgstr "" +msgstr "%d normálních agentů" #: ../../include/functions_reporting.php:6132 #, php-format msgid "%d Critical agents" -msgstr "" +msgstr "%d agentů v kritickém stavu" #: ../../include/functions_reporting.php:6133 #, php-format msgid "%d Warning agents" -msgstr "" +msgstr "%d agentů ve varovném stavu" #: ../../include/functions_reporting.php:6134 #, php-format msgid "%d Unknown agents" -msgstr "" +msgstr "%d Neznámých agentů" #: ../../include/functions_reporting.php:6135 #, php-format @@ -16836,17 +16854,17 @@ msgstr "Výkon serveru" #: ../../include/functions_users.php:380 #, php-format msgid "User %s login at %s" -msgstr "" +msgstr "Uživatel %s přihlášen v %s" #: ../../include/functions_users.php:441 #, php-format msgid "User %s was deleted in the DB at %s" -msgstr "" +msgstr "Uživatel %s byl smazán v DB v %s" #: ../../include/functions_users.php:446 #, php-format msgid "User %s logout at %s" -msgstr "" +msgstr "Uživatel %s odhlášen v %s" #: ../../include/functions_servers.php:363 msgid "Data server" @@ -17297,12 +17315,12 @@ msgstr "Hodnota jednotek" #: ../../include/functions_graph.php:742 #: ../../include/functions_graph.php:3286 msgid "Previous" -msgstr "" +msgstr "Předchozí" #: ../../include/functions_graph.php:1009 #, php-format msgid "projection for %s" -msgstr "" +msgstr "projekce pro %s" #: ../../include/functions_graph.php:1490 msgid "Not fired alerts" @@ -17354,6 +17372,12 @@ msgstr "Nízká" msgid "Medium" msgstr "Střední" +#: ../../include/functions_graph.php:2125 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:63 +msgid "Serious" +msgstr "Skutečně" + #: ../../include/functions_graph.php:2126 #: ../../include/functions_incidents.php:33 #: ../../include/functions_incidents.php:66 @@ -17465,7 +17489,7 @@ msgstr "M" #: ../../include/functions.php:416 ../../include/functions.php:560 msgid "Y" -msgstr "" +msgstr "R" #: ../../include/functions.php:417 ../../include/functions.php:561 msgid "m" @@ -17524,7 +17548,7 @@ msgstr "" #: ../../include/functions.php:1970 msgid "custom" -msgstr "" +msgstr "vlastní" #: ../../include/functions.php:1975 ../../include/functions.php:1976 #, php-format @@ -17611,7 +17635,7 @@ msgstr "" #: ../../include/ajax/networkmap.ajax.php:74 #: ../../include/ajax/networkmap.ajax.php:94 msgid "Map summary" -msgstr "" +msgstr "Souhrn mapy" #: ../../include/ajax/double_auth.ajax.php:146 msgid "" @@ -17802,7 +17826,7 @@ msgstr "" #: ../../include/ajax/events.php:307 msgid "Custom data" -msgstr "" +msgstr "Vlastní data" #: ../../include/ajax/events.php:375 msgid "Error adding comment" @@ -17882,7 +17906,7 @@ msgstr "" #: ../../include/functions_filemanager.php:298 #: ../../include/functions_filemanager.php:380 msgid "Security error" -msgstr "" +msgstr "Bezpečnostní chyba" #: ../../include/functions_filemanager.php:183 msgid "Upload error" @@ -17902,16 +17926,16 @@ msgstr "" #: ../../include/functions_filemanager.php:252 msgid "Error creating file" -msgstr "" +msgstr "Chyba při vytváření souboru" #: ../../include/functions_filemanager.php:265 #: ../../include/functions_filemanager.php:360 msgid "Error creating file with empty name" -msgstr "" +msgstr "Chyba při vytváření souboru s prázdným názvem" #: ../../include/functions_filemanager.php:310 msgid "Attach error" -msgstr "" +msgstr "Chyba přílohy" #: ../../include/functions_filemanager.php:346 msgid "Security error." @@ -17919,12 +17943,12 @@ msgstr "Bezpečnostní chyba." #: ../../include/functions_filemanager.php:355 msgid "Directory created" -msgstr "" +msgstr "Adresář vytvořen" #: ../../include/functions_filemanager.php:383 #: ../../include/functions_reporting_html.php:705 msgid "Deleted" -msgstr "" +msgstr "Smazáno" #: ../../include/functions_filemanager.php:537 #, php-format @@ -18026,13 +18050,13 @@ msgstr "" #: ../../include/functions_reports.php:527 #: ../../include/functions_reports.php:529 msgid "ITIL" -msgstr "" +msgstr "ITIL" #: ../../include/functions_reports.php:534 #: ../../include/functions_reports.php:537 #: ../../include/functions_reports.php:541 msgid "SLA" -msgstr "" +msgstr "SLA" #: ../../include/functions_reports.php:538 msgid "Monthly S.L.A." @@ -18045,7 +18069,7 @@ msgstr "" #: ../../include/functions_reports.php:547 #: ../../include/functions_reports.php:549 msgid "Forecasting" -msgstr "" +msgstr "Předpovídání" #: ../../include/functions_reports.php:548 msgid "Prediction date" @@ -18072,7 +18096,7 @@ msgstr "Serializovat data" #: ../../include/functions_reports.php:585 #: ../../include/functions_reports.php:587 msgid "Grouped" -msgstr "" +msgstr "Seskupené" #: ../../include/functions_reports.php:572 msgid "Group report" @@ -18089,7 +18113,7 @@ msgstr "" #: ../../include/functions_reports.php:591 #: ../../include/functions_reports.php:593 msgid "Text/HTML " -msgstr "" +msgstr "Text/HTML " #: ../../include/functions_reports.php:594 msgid "Import text from URL" @@ -18105,7 +18129,7 @@ msgstr "Agent hlášení výstrahy" #: ../../include/functions_reports.php:604 msgid "Alert report group" -msgstr "" +msgstr "Skupina hlášení o výstraze" #: ../../include/functions_reports.php:610 msgid "Event report agent" @@ -18121,7 +18145,7 @@ msgstr "Skupina záznamu události" #: ../../include/functions_reports.php:621 msgid "Inventory changes" -msgstr "" +msgstr "Změny inventáře" #: ../../include/functions_reports.php:631 msgid "Netflow area chart" @@ -18145,11 +18169,11 @@ msgstr "" #: ../../include/functions_networkmap.php:1685 msgid "Create a new topology map" -msgstr "" +msgstr "Vytvořit novou topologickou mapu" #: ../../include/functions_networkmap.php:1686 msgid "Create a new group map" -msgstr "" +msgstr "Vytvořit novou mapu skupiny" #: ../../include/functions_networkmap.php:1687 msgid "Create a new dynamic map" @@ -18161,7 +18185,7 @@ msgstr "" #: ../../include/functions_networkmap.php:1711 msgid "Topology" -msgstr "" +msgstr "Topologie" #: ../../include/functions_networkmap.php:1713 msgid "Dynamic" @@ -18198,7 +18222,7 @@ msgstr "Moduly úspěšně přidány do rozvržení" #: ../../include/functions_visual_map.php:1484 msgid "Agents successfully added to layout" -msgstr "" +msgstr "Agenti úspěšně přidány do rozvržení" #: ../../include/functions_visual_map.php:1735 msgid "Cannot load the visualmap" @@ -18609,55 +18633,55 @@ msgstr "" #: ../../include/functions_menu.php:427 msgid "Configure user" -msgstr "" +msgstr "Nastavit uživatele" #: ../../include/functions_menu.php:428 msgid "Configure profile" -msgstr "" +msgstr "Nastavit profil" #: ../../include/functions_menu.php:432 msgid "Module templates management" -msgstr "" +msgstr "Správa šablon modulu" #: ../../include/functions_menu.php:433 msgid "Inventory modules management" -msgstr "" +msgstr "Správa modulů inventáře" #: ../../include/functions_menu.php:434 msgid "Tags management" -msgstr "" +msgstr "Správa značek" #: ../../include/functions_menu.php:438 msgid "View agent" -msgstr "" +msgstr "Zobrazit agenta" #: ../../include/functions_menu.php:442 msgid "Manage network map" -msgstr "" +msgstr "Správa síťové mapy" #: ../../include/functions_menu.php:444 msgid "View reporting" -msgstr "" +msgstr "Zobrazit hlášení" #: ../../include/functions_menu.php:446 msgid "Manage custom graphs" -msgstr "" +msgstr "Spravovat vlastni grafy" #: ../../include/functions_menu.php:447 msgid "Copy dashboard" -msgstr "" +msgstr "Kopírovat nástěnku" #: ../../include/functions_menu.php:450 msgid "Manage GIS Maps" -msgstr "" +msgstr "Spravovat mapy GIS" #: ../../include/functions_menu.php:452 msgid "Incidents statistics" -msgstr "" +msgstr "Statistiky incidentů" #: ../../include/functions_menu.php:453 msgid "Manage messages" -msgstr "" +msgstr "Spravovat zprávy" #: ../../include/functions_menu.php:455 msgid "Manage groups" @@ -18665,31 +18689,31 @@ msgstr "Správa skupin" #: ../../include/functions_menu.php:456 msgid "Manage module groups" -msgstr "" +msgstr "Spravovat skupiny modulů" #: ../../include/functions_menu.php:457 msgid "Manage custom field" -msgstr "" +msgstr "Spravovat vlastní pole" #: ../../include/functions_menu.php:459 msgid "Manage alert actions" -msgstr "" +msgstr "Spravovat činnosti výstrahy" #: ../../include/functions_menu.php:460 msgid "Manage commands" -msgstr "" +msgstr "Spravovat příkazy" #: ../../include/functions_menu.php:461 msgid "Manage event alerts" -msgstr "" +msgstr "Správa události výstrah" #: ../../include/functions_menu.php:463 msgid "Manage export targets" -msgstr "" +msgstr "Správa cílů exportu" #: ../../include/functions_menu.php:465 msgid "Manage services" -msgstr "" +msgstr "Správa služeb" #: ../../include/functions_menu.php:468 msgid "SNMP trap editor" @@ -18697,7 +18721,7 @@ msgstr "Editor zachycení SNMP" #: ../../include/functions_menu.php:471 msgid "Manage incident" -msgstr "" +msgstr "Správa incidentu" #: ../../include/functions_menu.php:523 msgid "Administration" @@ -18729,13 +18753,15 @@ msgstr "Správné smazání" #: ../../include/functions_api.php:1563 msgid "Error in creation network module. Agent name doesn't exists." -msgstr "" +msgstr "Chyba při vytváření síťového modulu. Název agenta neexistuje." #: ../../include/functions_api.php:1569 msgid "" "Error in creation network module. Id_module_type is not correct for network " "modules." msgstr "" +"Chyba při vytváření síťového modulu. Id_module_type není pro síťové moduly " +"správné." #: ../../include/functions_api.php:1615 msgid "Error in creation network module." @@ -18744,87 +18770,94 @@ msgstr "Chyba při vytváření síťového modulu." #: ../../include/functions_api.php:1647 msgid "Error updating network module. Module name cannot be left blank." msgstr "" +"Chyba při aktualizaci síťového modulu. Název modulu nemůže být prázdný." #: ../../include/functions_api.php:1654 msgid "Error updating network module. Id_module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci síťového modulu. Id_module neexistuje." #: ../../include/functions_api.php:1667 msgid "Error updating network module. Id_module exists in the new agent." msgstr "" +"Chyba při aktualizaci síťového modulu. Id_module se vyskytuje v novém " +"agentovi." #: ../../include/functions_api.php:1716 msgid "Network module updated." -msgstr "" +msgstr "Síťový modul aktualizován" #: ../../include/functions_api.php:1745 msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "" +msgstr "Chyba při vytváření zásuvného modulu. Id_plugin nemůže být prázdné." #: ../../include/functions_api.php:1752 msgid "Error in creation plugin module. Agent name doesn't exists." -msgstr "" +msgstr "Chyba při vytváření zásuvného modulu. Název agenta neexistuje" #: ../../include/functions_api.php:1803 msgid "Error in creation plugin module." -msgstr "" +msgstr "Chyba při vytváření zásuvného modulu." #: ../../include/functions_api.php:1834 msgid "Error updating plugin module. Id_module cannot be left blank." msgstr "" +"Chyba při aktualizaci zásuvného modulu. Id_module nemůže být prázdné." #: ../../include/functions_api.php:1841 msgid "Error updating plugin module. Id_module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci zásuvného modulu. Id_module neexistuje." #: ../../include/functions_api.php:1853 msgid "Error updating plugin module. Id_module exists in the new agent." msgstr "" +"Chyba při aktualizaci zásuvného modulu. Id_module existuje v novém agentovi." #: ../../include/functions_api.php:1911 msgid "Plugin module updated." -msgstr "" +msgstr "Zásuvný modul aktualizován." #: ../../include/functions_api.php:1940 msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "" +msgstr "Chyba při vytváření datového modulu. Module_name nemůže být prázdné." #: ../../include/functions_api.php:1947 msgid "Error in creation data module. Agent name doesn't exists." -msgstr "" +msgstr "Chyba při vytváření datového modulu. Název agenta neexistuje." #: ../../include/functions_api.php:1989 msgid "Error in creation data module." -msgstr "" +msgstr "Chyba při vytváření datového modulu." #: ../../include/functions_api.php:2021 msgid "Error updating data module. Id_module cannot be left blank." -msgstr "" +msgstr "Chyba při aktualizaci datového modulu. Id_module nemůže být prázdné." #: ../../include/functions_api.php:2028 msgid "Error updating data module. Id_module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci datového modulu. Id_module neexistuje." #: ../../include/functions_api.php:2040 msgid "Error updating data module. Id_module exists in the new agent." msgstr "" +"Chyba při aktualizaci datového modulu. Id_module existuje v novém agentovi." #: ../../include/functions_api.php:2085 msgid "Data module updated." -msgstr "" +msgstr "Datový modul aktualizován." #: ../../include/functions_api.php:2122 msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "" +msgstr "Chyba při vytváření modulu SNMP. Module_name nemůže být prázdné." #: ../../include/functions_api.php:2127 msgid "" "Error in creation SNMP module. Invalid id_module_type for a SNMP module." msgstr "" +"Chyba při vytváření modulu SNMP. Neplatný id_module_type pro modul SNMP." #: ../../include/functions_api.php:2134 msgid "Error in creation SNMP module. Agent name doesn't exists." -msgstr "" +msgstr "Chyba při vytváření modulu SNMP. Název agenta neexistuje." #: ../../include/functions_api.php:2149 ../../include/functions_api.php:2301 #: ../../include/functions_api.php:4485 @@ -18832,6 +18865,8 @@ msgid "" "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " "'AES' or 'DES'. " msgstr "" +"Chyba při vytváření modulu SNMP. snmp3_priv_method neexistuje. Nastavte ji " +"na 'AES' nebo 'DES'. " #: ../../include/functions_api.php:2154 ../../include/functions_api.php:2306 #: ../../include/functions_api.php:4490 @@ -18839,6 +18874,8 @@ msgid "" "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " msgstr "" +"Chyba při vytváření modulu SNMP. snmp3_sec_level neexistuje, Nastavte ji na " +"'authNoPriv', 'authPriv' nebo 'noAuthNoPriv'. " #: ../../include/functions_api.php:2159 ../../include/functions_api.php:2311 #: ../../include/functions_api.php:4495 @@ -18846,326 +18883,376 @@ msgid "" "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " "'MD5' or 'SHA'. " msgstr "" +"Chyba při vytváření modulu SNMP. snmp3_auth_method neexistuje. Nastavte ji " +"na 'MD5' nebo 'SHA'. " #: ../../include/functions_api.php:2239 msgid "Error in creation SNMP module." -msgstr "" +msgstr "Chyba při vytváření modulu SNMP." #: ../../include/functions_api.php:2272 msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "" +msgstr "Chyba při aktualizaci modulu SNMP. Id_module nemůže být prázdné." #: ../../include/functions_api.php:2279 msgid "Error updating SNMP module. Id_module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci modulu SNMP. Id_module neexistuje." #: ../../include/functions_api.php:2291 msgid "Error updating SNMP module. Id_module exists in the new agent." msgstr "" +"Chyba při aktualizaci modulu SNMP. Id_module existuje v novém agentovi." #: ../../include/functions_api.php:2394 msgid "SNMP module updated." -msgstr "" +msgstr "Modul SNMP aktualizován." #: ../../include/functions_api.php:2422 msgid "" "Error creating network component. Network component name cannot be left " "blank." msgstr "" +"Chyba při vytváření součásti sítě. Název součásti sítě nemůže být prázdný." #: ../../include/functions_api.php:2427 msgid "" "Error creating network component. Incorrect value for Network component type " "field." msgstr "" +"Chyba při vytváření součásti sítě. Nesprávná hodnota pro pole Typ síťové " +"součásti." #: ../../include/functions_api.php:2432 msgid "" "Error creating network component. Network component group cannot be left " "blank." -msgstr "" +msgstr "Chyba při vytváření součásti sítě. Skupina součásti sítě je prázdná." #: ../../include/functions_api.php:2468 msgid "" "Error creating network component. This network component already exists." -msgstr "" +msgstr "Chyba při vytváření součásti sítě. Tato součást sítě již existuje." #: ../../include/functions_api.php:2507 msgid "" "Error creating plugin component. Plugin component name cannot be left blank." msgstr "" +"Chyba při vytváření komponenty zásuvného modulu. Název komponenty modulu " +"nemůže být prázdný." #: ../../include/functions_api.php:2512 msgid "Error creating plugin component. Incorrect value for Id plugin." msgstr "" +"Chyba při vytváření komponenty zásuvného modulu. Nesprávná hodnota pro Id " +"modulu." #: ../../include/functions_api.php:2517 msgid "" "Error creating plugin component. Plugin component group cannot be left blank." msgstr "" +"Chyba při vytváření komponenty zásuvného modulu. Skupina modulu komponenty " +"nemůže být prázdná." #: ../../include/functions_api.php:2557 msgid "" "Error creating plugin component. This plugin component already exists." msgstr "" +"Chyba při vytváření komponenty zásuvného modulu. Tato komponenta již " +"existuje." #: ../../include/functions_api.php:2595 msgid "" "Error creating SNMP component. SNMP component name cannot be left blank." msgstr "" +"Chyba při vytváření komponenty SNMP. Název komponenty SNMP nemůže být " +"prázdný." #: ../../include/functions_api.php:2600 msgid "" "Error creating SNMP component. Incorrect value for Snmp component type field." msgstr "" +"Chyba při vytváření komponenty SNMP. Nesprávná hodnota pro pole typu " +"komponenty." #: ../../include/functions_api.php:2605 msgid "" "Error creating SNMP component. Snmp component group cannot be left blank." msgstr "" +"Chyba při vytváření komponenty SNMP. Skupina komponenty Snmp nemůže být " +"prázdná." #: ../../include/functions_api.php:2617 msgid "" "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " "'AES' or 'DES'. " msgstr "" +"Chyba při vytváření komponenty SNMP. snmp3_priv_method neexistuje. Nastavte " +"ji na 'AES' nebo 'DES'. " #: ../../include/functions_api.php:2622 msgid "" "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " msgstr "" +"Chyba při vytváření komponenty SNMP. snmp3_sec_level neexistuje. Nastavte " +"ji na 'authNoPriv', 'authPriv' nebo 'noAuthNoPriv'. " #: ../../include/functions_api.php:2627 msgid "" "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " "'MD5' or 'SHA'. " msgstr "" +"Chyba při vytváření komponenty SNMP. snmp3_auth_method neexistuje. Nastavte " +"ji na 'MD5' nebo 'SHA'. " #: ../../include/functions_api.php:2702 msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "" +msgstr "Chyba při vytváření komponenty SNMP. Tato komponenta již existuje." #: ../../include/functions_api.php:2739 msgid "" "Error creating local component. Local component name cannot be left blank." msgstr "" +"Chyba při vytváření místní komponenty. Název místní komponenty nemůže být " +"prázdný." #: ../../include/functions_api.php:2745 msgid "" "Error creating local component. Local component group cannot be left blank." msgstr "" +"Chyba při vytváření místní komponenty. Skupina místní komponenty nemůže být " +"prázdná." #: ../../include/functions_api.php:2769 msgid "Error creating local component." -msgstr "" +msgstr "Chyba při vytváření místní komponenty." #: ../../include/functions_api.php:2775 msgid "Error creating local component. This local component already exists." -msgstr "" +msgstr "Chyba při vytváření místní komponenty. Tato komponenta již existuje." #: ../../include/functions_api.php:2808 msgid "" "Error getting module value from all agents. Module name cannot be left blank." msgstr "" +"Chyba při získávání hodnoty modulu od všech agentů. Název modulu nemůže být " +"prázdný." #: ../../include/functions_api.php:2816 msgid "" "Error getting module value from all agents. Module name doesn't exists." msgstr "" +"Chyba při získávání hodnoty modulu od všech agentů. Název modulu neexistuje." #: ../../include/functions_api.php:2861 msgid "Error creating alert template. Template name cannot be left blank." msgstr "" +"Chyba při vytváření šablony výstrahy. Název šablony nemůže být prázdný." #: ../../include/functions_api.php:2933 msgid "Error creating alert template." -msgstr "" +msgstr "Chyba při vytváření šablony výstrahy." #: ../../include/functions_api.php:2964 msgid "Error updating alert template. Id_template cannot be left blank." msgstr "" +"Chyba při aktualizaci šablony výstrahy. ID šablony nemůže být prázdné." #: ../../include/functions_api.php:2972 msgid "Error updating alert template. Id_template doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci šablony výstrahy. ID šablony neexistuje." #: ../../include/functions_api.php:2998 msgid "Error updating alert template." -msgstr "" +msgstr "Chyba při aktualizaci šablony výstrahy." #: ../../include/functions_api.php:3003 msgid "Correct updating of alert template" -msgstr "" +msgstr "Opravit aktualizaci šablony výstrahy" #: ../../include/functions_api.php:3027 msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "" +msgstr "Chyba při mazání šablony výstrahy. ID šablony nemůže být prázdné." #: ../../include/functions_api.php:3036 msgid "Error deleting alert template." -msgstr "" +msgstr "Chyba při mazání šablony výstrahy." #: ../../include/functions_api.php:3040 msgid "Correct deleting of alert template." -msgstr "" +msgstr "Opravit mazání šablony výstrahy." #: ../../include/functions_api.php:3077 msgid "Error getting all alert templates." -msgstr "" +msgstr "Chyba při získávání všech šablon výstrah." #: ../../include/functions_api.php:3109 msgid "Error getting alert template. Id_template doesn't exists." -msgstr "" +msgstr "Chyba při získávání šablony výstrahy. ID šablony neexistuje." #: ../../include/functions_api.php:3126 msgid "Error getting alert template." -msgstr "" +msgstr "Chyba při získávání šablony výstrahy." #: ../../include/functions_api.php:3165 msgid "Error getting module groups." -msgstr "" +msgstr "Chyba při získávání skupin modulu." #: ../../include/functions_api.php:3204 msgid "Error getting plugins." -msgstr "" +msgstr "Chyba při získávání zásuvných modulů." #: ../../include/functions_api.php:3227 msgid "Error creating module from network component. Agent doesn't exists." -msgstr "" +msgstr "Chyba při vytváření modulu ze síťové komponenty. Agent neexistuje." #: ../../include/functions_api.php:3234 msgid "" "Error creating module from network component. Network component doesn't " "exists." msgstr "" +"Chyba při vytváření modulu ze síťové komponenty. Komponenta neexistuje." #: ../../include/functions_api.php:3252 msgid "Error creating module from network component. Error creating module." msgstr "" +"Chyba při vytváření modulu ze síťové komponenty. Chyba pro vytváření modulu." #: ../../include/functions_api.php:3278 msgid "Error assigning module to template. Id_template cannot be left blank." msgstr "" +"Chyba při přidělování modulu k šabloně. ID šablony nemůže být prázdné." #: ../../include/functions_api.php:3283 msgid "Error assigning module to template. Id_module cannot be left blank." msgstr "" +"Chyba při přidělování modulu k šabloně. ID modulu nemůže být prázdné." #: ../../include/functions_api.php:3288 msgid "Error assigning module to template. Id_agent cannot be left blank." msgstr "" +"Chyba při přidělování modulu k šabloně. ID agenta nemůže být prázdné." #: ../../include/functions_api.php:3295 msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "" +msgstr "Chyba při přidělování modulu k šabloně. ID šablony neexistuje." #: ../../include/functions_api.php:3305 msgid "Error assigning module to template. Id_agent doesn't exists." -msgstr "" +msgstr "Chyba při přidělování modulu k šabloně. ID agenta neexistuje." #: ../../include/functions_api.php:3312 msgid "Error assigning module to template. Id_module doesn't exists." -msgstr "" +msgstr "Chyba při přidělování modulu k šabloně. ID modulu neexistuje." #: ../../include/functions_api.php:3320 msgid "Error assigning module to template." -msgstr "" +msgstr "Chyba při přidělování modulu k šabloně." #: ../../include/functions_api.php:3346 msgid "" "Error deleting module template. Id_module_template cannot be left blank." msgstr "" +"Chyba při mazání šablony modulu. ID modulu šablony nemůže být prázdné." #: ../../include/functions_api.php:3353 msgid "Error deleting module template. Id_module_template doesn't exists." -msgstr "" +msgstr "Chyba při mazání šablony modulu. ID modulu šablony neexistuje." #: ../../include/functions_api.php:3361 ../../include/functions_api.php:3420 msgid "Error deleting module template." -msgstr "" +msgstr "Chyba při mazání šablony modulu." #: ../../include/functions_api.php:3364 ../../include/functions_api.php:3423 msgid "Correct deleting of module template." -msgstr "" +msgstr "Opravit mazání šablony modulu." #: ../../include/functions_api.php:3499 msgid "Error validate all alerts. Failed " -msgstr "" +msgstr "Chyba při ověřování všech výstrah. Selhalo " #: ../../include/functions_api.php:3502 msgid "Correct validating of all alerts." -msgstr "" +msgstr "Opravit ověření všech výstrah." #: ../../include/functions_api.php:3529 msgid "Error validating all alert policies." -msgstr "" +msgstr "Chyba při ověřování všech zásad výstrah." #: ../../include/functions_api.php:3586 msgid "Error validate all policy alerts. Failed " -msgstr "" +msgstr "Chyba při ověřování všech zásad výstrah. Selhalo " #: ../../include/functions_api.php:3589 msgid "Correct validating of all policy alerts." -msgstr "" +msgstr "Opravit ověřování všech zásad výstrah." #: ../../include/functions_api.php:3612 msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "" +msgstr "Chyba při zastavování odstávky. Id_downtime" #: ../../include/functions_api.php:3628 msgid "Downtime stopped." -msgstr "" +msgstr "Odstávka zastavena." #: ../../include/functions_api.php:3731 msgid "Error adding agent to policy. Id_policy cannot be left blank." -msgstr "" +msgstr "Chyba při přidávání agenta k zásadám. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:3736 msgid "Error adding agent to policy. Id_agent cannot be left blank." -msgstr "" +msgstr "Chyba při přidávání agenta k zásadám. Id_agent nemůže být prázdné." #: ../../include/functions_api.php:3744 msgid "Error adding agent to policy. Id_agent doesn't exists." -msgstr "" +msgstr "Chyba při přidávání agenta k zásadám. Id_agent neexistuje." #: ../../include/functions_api.php:3752 msgid "Error adding agent to policy." -msgstr "" +msgstr "Chyba při přidávání agenta k zásadám." #: ../../include/functions_api.php:3760 msgid "Error adding agent to policy. The agent is already in the policy." msgstr "" +"Chyba při přidávání agenta k zásadám. Agent již je v zásadách umístěn." #: ../../include/functions_api.php:3795 msgid "Error adding data module to policy. Id_policy cannot be left blank." msgstr "" +"Chyba při přidávání datového modulu k zásadám. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:3800 msgid "Error adding data module to policy. Module_name cannot be left blank." msgstr "" +"Chyba při přidávání datového modulu k zásadám. Module_name nemůže být " +"prázdné." #: ../../include/functions_api.php:3808 msgid "Error adding data module to policy." -msgstr "" +msgstr "Chyba při přidávání datového modulu k zásadám." #: ../../include/functions_api.php:3844 msgid "" "Error adding data module to policy. The module is already in the policy." msgstr "" +"Chyba při přidávání datového modulu k zásadám. Modul již je v zásadách." #: ../../include/functions_api.php:3884 msgid "Error updating data module in policy. Id_policy cannot be left blank." msgstr "" +"Chyba při aktualizaci datového modulu v zásadách. Id_policy nemůže být " +"prázdné." #: ../../include/functions_api.php:3889 msgid "" "Error updating data module in policy. Id_policy_module cannot be left blank." msgstr "" +"Chyba při aktualizaci datového modulu v zásadách. Id_policy_module nemůže " +"být prázdné." #: ../../include/functions_api.php:3897 msgid "Error updating data module in policy. Module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci datového modulu v zásadách. Modul neexistuje." #: ../../include/functions_api.php:3902 msgid "" @@ -19174,196 +19261,229 @@ msgstr "" #: ../../include/functions_api.php:3926 msgid "Data policy module updated." -msgstr "" +msgstr "Modul zásad dat byl aktualizován." #: ../../include/functions_api.php:3955 msgid "" "Error adding network module to policy. Id_policy cannot be left blank." msgstr "" +"Chyba při přidávání síťového modulu do zásad. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:3961 msgid "" "Error adding network module to policy. Module_name cannot be left blank." msgstr "" +"Chyba při přidávání síťového modulu do zásad. Module_name nemůže být prázdné." #: ../../include/functions_api.php:3967 msgid "" "Error adding network module to policy. Id_module_type is not correct for " "network modules." msgstr "" +"Chyba při přidávání síťového modulu do zásad. Id_module_type není správné " +"pro síťové moduly." #: ../../include/functions_api.php:3977 msgid "Error adding network module to policy." -msgstr "" +msgstr "Chyba při přidávání síťového modulu do zásad." #: ../../include/functions_api.php:4015 msgid "" "Error adding network module to policy. The module is already in the policy." msgstr "" +"Chyba při přidávání síťového modulu do zásad. Modul již je v zásadách." #: ../../include/functions_api.php:4053 msgid "" "Error updating network module in policy. Id_policy cannot be left blank." msgstr "" +"Chyba při aktualizaci síťového modulu v zásadách. Id_policy nemůže být " +"prázdné." #: ../../include/functions_api.php:4059 msgid "" "Error updating network module in policy. Id_policy_module cannot be left " "blank." msgstr "" +"Chyba při aktualizaci síťového modulu v zásadách. Id_policy_module nemůže " +"být prázdné." #: ../../include/functions_api.php:4068 msgid "Error updating network module in policy. Module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci síťového modulu v zásadách. Modul neexistuje." #: ../../include/functions_api.php:4074 msgid "" "Error updating network module in policy. Module type is not network type." msgstr "" +"Chyba při aktualizaci síťového modulu v zásadách. Typ modulu není síťový." #: ../../include/functions_api.php:4100 msgid "Network policy module updated." -msgstr "" +msgstr "Modul síťových zásad byl aktualizován." #: ../../include/functions_api.php:4127 msgid "Error adding plugin module to policy. Id_policy cannot be left blank." msgstr "" +"Chyba při přidávání zásuvného modulu do zásad. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:4132 msgid "" "Error adding plugin module to policy. Module_name cannot be left blank." msgstr "" +"Chyba při přidávání zásuvného modulu do zásad. Module_name nemůže být " +"prázdné." #: ../../include/functions_api.php:4137 msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." msgstr "" +"Chyba při přidávání zásuvného modulu do zásad. Id_plugin nemůže být prázdné." #: ../../include/functions_api.php:4145 msgid "Error adding plugin module to policy." -msgstr "" +msgstr "Chyba při přidávání zásuvného modulu do zásad." #: ../../include/functions_api.php:4188 msgid "" "Error adding plugin module to policy. The module is already in the policy." msgstr "" +"Chyba při přidávání zásuvného modulu do zásad. Modul již je v zásadách." #: ../../include/functions_api.php:4227 msgid "" "Error updating plugin module in policy. Id_policy cannot be left blank." msgstr "" +"Chyba při aktualizaci zásuvného modulu v zásadách. Id_policy nemůže být " +"prázdné." #: ../../include/functions_api.php:4233 msgid "" "Error updating plugin module in policy. Id_policy_module cannot be left " "blank." msgstr "" +"Chyba při aktualizaci zásuvného modulu v zásadách. Id_policy_module nemůže " +"být prázdné." #: ../../include/functions_api.php:4242 msgid "Error updating plugin module in policy. Module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci zásuvného modulu v zásadách. Modul neexistuje." #: ../../include/functions_api.php:4248 msgid "" "Error updating plugin module in policy. Module type is not network type." msgstr "" +"Chyba při aktualizaci zásuvného modulu v zásadách. Typ modulu není síťový." #: ../../include/functions_api.php:4280 msgid "Plugin policy module updated." -msgstr "" +msgstr "Zásuvný modul zásad byl aktualizován." #: ../../include/functions_api.php:4455 msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." msgstr "" +"Chyba při přidávání modulu SNMP do zásad. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:4460 msgid "Error adding SNMP module to policy. Module_name cannot be left blank." msgstr "" +"Chyba při přidávání modulu SNMP do zásad. Module_name nemůže být prázdné." #: ../../include/functions_api.php:4468 msgid "Error adding SNMP module to policy." -msgstr "" +msgstr "Chyba při přidávání modulu SNMP do zásad." #: ../../include/functions_api.php:4473 msgid "" "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " "modules." msgstr "" +"Chyba při přidávání modulu SNMP do zásad. Id_module_type není správný pro " +"moduly SNMP." #: ../../include/functions_api.php:4567 msgid "" "Error adding SNMP module to policy. The module is already in the policy." -msgstr "" +msgstr "Chyba při přidávání modulu SNMP do zásad. Modul již je v zásadách." #: ../../include/functions_api.php:4606 msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." msgstr "" +"Chyba při aktualizaci modulu SNMP v zásadách. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:4611 msgid "" "Error updating SNMP module in policy. Id_policy_module cannot be left blank." msgstr "" +"Chyba při aktualizaci modulu SNMP v zásadách. Id_policy_name nemůže být " +"prázdné." #: ../../include/functions_api.php:4619 msgid "Error updating SNMP module in policy. Module doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci modulu SNMP v zásadách. Modul neexistuje." #: ../../include/functions_api.php:4624 msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "" +msgstr "Chyba při aktualizaci modulu SNMP v zásadách. Typ modulu není SNMP." #: ../../include/functions_api.php:4633 msgid "" "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " "'AES' or 'DES'. " msgstr "" +"Chyba při aktualizaci modulu SNMP. snmp3_priv_method neexistuje. Nastavte ji " +"na 'AES' nebo 'DES'. " #: ../../include/functions_api.php:4639 msgid "" "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " msgstr "" +"Chyba při aktualizaci modulu SNMP. snmp3_sec_level neexistuje. Nastavte ji " +"na 'authNoPriv', 'authPriv' nebo 'noAuthNoPriv'. " #: ../../include/functions_api.php:4645 msgid "" "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " "'MD5' or 'SHA'. " msgstr "" +"Chyba při aktualizaci modulu SNMP. snmp3_auth_method neexistuje. Nastavte ji " +"na 'MD5' nebo 'SHA'. " #: ../../include/functions_api.php:4676 msgid "SNMP policy module updated." -msgstr "" +msgstr "Modul zásad SNMP aktualizován." #: ../../include/functions_api.php:4699 msgid "Error applying policy. Id_policy cannot be left blank." -msgstr "" +msgstr "Chyba při použití zásad. Id_policy nemůže být prázdné." #: ../../include/functions_api.php:4712 ../../include/functions_api.php:4736 msgid "Error applying policy." -msgstr "" +msgstr "Chyba při použití zásad." #: ../../include/functions_api.php:4723 msgid "Error applying policy. This policy is already pending to apply." -msgstr "" +msgstr "Chyba při použití zásad. Tato zásada čeká na použití." #: ../../include/functions_api.php:4781 msgid "Error applying all policies." -msgstr "" +msgstr "Chyba při použití všech zásad." #: ../../include/functions_api.php:4833 msgid "Error in group creation. Group_name cannot be left blank." -msgstr "" +msgstr "Chyba při vytváření skupiny. Group_name nemůže být prázdné." #: ../../include/functions_api.php:4838 msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "" +msgstr "Chyba při vytváření skupiny. Icon_name nemůže být prázdné." #: ../../include/functions_api.php:4848 ../../include/functions_api.php:4965 msgid "Error in group creation. Id_parent_group doesn't exists." -msgstr "" +msgstr "Chyba při vytváření skupiny. Id_parent_group neexistuje." #: ../../include/functions_api.php:4876 msgid "Error in group creation." -msgstr "" +msgstr "Chyba při vytváření skupiny." #: ../../include/functions_api.php:4953 msgid "Error in netflow filter creation. Filter name cannot be left blank." @@ -19395,31 +19515,31 @@ msgstr "Vytvořit uživatele." #: ../../include/functions_api.php:5177 msgid "Error updating user. Id_user cannot be left blank." -msgstr "" +msgstr "Chyba při aktualizaci uživatele. Id_user nemůže být prázdné." #: ../../include/functions_api.php:5185 msgid "Error updating user. Id_user doesn't exists." -msgstr "" +msgstr "Chyba při aktualizaci uživatele. Id_user neexistuje." #: ../../include/functions_api.php:5201 msgid "Error updating user. Password info incorrect." -msgstr "" +msgstr "Chyba při aktualizaci uživatele. Údaje o hesle nesprávné." #: ../../include/functions_api.php:5209 msgid "Updated user." -msgstr "" +msgstr "Uživatel aktualizován." #: ../../include/functions_api.php:5258 msgid "Error in user enabling/disabling." -msgstr "" +msgstr "Chyba v povolení/zákazu uživatele." #: ../../include/functions_api.php:5262 msgid "Enabled user." -msgstr "" +msgstr "Uživatel povolen." #: ../../include/functions_api.php:5265 msgid "Disabled user." -msgstr "" +msgstr "Uživatel zakázán." #: ../../include/functions_api.php:6731 msgid "Delete user." @@ -19662,7 +19782,7 @@ msgstr "" #: ../../include/functions_config.php:172 msgid "License information" -msgstr "" +msgstr "Informace o licenci" #: ../../include/functions_config.php:195 msgid "Forward SNMP traps to agent (if exist)" @@ -19964,7 +20084,7 @@ msgstr "Režim vývojáře je povolen" #: ../../include/functions_config.php:1455 msgid "Error first setup Open update" -msgstr "" +msgstr "Chyba nejdříve nastavte otevřené aktualizace" #: ../../include/functions_config.php:1461 msgid "" @@ -19975,7 +20095,7 @@ msgstr "" #: ../../include/functions_config.php:1462 msgid "New update of Pandora Console" -msgstr "" +msgstr "Nová aktualizace konzole Pandora" #: ../../include/functions_config.php:1476 msgid "" @@ -19995,7 +20115,7 @@ msgstr "" #: ../../include/functions_config.php:1482 #: ../../include/functions_config.php:1488 msgid "Unlimited" -msgstr "" +msgstr "Bez omezení" #: ../../include/functions_config.php:1482 #: ../../include/functions_config.php:1488 @@ -20120,7 +20240,7 @@ msgstr "Limit SLA" #: ../../include/functions_reporting_html.php:345 msgid "SLA Compliance" -msgstr "" +msgstr "Dodržení SLA" #: ../../include/functions_reporting_html.php:373 msgid "Fail" @@ -20128,7 +20248,7 @@ msgstr "Neúspěšný" #: ../../include/functions_reporting_html.php:558 msgid "Events by agent" -msgstr "" +msgstr "Události podle agenta" #: ../../include/functions_reporting_html.php:570 msgid "Events by user validator" @@ -20138,7 +20258,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:1161 #: ../../include/functions_reporting_html.php:2716 msgid "Events by criticity" -msgstr "" +msgstr "Události podle vážnosti" #: ../../include/functions_reporting_html.php:594 msgid "Events validated vs unvalidated" @@ -20185,7 +20305,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:1149 msgid "Events validated by user" -msgstr "" +msgstr "Události ověřené uživatelem" #: ../../include/functions_reporting_html.php:1238 #, php-format @@ -20268,7 +20388,7 @@ msgstr "Monitory NE OK" #: ../../include/functions_reporting_html.php:2178 #, php-format msgid "Agents in group: %s" -msgstr "" +msgstr "Agenti ve skupinách: %s" #: ../../include/functions_reporting_html.php:2271 msgid "Last failure" @@ -20346,1427 +20466,3 @@ msgstr "Chyba zabezpečení. Prosím kontaktujte správce." #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "Soubor chybí v úložišti disku. Prosím kontaktujte správce." - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Settings" -#~ msgstr "Nastavení" - -#~ msgid "Development" -#~ msgstr "Vývoj" - -#~ msgid "Factor" -#~ msgstr "Faktor" - -#~ msgid "Store" -#~ msgstr "Uložit" - -#~ msgid "Up" -#~ msgstr "Nahoru" - -#~ msgid "Master" -#~ msgstr "Master" - -#~ msgid "hour" -#~ msgstr "hodina" - -#~ msgid "day" -#~ msgstr "den" - -#~ msgid "week" -#~ msgstr "týden" - -#~ msgid "month" -#~ msgstr "měsíc" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Load" -#~ msgstr "Načíst" - -#~ msgid "SNMP server" -#~ msgstr "Server SNMP" - -#~ msgid "Seconds" -#~ msgstr "Sekundy" - -#~ msgid "Raw Data" -#~ msgstr "Syrová data" - -#~ msgid "from" -#~ msgstr "z alba" - -#~ msgid " from " -#~ msgstr " od " - -#~ msgid " to " -#~ msgstr " do " - -#~ msgid "Info" -#~ msgstr "Informace" - -#~ msgid "Last hour" -#~ msgstr "Poslední hodinu" - -#~ msgid "Older" -#~ msgstr "Starší" - -#~ msgid "Your IP" -#~ msgstr "Vaše IP" - -#~ msgid "Logged Out" -#~ msgstr "Odhlášen" - -#~ msgid "No news articles at this moment" -#~ msgstr "Žádné novinky" - -#~ msgid "You are" -#~ msgstr "Jste" - -#~ msgid "General information" -#~ msgstr "Důležitá informace" - -#~ msgid "Monitors warning" -#~ msgstr "Monitory - varování" - -#~ msgid "Monitors normal" -#~ msgstr "Monitory - varování" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitory - neznámé" - -#~ msgid "Monitors critical" -#~ msgstr "Monitory - kritické" - -#~ msgid "Alerts defined" -#~ msgstr "Určené výstrahou" - -#~ msgid "Users defined" -#~ msgstr "Určené uživatelem" - -#~ msgid "minute" -#~ msgstr "minuta" - -#~ msgid "Autorefresh" -#~ msgstr "Autoobnovování" - -#~ msgid "Local modules rate" -#~ msgstr "Množství místních modulů" - -#~ msgid "Monitors not init" -#~ msgstr "Monitor nezaveden" - -#~ msgid "Global health" -#~ msgstr "Globální zdraví" - -#~ msgid "Remote modules rate" -#~ msgstr "Množství vzdálených modulů" - -#~ msgid "Uninitialized modules" -#~ msgstr "Nezavedené moduly" - -#~ msgid "ALERTS FIRED" -#~ msgstr "VYSLANÉ VÝSTRAHY" - -#~ msgid "The colours meaning:" -#~ msgstr "Barvy znamenají:" - -#~ msgid "Update manager settings updated" -#~ msgstr "Nastavení správce aktualizací změněno" - -#~ msgid "Update server host" -#~ msgstr "Hostitel aktualizačního serveru" - -#~ msgid "Update server path" -#~ msgstr "Cesta aktualizačního serveru" - -#~ msgid "Update server port" -#~ msgstr "Port aktualizačního serveru" - -#~ msgid "Binary input path" -#~ msgstr "Cesta binárního vstupu" - -#~ msgid "Testing" -#~ msgstr "Zkouška" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Správce aktualizací odesílá anonymní informace o používání Pandora FMS " -#~ "(počet spuštěných agentů a modulů. Abyste toto zakázali, stačí rozšíření " -#~ "smazat nebo odstranit adresu vzdáleného serveru z nastavení modulu Správce " -#~ "aktualizací." - -#~ msgid "Your system is up-to-date" -#~ msgstr "Váš systém je aktuální" - -#~ msgid "Server authorization rejected" -#~ msgstr "Ověření na serveru zamítnuto" - -#~ msgid "Server connection failed" -#~ msgstr "Připojení k serveru selhalo" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Soubor generátoru klíče není spustitelný" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Soubor generátoru klíče neexistuje" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Existuje nová aktualizace pro Pandora FMS" - -#~ msgid "Your system version number is" -#~ msgstr "Vaše číslo verze systému je" - -#~ msgid "Overwrite local changes" -#~ msgstr "Přepsat místní změny" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Zadejte alespoň dva znaky pro hledání" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Existuje nová aktualizace pro Pandora" - -#~ msgid "More info" -#~ msgstr "Další informace" - -#~ msgid "Update manager settings" -#~ msgstr "Nastavení správce aktualizací" - -#~ msgid "Modules groups" -#~ msgstr "Skupiny modulů" - -#~ msgid "Create incident from event" -#~ msgstr "Vytvořit incident z události" - -#~ msgid "Event graph by group" -#~ msgstr "Graf události pdole skupiny" - -#~ msgid "MD5 check" -#~ msgstr "Kontrola MD5" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Zpožděné moduly / Max. zpoždění (sek)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Moduly běžící na tomto serveru / Celkem modulů tohoto typu" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Tento server nemá přiděleny žádné úkoly průzkumu" - -#~ msgid "Flash charts" -#~ msgstr "Flash grafy" - -#~ msgid "Module Up" -#~ msgstr "Přesunout modul nahoru" - -#~ msgid "Module Down" -#~ msgstr "Přesunout modul dolů" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Neexistují žádné moduly pro vyhodnocením S.I.A. od" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "V databázi nejsou nastaveny žádné servery" - -#~ msgid "User-defined SLA items" -#~ msgstr "Uživatelem zadané položky SLA" - -#~ msgid "Invalid method supplied" -#~ msgstr "Zadána neplatná metoda" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Tento agent nemá žádné aktivní monitory" - -#~ msgid "Compound alerts" -#~ msgstr "Složené výstrahy" - -#~ msgid " seconds." -#~ msgstr " sekund" - -#~ msgid "Timestamp from" -#~ msgstr "Časové razítko od" - -#~ msgid "No simple alerts found" -#~ msgstr "Nenalezeny žádné výstrahy" - -#~ msgid "Single alerts" -#~ msgstr "Jednoduché výstrahy" - -#~ msgid "Events generated -by module-" -#~ msgstr "Události vytvořené -modulem-" - -#~ msgid "Timestamp to" -#~ msgstr "Časové razítko do" - -#~ msgid "Flag" -#~ msgstr "Označit" - -#~ msgid "secs." -#~ msgstr "sek." - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Tento agent nemá žádný modul" - -#~ msgid "int" -#~ msgstr "číslo" - -#~ msgid "Agent down" -#~ msgstr "Agent mimo provoz" - -#~ msgid "Alerts disabled" -#~ msgstr "Výstrahy zakázány" - -#~ msgid "At least one monitor fails" -#~ msgstr "Alespoň jeden monitor selhal" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Změna mezi Zeleným/Červeným stavem" - -#~ msgid "Read message" -#~ msgstr "Přečíst zprávu" - -#~ msgid "-Select group-" -#~ msgstr "-Vyberte skupinu-" - -#~ msgid "-Select user-" -#~ msgstr "-Vyberte uživatele-" - -#~ msgid "No layouts found" -#~ msgstr "Nenalezena žádná rozržení" - -#~ msgid "Search value" -#~ msgstr "Hledaná hodnota" - -#~ msgid "Group detailed event" -#~ msgstr "Podrobná událost skupiny" - -#~ msgid "Sumatory" -#~ msgstr "Suma" - -#~ msgid "Agent detailed event" -#~ msgstr "Podrobná událost agenta" - -#~ msgid "Agents detailed event" -#~ msgstr "Podrobná událost agentů" - -#~ msgid "Combined image render" -#~ msgstr "Kombinované vykreslení obrázku" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "Při mazání tohoto agenta došlo k chybě, operace byla zrušena" - -#~ msgid "Could not delete agent" -#~ msgstr "Nelze smazat agenta" - -#~ msgid "Could not delete modules" -#~ msgstr "Nelze smazat moduly" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Plugin component" -#~ msgstr "Komponenta zásuvného modulu" - -#~ msgid "Plugin parameters" -#~ msgstr "Parametry zásuvného modulu" - -#~ msgid "Module Interval" -#~ msgstr "Interval modulu" - -#~ msgid "WMI component management" -#~ msgstr "Správa komponenty WMI" - -#~ msgid "Minimum Data" -#~ msgstr "Minimum dat" - -#~ msgid "Maximum Data" -#~ msgstr "Maximum dat" - -#~ msgid "You don't have access" -#~ msgstr "Nemáte přístup" - -#~ msgid "Only pending" -#~ msgstr "Pouze nevyřízené" - -#~ msgid "Config" -#~ msgstr "Nastavení" - -#~ msgid "Create networkmap" -#~ msgstr "Vytvořit mapu sítě" - -#~ msgid "Software agent data" -#~ msgstr "Data softwarového agenta" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitor softwarového agenta" - -#~ msgid "Network agent data" -#~ msgstr "Data síťového agenta" - -#~ msgid "Network agent monitor" -#~ msgstr "Monitor síťového agenta" - -#~ msgid "Agents in group" -#~ msgstr "Agenti ve skupině" - -#~ msgid "On the edge" -#~ msgstr "Na hraně" - -#~ msgid "Inside limits" -#~ msgstr "Uvnitř limitů" - -#~ msgid "Last 8 hours" -#~ msgstr "Posledních 8 hodin" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Kvůli bezpečnostním omezením jsou jisté příznaky či slova, která nemůžete " -#~ "použít" - -#~ msgid "Illegal query" -#~ msgstr "Neplatný dotaz" - -#~ msgid "or" -#~ msgstr "nebo" - -#~ msgid "User defined graph" -#~ msgstr "Uživatelem zadaný graf" - -#~ msgid "Module detailed event" -#~ msgstr "Podrobná událost modulu" - -#~ msgid "Modules over or equal to" -#~ msgstr "Moduly přes nebo rovné" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Moduly v kritickém nebo varovném stavu" - -#~ msgid "Modules under those conditions" -#~ msgstr "Moduly v těchto podmínkách" - -#~ msgid "There are no" -#~ msgstr "Neexistují žádné" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Do současného adresáře nemůže HTTP server zapisovat" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Prosím zkontrolujte, že HTTP server má oprávnění k zápisu do současného " -#~ "adresáře" - -#~ msgid "Upload file" -#~ msgstr "Nahrát soubor" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Agent udržení monitoru" - -#~ msgid "Unmanaged error" -#~ msgstr "Nespravovaná chyba" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Nemáte dostatečné oprávnění pro přístup k tomuto zdroji" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Pole #1 (Zkratka, název)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Pole #2 (Full Text)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Pole #2 (Jeden řádek)" - -#~ msgid "Duplicate config" -#~ msgstr "Duplikovat nastavení" - -#~ msgid "Manage modules" -#~ msgstr "Správa modulů" - -#~ msgid "Correlation" -#~ msgstr "Korelace" - -#~ msgid "Manage plugins" -#~ msgstr "Správa zásuvných modulů" - -#~ msgid "Manage profiles" -#~ msgstr "Správa profilů" - -#~ msgid "Field 1" -#~ msgstr "Pole 1" - -#~ msgid "Field 2" -#~ msgstr "Pole 2" - -#~ msgid "Correlated alerts" -#~ msgstr "Korelované výstrahy" - -#~ msgid "Field 3" -#~ msgstr "Pole 3" - -#~ msgid "Assigned actions" -#~ msgstr "Přidělené volby" - -#~ msgid "Configure correlated alert" -#~ msgstr "Nastavit korelovanou výstrahu" - -#~ msgid "No name was given" -#~ msgstr "Nebylo zadán název" - -#~ msgid "Add condition" -#~ msgstr "Přidat podmínku" - -#~ msgid "Operator" -#~ msgstr "Operátor" - -#~ msgid "Assigned to" -#~ msgstr "Přiřazené k" - -#~ msgid "No agent was given" -#~ msgstr "Nebyl zadán agent" - -#~ msgid "No conditions were given" -#~ msgstr "Nebyly zadány podmínky" - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota neodpovídá " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota je " - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota odpovídá " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota není " - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota je nad " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota je mezi a " -#~ "" - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota není mezi a " -#~ "" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "Výstraha bude vyslána, když hodnota je pod " - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Varování: Když změníte pozici agenta, agent automaticky aktivuje volbu " -#~ "'Ignorovat nová data GIS'" - -#~ msgid "Error adding module" -#~ msgstr "Chyba při přidávání modulu" - -#~ msgid "Modules successfully added " -#~ msgstr "Moduly úspěšně přidány " - -#~ msgid "There was a problem adding module" -#~ msgstr "Při přidávání modulu se vyskytl problém" - -#~ msgid "There was a problem updating module" -#~ msgstr "Při aktualizaci modulu se vyskytl problém" - -#~ msgid "First name" -#~ msgstr "Jméno" - -#~ msgid "Last name" -#~ msgstr "Příjmení" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Tento uživatel má oprávnění vše spravovat. Toto je správce a přepisuje " -#~ "všechna oprávnění daná ve skupinách/profilech." - -#~ msgid "Manage Database" -#~ msgstr "Správa databáze" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hodina" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d hodin" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d měsíc" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d týdnů" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d týden" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dnů" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d den" - -#~ msgid "IP address option" -#~ msgstr "Volba IP adresy" - -#~ msgid "User option" -#~ msgstr "Volba uživatele" - -#~ msgid "Password option" -#~ msgstr "Volba hesla" - -#~ msgid "Port option" -#~ msgstr "Volba portu" - -#~ msgid "Database sanity tool" -#~ msgstr "Nástroj soudržnosti databáze" - -#~ msgid "Checking database consistency" -#~ msgstr "Kontrola konzistence databáze" - -#~ msgid "Deleting non-init data" -#~ msgstr "Mazání nezavádějících dat" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Kontrola tabulky tagente_estado" - -#~ msgid "Data older than" -#~ msgstr "Data starší než" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Vyčistit úkoly spuštěné pro agenta" - -#~ msgid "Deleting records for module" -#~ msgstr "Mazání záznamů modulu" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Smazat nezavedené moduly" - -#~ msgid "Sanitize my database now" -#~ msgstr "Ošetřit databázi" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Nástroj pro údržbu Pandora FMS je použitý pro odstranění špatných " -#~ "databázových struktur dat, vytvořených modulů s prázdným stavem, nebo " -#~ "moduly, které nemohou být zavedeny (a nezaznamenává žádná platná data) ale " -#~ "při každém intervalu se snaží získat data. Tento druh špatných modulů by " -#~ "mohl snížit výkon Pandora FMS. Tento nástroj je také zaveden v " -#~ "pandora_db.pl, který by měl být spuštěn každý den nebo týden. Toto " -#~ "fungování databáze NEZHUŠŤUJE vaší databázi, pouze maže špatně strukturovaná " -#~ "data." - -#~ msgid "Press here to get database information as text" -#~ msgstr "Stiskněte zde pro získání informací o databázi jako text" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Stiskněte zde pro získání informací o databázi jako graf" - -#~ msgid "Modules per agent" -#~ msgstr "Moduly na agenta" - -#~ msgid "Packets per agent" -#~ msgstr "Pakety na agenta" - -#~ msgid "Total data" -#~ msgstr "Dat celkem" - -#~ msgid "Assigned modules" -#~ msgstr "Přidělené moduly" - -#~ msgid "Decrease Weight" -#~ msgstr "Snížit váhu" - -#~ msgid "Increase Weight" -#~ msgstr "Zvýšit váhu" - -#~ msgid "Label color" -#~ msgstr "Barva štítku" - -#~ msgid "Visual configuration" -#~ msgstr "Vizuální nastavení" - -#~ msgid "General configuration" -#~ msgstr "Obecné nastavení" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Období SLA (sekundy)" - -#~ msgid "There are no agents included in this group" -#~ msgstr "V této skupině nejsou zařazeni žádní agenti" - -#~ msgid "Export targets" -#~ msgstr "Exportovat cíle" - -#~ msgid "No selected agents to copy" -#~ msgstr "Nejsou zvoleni žádní agenti ke kopírování" - -#~ msgid "Data Copy" -#~ msgstr "Kopie dat" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Vytváření kopie souboru nastavení pro" - -#~ msgid "Remote configuration management" -#~ msgstr "Správa vzdáleného nastavení" - -#~ msgid "To agent(s):" -#~ msgstr "Pro agenty:" - -#~ msgid "Source group" -#~ msgstr "Zdrojová skupina" - -#~ msgid "Replicate configuration" -#~ msgstr "Kopírovat nastavení" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "Error updating export target" -#~ msgstr "Chyba při aktualizaci cíle exportu" - -#~ msgid "Successfully updated export target" -#~ msgstr "Cíl exportu úspěšně aktualizován" - -#~ msgid "Error deleting export target" -#~ msgstr "Chyba při mazání cíle exportu" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Cíl exportu úspěšně smazán" - -#~ msgid "Preffix" -#~ msgstr "Předpona" - -#~ msgid "Transfer mode" -#~ msgstr "Režim přenosu" - -#~ msgid "Extra options" -#~ msgstr "Další volby" - -#~ msgid "Target directory" -#~ msgstr "Cílový adresář" - -#~ msgid "There are no export targets configured" -#~ msgstr "Nejsou nastaveny žádné cíle exportu" - -#~ msgid "Keygen path" -#~ msgstr "Cesta generátoru klíče" - -#~ msgid "Code / binary directory" -#~ msgstr "Kódový / binární adresář" - -#~ msgid "Custom graph name" -#~ msgstr "Vlastní název grafu" - -#~ msgid "Update layout successful" -#~ msgstr "Aktualizace rozvržení úspěšná" - -#~ msgid "Update layout failed" -#~ msgstr "Aktualizace rozvržení selhala" - -#~ msgid "preview" -#~ msgstr "náhled" - -#~ msgid "Render now" -#~ msgstr "Vykreslit nyní" - -#~ msgid "No items defined" -#~ msgstr "Neurčeny žádné položky" - -#~ msgid "Redraw" -#~ msgstr "Překreslit" - -#~ msgid "Custom graph store" -#~ msgstr "Uložení vlstního grafu" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Systém nápovědy FMS Pandora" - -#~ msgid "Two Months" -#~ msgstr "Dva měsíce" - -#~ msgid "Map builder" -#~ msgstr "Stavitel mapy" - -#~ msgid "Last Month" -#~ msgstr "Minulý měsíc" - -#~ msgid "Authentication Error" -#~ msgstr "Chyba při ověřování" - -#~ msgid "Map element editor" -#~ msgstr "Editor prvku mapy" - -#~ msgid "Six Months" -#~ msgstr "Šest měsíců" - -#~ msgid "3 hours" -#~ msgstr "3 hodiny" - -#~ msgid "4 days" -#~ msgstr "4 dny" - -#~ msgid "Reporting type" -#~ msgstr "Typ hlášení" - -#~ msgid "Add item to report" -#~ msgstr "Přidat položku k hlášení" - -#~ msgid "Module is not set" -#~ msgstr "Modul není nastaven" - -#~ msgid "Network Server" -#~ msgstr "Síťový server" - -#~ msgid "Data Server" -#~ msgstr "Datový server" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Cíl exportu úspěšně smazán" - -#~ msgid "export targets" -#~ msgstr "exportovaných cílů" - -#~ msgid "MD5 Check" -#~ msgstr "Kontrola MD5" - -#~ msgid "Transfer Mode" -#~ msgstr "Režim přenosu" - -#~ msgid "DB Maintenance" -#~ msgstr "Údržba DB" - -#~ msgid "Pandora Setup" -#~ msgstr "Nastavení Pandora" - -#~ msgid "Group management" -#~ msgstr "Správa skupiny" - -#~ msgid "Network profile" -#~ msgstr "Síťový server" - -#~ msgid "DB Information" -#~ msgstr "Informace o DB" - -#~ msgid "Automatic update check" -#~ msgstr "Automatická kontrola aktualizací" - -#~ msgid "Manage Agents" -#~ msgstr "Správa výstrah" - -#~ msgid "Manage User Rights" -#~ msgstr "Správa práv uživatelů" - -#~ msgid "Edit Alerts" -#~ msgstr "Upravit výstrahy" - -#~ msgid "Database Management" -#~ msgstr "Správa databáze" - -#~ msgid "Pandora System Management" -#~ msgstr "Správa systému Pandora" - -#~ msgid "Alerts Management" -#~ msgstr "Správa výstrah" - -#~ msgid "Visual map wizard" -#~ msgstr "Průvodce vizuální mapou" - -#~ msgid "Image range (px)" -#~ msgstr "Rozsah obrázku (px)" - -#~ msgid "Image size (px)" -#~ msgstr "Velikost obrázku (px)" - -#~ msgid "No layout with this id found" -#~ msgstr "Žádné rozvržení s takovýmto ID" - -#~ msgid "Pandora users" -#~ msgstr "Uživatelé Pandora" - -#~ msgid "Deleting file" -#~ msgstr "Odstraňování souboru" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#~ msgid "Deleting" -#~ msgstr "Mazání" - -#~ msgid "Group name" -#~ msgstr "Název skupiny" - -#~ msgid "Graphs management" -#~ msgstr "Správa grafů" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Vytvořen adresář %s" - -#~ msgid "Edit modules" -#~ msgstr "Upravit moduly" - -#~ msgid "Delete alerts" -#~ msgstr "Smazat výstrahy" - -#~ msgid "Delete modules" -#~ msgstr "Smazat moduly" - -#~ msgid "Massive agent deletion" -#~ msgstr "Hromadné mazání agentů" - -#~ msgid "Configuration management" -#~ msgstr "Správa nastavení" - -#~ msgid "Delete agents" -#~ msgstr "Smazat agenty" - -#~ msgid "Could not delete alerts" -#~ msgstr "Nelze smazat výstrahy" - -#~ msgid "Available templates" -#~ msgstr "Dostupné šablony" - -#~ msgid "Custom Value" -#~ msgstr "Vlastní hodnota" - -#~ msgid "Module assignment" -#~ msgstr "Přidělení modulu" - -#~ msgid "TCP port" -#~ msgstr "Port TCP" - -#~ msgid "Manage SNMP console" -#~ msgstr "Správa konzole SNMP" - -#~ msgid "Update agent" -#~ msgstr "Aktualizovat agenta" - -#~ msgid "Pandora system management" -#~ msgstr "Správa systému Pandora" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Posledních %s dnů" - -#~ msgid "Manage user rights" -#~ msgstr "Spravovat uživatelská oprávnění" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "Desc" -#~ msgstr "Sest" - -#~ msgid "Wrong module type" -#~ msgstr "Špatný typ modulu" - -#~ msgid "System Events" -#~ msgstr "Události systému" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "Pandora agents" -#~ msgstr "Agenti Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Statistiky aktivit uživatele" - -#~ msgid "None agent in this category" -#~ msgstr "Žádný agent v této kategorii" - -#~ msgid "Total Agents" -#~ msgstr "Celkem agentů" - -#~ msgid "Agent without monitors" -#~ msgstr "Agenti bez monitorů" - -#~ msgid "SLA view" -#~ msgstr "Zobrazení SLA" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatické SLA pro monitory" - -#~ msgid "Pandora Agents" -#~ msgstr "Agenti Pandora" - -#~ msgid "Validated event" -#~ msgstr "Ověřená událost" - -#~ msgid "Full list of Monitors" -#~ msgstr "Úplný seznam monitorů" - -#~ msgid "Free text" -#~ msgstr "Free text" - -#~ msgid "Thurdsday" -#~ msgstr "Čtvrtek" - -#~ msgid "Data from agent " -#~ msgstr "Data za agenta " - -#~ msgid "Hr" -#~ msgstr "Hod" - -#~ msgid "No module has been selected" -#~ msgstr "Nebyl vybrán žádný modul" - -#~ msgid "Download file" -#~ msgstr "Stáhnout soubor" - -#~ msgid "Recon Server" -#~ msgstr "Průzkumný server" - -#~ msgid "Profile successfully created" -#~ msgstr "Profil úspěšně vytvořen" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profil úspěšně aktualizován" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Výstraha úspěšně smazána" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Při aktualizaci agenta nastal problém" - -#~ msgid "Alert successfully updated" -#~ msgstr "Výstraha úspěšně aktualizována" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent úspěšně vytvořen" - -#~ msgid "Alert successfully created" -#~ msgstr "Výstraha úspěšně vytvořena" - -#~ msgid "Module deleted successfully" -#~ msgstr "Modul úspěšně smazán" - -#~ msgid "To Agent(s):" -#~ msgstr "Pro agenty:" - -#~ msgid "Configuration Management" -#~ msgstr "Správa nastavení" - -#~ msgid "WMI Query" -#~ msgstr "Dotaz WMI" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Zavedení stavu neúspěšné" - -#~ msgid "Available Agents" -#~ msgstr "Dostupní agenti" - -#~ msgid "Prediction Server" -#~ msgstr "Server předpovědi" - -#~ msgid "WMI Server" -#~ msgstr "Server WMI" - -#~ msgid "Plugin Server" -#~ msgstr "Server zásuvných modulů" - -#~ msgid "Alert type" -#~ msgstr "Typ výstrahy" - -#~ msgid "Add Modules" -#~ msgstr "Přidat moduly" - -#~ msgid "User successfully deleted" -#~ msgstr "Uživatel úspěšně smazán" - -#~ msgid "Database Maintenance" -#~ msgstr "Údržba databáze" - -#~ msgid "Database Information" -#~ msgstr "Informace o databázi" - -#~ msgid "Standard user" -#~ msgstr "Standardní uživatel" - -#~ msgid "Event report" -#~ msgstr "Hlášení o události" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Při načítání výstrahy nastal problém" - -#~ msgid "Event Database cleanup" -#~ msgstr "Vyčištění databáze událostí" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Při vytváření SLA nastal problém" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA bylo úspěšně vytvořeno" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Při vytváření hlášení nastal problém" - -#~ msgid "Reporting successfully created" -#~ msgstr "Hlášení úspěšně vytvořeno" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Toto je internetový systém správy Pandora FMS. Odsud můžete spravovat své " -#~ "agenty, upozornění a incidenty. Sezení zůstane otevřeno, dokud existuje " -#~ "aktivita účtu." - -#~ msgid "SLAs defined" -#~ msgstr "SLA určeno" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Při mazání SLA nastal problém" - -#~ msgid "Custom reporting builder" -#~ msgstr "Stavitel vlastního hlášení" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA bylo úspěšně smazáno" - -#~ msgid "SLA report construction" -#~ msgstr "Vytváření hlášení SLA" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Přesuňte prvek sem pro úpravu vlastností" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "Seznam IP oddělených návratem vozíku." - -#~ msgid "matches of the alert" -#~ msgstr "shody upozornění" - -#~ msgid "Map element trash" -#~ msgstr "Koš prvků mapy" - -#~ msgid "Select an element to delete:" -#~ msgstr "Vyberte prvek ke smazání:" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Prosím zvolte obrázek nebo zadejte název prvku" - -#~ msgid "Graph builder module list" -#~ msgstr "Seznam modulů stavitele grafů" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Shluknout CSS a JS do hlavičky" - -#~ msgid "Report name is empty" -#~ msgstr "Název hlášení je prázdný" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Není vybrán agent, prosím vyberte nějakého agenta" - -#~ msgid "Read agent information" -#~ msgstr "Přečíst informace o agentovi" - -#~ msgid "Create incidents" -#~ msgstr "Vytvořit incidenty" - -#~ msgid "Read incidents" -#~ msgstr "Číst incidenty" - -#~ msgid "Error creating export target" -#~ msgstr "Chyba při vytváření cíle exportu" - -#~ msgid "Report builder" -#~ msgstr "Stavitel hlášení" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulář plánované údržby" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "V systému je přítomna plánovaná údržba" - -#~ msgid "Network component" -#~ msgstr "Síťová komponenta" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "Při mazání výstrah nastala chyba, operace byla zrušena" - -#~ msgid "Module component management" -#~ msgstr "Správa součástí modulů" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Červená buňka když skupina modulu a agent mají alespoň jeden modul v " -#~ "kritickém stavu a ostatní v kterémkoliv stavu." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Žlutá buňka když skupina modulu a agent mají alespoň jeden modul ve stavu " -#~ "varování a ostatní v zeleném stavu." - -#~ msgid "General group report" -#~ msgstr "Obecné hlášení skupiny" - -#~ msgid "Agents detailed view" -#~ msgstr "Podrobné zobrazení agentů" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "Event not validate" -#~ msgstr "Událost neověřena" - -#~ msgid "Event validate" -#~ msgstr "Ověření události" - -#~ msgid "Successfully created export target" -#~ msgstr "Cíl exportu úspěšně vytvořen" - -#~ 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
P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Toto rozšíření usnadňuje registraci zásuvných modulů na serveru. Zde můžete " -#~ "moduly nahrát v zabaleném formátu Pandora FMS 3.x (.pspz). Pro získání " -#~ "modulů si prosím přečtěte dokumentaci.

Další moduly můžete získat v " -#~ "naší K" -#~ "nihovně veřejných zdrojů" - -#~ msgid "Alert report" -#~ msgstr "Hlášení výstrahy" - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Zelená buňka pokud skupina modulu a agent mají všechny moduly ve stavu OK." - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "Šedá buňka když skupina modulu a agent nemají žádné moduly." - -#~ msgid "Agent general information" -#~ msgstr "Obecné informace o agentovi" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Správce aktualizací je jedna z nejpokročilejších funkcí Pandora FMS 3.0 " -#~ "Edice pro podniky, pro další informace navštivte http://pandorafms.com." - -#~ msgid "Modules critical" -#~ msgstr "Moduly ve stavu kritické" - -#~ msgid "Go to alert overview" -#~ msgstr "Přejít na přehled výstrah" - -#~ msgid "Modules warning" -#~ msgstr "Moduly ve stavu varování" - -#~ msgid "Modules normal" -#~ msgstr "Moduly ve stavu normální" - -#~ msgid "Event not validated" -#~ msgstr "Událost neověřena" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Pandora FMS 3.0 obsahuje nového klienta Správce aktualizací. " -#~ "Pomáhá správcům automaticky aktualizovat jejich systém Pandora FMS, Správce " -#~ "aktualizací se stará o získávání nových modulů, nových zásuvných modulů a " -#~ "nových funkcí (i nástroje pro celkový přechod na budoucí verze)." - -#~ msgid "View users" -#~ msgstr "Zobrazit uživatele" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Zobrazení posledních datových modulů obdržených od agenta" - -#~ msgid "Agents down" -#~ msgstr "Agenti mimo provoz" - -#~ msgid "From the last" -#~ msgstr "Od posledního" - -#~ msgid "Configuration detail" -#~ msgstr "Podrobnosti nastavení" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Přetáhněte zde prvek pro jeho smazání z mapy" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Internetová konzole Pandora FMS" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Nový klient Správce " -#~ "aktualizací dodávaný v Pandora FMS 2.0 vydání pro podniky. Pomáhá " -#~ "správcům automaticky aktualizovat jejich instalace Pandora FMS, správce se " -#~ "stará o stažení nových modulů, nových zásuvných modulů a nových funkcí " -#~ "(včetně nástrojů zajišťující přechod na budoucí verze)." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Správce aktualizací je jedna z nejpokročilejších funkcí Pandora FMS 2.0 " -#~ "vydání pro podniky, pro další informace navštivte http://pandorafms.com." - -#~ msgid "Max.Timeout" -#~ msgstr "Max. časový limit" - -#~ msgid "Link successfully deleted" -#~ msgstr "Propojení úspěšně smazáno" - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Úkol sledování úspěšně smazán" - -#~ msgid "Link successfully created" -#~ msgstr "Propojení úspěšně vytvořeno" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profil úspěšně smazán" - -#~ msgid "Link successfully updated" -#~ msgstr "Propojení úspěšně aktualizováno" - -#~ msgid "Read Agent Information" -#~ msgstr "Přečíst informace o agentovi" - -#~ msgid "Manage Incidents" -#~ msgstr "Spravovat incidenty" - -#~ msgid "Create Incidents" -#~ msgstr "Vytvořit incidenty" - -#~ msgid "Read Incidents" -#~ msgstr "Přečíst incidenty" - -#~ msgid "Net. Templates" -#~ msgstr "Síťové šablony" - -#~ msgid "Upd" -#~ msgstr "Akt" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Vytvořit nový modul serveru předpovědí" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Vytvořit nový modul serveru WMI" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Vytvořit nový modul serveru zásuvných modulů" - -#~ msgid "NC.Group" -#~ msgstr "NC. skupina" - -#~ msgid "Database Audit purge" -#~ msgstr "Vyčištění kontroly databáze" - -#~ msgid "Monitor down" -#~ msgstr "Monitor není v provozu" - -#~ msgid "Monitor up" -#~ msgstr "Monitor je v provozu" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "Times Fired" -#~ msgstr "Kolikrát vysláno" - -#~ msgid "Search text" -#~ msgstr "Hledaný text" - -#~ msgid "Alert Overview" -#~ msgstr "Přehled výstrahy" - -#~ msgid "Alert trigger" -#~ msgstr "Spouštěč výstrahy" - -#~ msgid "Network Map" -#~ msgstr "Mapa sítě" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Samostatný ascii CSV soubor" - -#~ msgid "Database export results" -#~ msgstr "Výsledky exportu databáze" - -#~ msgid "End date (*)" -#~ msgstr "Konečné datum (*)" - -#~ msgid "Begin date (*)" -#~ msgstr "Počáteční datum (*)" - -#~ msgid "Alerts Fired" -#~ msgstr "Výstrahy vyslány" diff --git a/pandora_console/include/languages/de.mo b/pandora_console/include/languages/de.mo index 2668a0980b33a41dd5fa8344fed5c7d7e82e0040..d26a153c0d6e817e92d88ee8553866ecea03b5cb 100644 GIT binary patch delta 28053 zcmXZkcfgO;|M>B@`@WG)B&*!^-ZK<3BAW(<%(x@U%1CczL<414^3foYluF5{l$1m% zB9aQBv?ytPp3nC=zdyc@>zwPl&Ul^IIoBJ%K8p?&Ty?16y3d9smuE{Pj*Ux86iOr# z_m59Yl*1)>Ic~<1cnFK&c`SqZCZr`wVJ$3;9kDD9$6`1K3*&QG9yg)yA4Q-09WTS; z6VsB3JX|!In3l+nt*{=p$J{tMIuq@19$ta#umYaKTv%{YS|UG|z=~KU+7&ONd{?|b z1@lp!gO}jaNy#wt^;9_H_mF@jzKb452lhSM(3$8T(Zt_a>q3O~btO zpP0ji$@c_S#kDw)H8_B->6I*z4R^#$?19#gL6dVT+VC^_PP^d~gb zIi`kkA@qJ_w7wxGoq0k0$S9A#nPh96exa;0WxFPUvkc zh@YU5`vx88zvw^<&j=H(ID_QyfyPw$z;);nWT6ix(Y1RNFU6Oz4}O46u+se@QUlPC zPeOC&QLKqiq6685_3$fn*IYa^Em0inC%LfW&gcvWq8;56A6ST$DX&A9<^bBzX|%)A zv%*Q(5M8p~XnSMPBldwKSy)tIGVf{(Dt%D6z&(r0`C7xsS7?rXb0Dz4faK6a3^M95^Z=I zx+DwGwcLU(&DZDve#KNr4~H2SjaEeOH$-!!4Hk0$cjLm44@5&b6%FAMY>X?=fgC{_ z{t;cWwAo?bUxbzm#&S_~V3(t7-U935Em#pBMU(dpOnT;@<-!^Mi?uL)PFkWi)B@du`Ra2B{&C0d|q0j8s33*@Cmg3W3<2j=CS`B zz(w;zgT>I$)I{sE(35Tg`rQ=Gb8y)ZnbYj!ch(C~w zH|C%XK8vo|Td{luUCRsTOiC>b`??*PgtuZQ&WWx=cgrVe_MeR9f6$*^mn;go))*}( zdvf7+nuI3Z0(6a@LL;yq4gEGWdv~D`IfQ=KPoOh9jedl(Ee=1`a-mCE5pAz7I-pi) z=x@YY?*D#Vn3Z$U1~#DEZ!5YTKSgJBGS+8X5@ucmeeOzh;9b%8`=Dz*82vH32yewV z(T>YL76w)g^Sb{Vap9V@MrV30+R%0AOnajP7=q3ui6-S-bjhBI^_$U1e2ljD9s1lU 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\n" +"PO-Revision-Date: 2015-06-29 18:37+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: de \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:56+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: \n" -#: ../../godmode/agentes/agent_manager.php:310 -#: ../../godmode/agentes/agent_manager.php:332 -#: ../../godmode/massive/massive_edit_agents.php:335 -msgid "Not available" -msgstr "Nicht verfügbar" - -#: ../../godmode/modules/manage_network_templates_form.php:70 -msgid "Successfully added module to profile" -msgstr "Das Modul wurde erfolgreich zum Profil hinzugefügt" - -#: ../../godmode/modules/manage_network_templates_form.php:110 -msgid "Successfully added network profile" -msgstr "Das Netzwerkprofil wurde erfolgreich hinzugefügt" - -#: ../../godmode/users/configure_user.php:454 -#: ../../operation/users/user_edit.php:235 -msgid "Password confirmation" -msgstr "Passwort bestätigung" - #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 msgid "There was a problem loading group" @@ -2497,7 +2478,7 @@ msgstr "Treffer suchen" #: ../../godmode/agentes/module_manager_editor_network.php:30 #: ../../extensions/realtime_graphs.php:120 msgid "Use this OID" -msgstr "Diese Objektkennung verwenden" +msgstr "Verwenden Sie dies Objekt-ID" #: ../../godmode/agentes/module_manager_editor_network.php:58 msgid "Network server module" @@ -3255,6 +3236,12 @@ msgstr "Manuelle Definition" msgid "Active" msgstr "Aktiv" +#: ../../godmode/agentes/agent_manager.php:310 +#: ../../godmode/agentes/agent_manager.php:332 +#: ../../godmode/massive/massive_edit_agents.php:335 +msgid "Not available" +msgstr "Nicht verfügbar" + #: ../../godmode/agentes/agent_manager.php:323 msgid "Delete remote configuration file" msgstr "Remote-Konfigurationsdatei löschen" @@ -4560,7 +4547,7 @@ msgstr "Nur Alarmereignisse" #: ../../include/functions_events.php:33 #: ../../include/functions_events.php:1575 msgid "Event id" -msgstr "Ereignisskennung" +msgstr "Ereigniss-ID" #: ../../godmode/events/custom_events.php:71 #: ../../godmode/events/custom_events.php:151 @@ -6243,7 +6230,7 @@ msgstr "" #: ../../godmode/setup/os.builder.php:33 #: ../../godmode/reporting/visual_console_builder.data.php:98 msgid "Name:" -msgstr "Name" +msgstr "Name:" #: ../../godmode/setup/setup_netflow.php:41 #: ../../include/functions_config.php:564 @@ -6520,7 +6507,7 @@ msgstr "Es gibt keine Links." #: ../../godmode/setup/setup_auth.php:37 #: ../../include/functions_config.php:263 msgid "Authentication method" -msgstr "Authentifizierungsmethode" +msgstr "Legitimierungsmethode" #: ../../godmode/setup/setup_auth.php:38 msgid "Local Pandora FMS" @@ -6546,7 +6533,7 @@ msgstr "" #: ../../godmode/setup/setup_auth.php:48 #: ../../include/functions_config.php:265 msgid "Autocreate remote users" -msgstr "Remote-benutzer automatisch anlegen" +msgstr "Automatische Erstellung entfernter Benutzer" #: ../../godmode/setup/setup_auth.php:52 #: ../../include/functions_config.php:267 @@ -8258,6 +8245,10 @@ msgstr "Modul erfolgreich vom Profil gelöscht" msgid "Error deleting module from profile" msgstr "Fehler beim löschen des Modules vom Profil" +#: ../../godmode/modules/manage_network_templates_form.php:70 +msgid "Successfully added module to profile" +msgstr "Das Modul wurde erfolgreich zum Profil hinzugefügt" + #: ../../godmode/modules/manage_network_templates_form.php:71 msgid "Error adding module to profile" msgstr "Fehler beim hinzufügen des Modules zum Profil" @@ -8270,6 +8261,10 @@ msgstr "Das Netzwerkprofil wurde erfolgreich erneuert" msgid "Error updating network profile" msgstr "Fehler beim aktualisieren des Netzwerk-Profiles" +#: ../../godmode/modules/manage_network_templates_form.php:110 +msgid "Successfully added network profile" +msgstr "Das Netzwerkprofil wurde erfolgreich hinzugefügt" + #: ../../godmode/modules/manage_network_templates_form.php:111 msgid "Error adding network profile" msgstr "Fehler bei dem Hinzufügen eines Netzwerkprofils" @@ -8636,6 +8631,11 @@ msgstr "Kompletter (Anzeige-)name" msgid "Language" msgstr "Sprache" +#: ../../godmode/users/configure_user.php:454 +#: ../../operation/users/user_edit.php:235 +msgid "Password confirmation" +msgstr "Passwort bestätigung" + #: ../../godmode/users/configure_user.php:461 msgid "Global Profile" msgstr "Globale Profile" @@ -14517,7 +14517,7 @@ msgstr "Zeige %s von %s. Zeige alle Übereinstimmungen." #: ../../extras/pandora_diag.php:90 msgid "Pandora FMS Diagnostic tool" -msgstr "Pandora FMS Diagnose-Werkzeug" +msgstr "Pandora-FMS-Diagnosewerkzeug" #: ../../extras/pandora_diag.php:93 msgid "Item" @@ -14779,7 +14779,7 @@ msgstr "Letzte Aktualisierung" #: ../../mobile/operation/modules.php:689 #, php-format msgid "Module group: %s" -msgstr "Modulgruppe : %s" +msgstr "Modulgruppe: %s" #: ../../mobile/operation/modules.php:702 #, php-format @@ -20923,5391 +20923,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "Datei scheint nicht mehr vorhanden zu sein. Kontaktieren Sie den " "Administrator." - -#~ msgid "NC.Group" -#~ msgstr "NC.Gruppe" - -#~ msgid "Module component management" -#~ msgstr "Verwaltung von Netwerkkomponenten" - -#~ msgid "Module Interval" -#~ msgstr "Modulinterval" - -#~ msgid "TCP port" -#~ msgstr "TCP port" - -#~ msgid "Minimum Data" -#~ msgstr "Minimaler Wert" - -#~ msgid "Maximum Data" -#~ msgstr "Maximaler Wert" - -#~ msgid "Map builder" -#~ msgstr "Kartenerzeuger" - -#~ msgid "Label color" -#~ msgstr "Beschriftungsfarbe" - -#~ msgid "Graph builder module list" -#~ msgstr "Modulliste der Grapherzeuger" - -#~ msgid "Combined image render" -#~ msgstr "Kombinierter Abbildungsrender" - -#~ msgid "Factor" -#~ msgstr "Faktor" - -#~ msgid "Render now" -#~ msgstr "Rendere nun" - -#~ msgid "Redraw" -#~ msgstr "Neu zeichnen" - -#~ msgid "Custom graph store" -#~ msgstr "Ort für Ihre Graphen" - -#~ msgid "Store" -#~ msgstr "Ort" - -#~ msgid "Reporting successfully created" -#~ msgstr "Bericht erzeugt" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Bei der Berichtsbildung gab es ein Problem" - -#~ msgid "Custom reporting builder" -#~ msgstr "Berichtserzeuger" - -#~ msgid "Add item to report" -#~ msgstr "Füge Element dem Bericht hinzu" - -#~ msgid "Reporting type" -#~ msgstr "Berichtstyp" - -#~ msgid "Custom graph name" -#~ msgstr "Anwendungsspezif. Graphenname" - -#~ msgid "Up" -#~ msgstr "Nach oben" - -#~ msgid "User successfully deleted" -#~ msgstr "Nutzer wurde gel¨scht" - -#~ msgid "Database Maintenance" -#~ msgstr "Wartung der Datenbasis" - -#~ msgid "Total data" -#~ msgstr "Summe der Daten" - -#~ msgid "Event Database cleanup" -#~ msgstr "Bereinigung der Ereignisdatenbasis" - -#~ msgid "Database Audit purge" -#~ msgstr "Lösche Protokolldaten aus der Databasis" - -#~ msgid "Data from agent " -#~ msgstr "Daten vom Agenten " - -#~ msgid "Pandora Setup" -#~ msgstr "Grundkonfiguration" - -#~ msgid "General configuration" -#~ msgstr "Allgemeine Konfiguration" - -#~ msgid "Link successfully created" -#~ msgstr "Link wurde kreiert" - -#~ msgid "Link successfully updated" -#~ msgstr "Link wurde aktualisiert" - -#~ msgid "Manage modules" -#~ msgstr "Verwalte Module" - -#~ msgid "Report builder" -#~ msgstr "Berichtserzeuger" - -#~ msgid "Manage profiles" -#~ msgstr "Verwalte Profile" - -#~ msgid "DB Maintenance" -#~ msgstr "Wartung der Datenbank" - -#~ msgid "DB Information" -#~ msgstr "DB Information" - -#~ msgid "Modules successfully added " -#~ msgstr "Module hinzugefügt " - -#~ msgid "Available templates" -#~ msgstr "Verfügbare Schablonen" - -#~ msgid "Assigned modules" -#~ msgstr "Zugewiesene Module" - -#~ msgid "Net. Templates" -#~ msgstr "Netzschablone" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alarm wurde gelöscht" - -#~ msgid "Alert successfully created" -#~ msgstr "Alarm wurde kreiert" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Der Agent konnte nicht verändert werden" - -#~ msgid "There was a problem updating module" -#~ msgstr "Das Modul konnte nicht verändert werden" - -#~ msgid "There was a problem adding module" -#~ msgstr "Das Modul konnte nicht hinzugefügt werden" - -#~ msgid "Alert type" -#~ msgstr "Alarmtyp" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Feld #1 (Alias, Name)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Feld #2 (Einzelne Zeile)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Feld #3 (Ausführlicher Text)" - -#~ msgid "Data Copy" -#~ msgstr "Datenkopie" - -#~ msgid "Configuration Management" -#~ msgstr "Konfigurationsmanagment" - -#~ msgid "To Agent(s):" -#~ msgstr "Zu dem/den Agent(en):" - -#~ msgid "Update agent" -#~ msgstr "Aktualisiere Agenten" - -#~ msgid "Network Server" -#~ msgstr "Netzwerk Server" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Dieser Agent besitzt kein Modul" - -#~ msgid "Group management" -#~ msgstr "Verwaltung der Gruppen" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profil wurde gelöscht" - -#~ msgid "Profile successfully created" -#~ msgstr "Profil wurde kreiert" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profile wurde aktualisiert" - -#~ msgid "Manage Database" -#~ msgstr "Databasisverwaltung" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alarm wurde aktualisiert" - -#~ msgid "Network profile" -#~ msgstr "Netzwerkprofil" - -#~ msgid "Recon Server" -#~ msgstr "'Recon' Server" - -#~ msgid "day" -#~ msgstr "Tag" - -#~ msgid "week" -#~ msgstr "Woche" - -#~ msgid "month" -#~ msgstr "Monat" - -#~ msgid "Master" -#~ msgstr "Master" - -#~ msgid "Data Server" -#~ msgstr "Daten Server" - -#~ msgid "MD5 Check" -#~ msgstr "MD5 Prüfung" - -#~ msgid "Event report" -#~ msgstr "Ereignisbericht" - -#~ msgid "Alert report" -#~ msgstr "Alarmbericht" - -#~ msgid "Pandora users" -#~ msgstr "Pandoranutzer" - -#~ msgid "User activity statistics" -#~ msgstr "Statistik der Nutzeraktivitäten" - -#~ msgid "Event graph by group" -#~ msgstr "Ereignisgraph pro Gruppe" - -#~ msgid "Validated event" -#~ msgstr "Bestätigtes Ereignis" - -#~ msgid "View users" -#~ msgstr "Nutzer" - -#~ msgid "Pandora Agents" -#~ msgstr "Agenten von Pandora" - -#~ msgid "Agent general information" -#~ msgstr "Allgemeine Informationen des Agenten" - -#~ msgid "Thurdsday" -#~ msgstr "Donnerstag" - -#~ msgid "Hr" -#~ msgstr "Std" - -#~ msgid "Database export results" -#~ msgstr "Ergebnisse des Exports der Datenbasis" - -#~ msgid " from " -#~ msgstr " von " - -#~ msgid " to " -#~ msgstr " nach " - -#~ msgid "No module has been selected" -#~ msgstr "Kein Modul selektiert" - -#~ msgid "Begin date (*)" -#~ msgstr "Beginndatum (*)" - -#~ msgid "End date (*)" -#~ msgstr "Endedatum (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "CSV Format" - -#~ msgid "Full list of Monitors" -#~ msgstr "Überwachungssysteme" - -#~ msgid "Load" -#~ msgstr "Lade" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Wechsel zwischen grünem und rotem Zustand" - -#~ msgid "At least one monitor fails" -#~ msgstr "Mindestens ein Überwachungssystem schlug fehl" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent ohne Überwachungssysteme" - -#~ msgid "Agent down" -#~ msgstr "Agent ist nicht fehlerfrei" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Zeige die letzten Moduldaten, die vom Agenten empfangen wurden" - -#~ msgid "int" -#~ msgstr "Itv." - -#~ msgid "Raw Data" -#~ msgstr "Ungefilterte Daten" - -#~ msgid "Times Fired" -#~ msgstr "Zeiten der Alarme" - -#~ msgid "Configuration detail" -#~ msgstr "Konfigurationsdetails" - -#~ msgid "General information" -#~ msgstr "Allgemeine Information" - -#~ msgid "Authentication Error" -#~ msgstr "Authentisierungsfehler" - -#~ msgid "Logged Out" -#~ msgstr "Angemeldet" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Dies ist das Verwaltungssystem für Pandora über eine Web-Oberfläche. Über " -#~ "diese kann man Agenten, Warnungen und Vorfälle administrieren und " -#~ "betrachten. Die Verbindung bleibt so lange bestehen, wie Aktivitäten des " -#~ "Nutzers registriert werden." - -#~ msgid "You don't have access" -#~ msgstr "Sie haben keinen Zugriff" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "" -#~ "Ihre Berechtigung reicht nicht aus, um auf dieses Betriebsmittel zuzugreifen" - -#~ msgid "Software agent data" -#~ msgstr "Daten des Softwareagenten" - -#~ msgid "Software agent monitor" -#~ msgstr "Überwachung des Softwareagenten" - -#~ msgid "Network agent data" -#~ msgstr "Daten des Netwerkagenten" - -#~ msgid "Network agent monitor" -#~ msgstr "Überwachung des Netwerkagenten" - -#~ msgid "Group name" -#~ msgstr "Gruppe" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Es wurde ein Problem beim Laden eines Alarms entdeckt" - -#~ msgid "Seconds" -#~ msgstr "Sekunden" - -#~ msgid "Older" -#~ msgstr "Ältere" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Pandora FMS Hilfe" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Pandora FMS Webinterface" - -#~ msgid "Alerts defined" -#~ msgstr "Alarme definiert" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Keygen File existriert nicht." - -#~ msgid "You are" -#~ msgstr "Sie sind" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Keygen File kann nicht ausgeführt werden." - -#~ msgid "Your system is up-to-date" -#~ msgstr "Ihr System ist auf dem aktuellen Stand" - -#~ msgid "Server authorization rejected" -#~ msgstr "Serververbindung nicht zugelassen." - -#~ msgid "Server connection failed" -#~ msgstr "Serververbindung fehlgeschlagen" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Keine neuen Pandora FMS Updates vorhaden." - -#~ msgid "Your system version number is" -#~ msgstr "Versionssnummer des Systems" - -#~ msgid "Overwrite local changes" -#~ msgstr "lokale Einstellungen überschreiben" - -#~ msgid "Update manager settings updated" -#~ msgstr "Einstellungen des Update Managers geändert" - -#~ msgid "Settings" -#~ msgstr "Einstellungen" - -#~ msgid "Keygen path" -#~ msgstr "Keygen Pfad" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Neues Update für Pandora FMS" - -#~ msgid "Development" -#~ msgstr "Entwicklung" - -#~ msgid "Testing" -#~ msgstr "Test" - -#~ msgid "Update manager settings" -#~ msgstr "Update Manager - Einstellungen" - -#~ msgid "More info" -#~ msgstr "weitere Informationen" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Um ein Element zu löschen, hier her ziehen." - -#~ msgid "preview" -#~ msgstr "Vorschau" - -#~ msgid "Last Month" -#~ msgstr "Letzten Monat" - -#~ msgid "Two Months" -#~ msgstr "Zwei Monate" - -#~ msgid "Six Months" -#~ msgstr "Sechs Monate" - -#~ msgid "4 days" -#~ msgstr "4 Tage" - -#~ msgid "3 hours" -#~ msgstr "3 Stunden" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Beim erstellen der SLA sind Probleme aufgetreten" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA wurden erstellt" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Beim löschen der SLA sind Probleme aufgetreten" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA wurde gelöscht" - -#~ msgid "SLA report construction" -#~ msgstr "SLA Berichtsgenerator" - -#~ msgid "Error updating export target" -#~ msgstr "Exportziel konnte nicht erstellt werden" - -#~ msgid "Successfully updated export target" -#~ msgstr "Exportziel erfolgreich erstellt" - -#~ msgid "Module is not set" -#~ msgstr "Modul wurde nicht ausgewählt" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Exportziel erfolgreich gelöscht" - -#~ msgid "Error creating export target" -#~ msgstr "Fehler bei der Exportzielerstellung" - -#~ msgid "Successfully created export target" -#~ msgstr "Exportziel wurde erstellt" - -#~ msgid "export targets" -#~ msgstr "Exportziele" - -#~ msgid "Error deleting export target" -#~ msgstr "Exportziel konnte nicht gelöscht werden" - -#~ msgid "There are no export targets configured" -#~ msgstr "kein Exportziel ausgewählt" - -#~ msgid "hour" -#~ msgstr "Stunde" - -#~ msgid "Extra options" -#~ msgstr "Zusätzliche Optionen" - -#~ msgid "Target directory" -#~ msgstr "Zielverzeichnis" - -#~ msgid "Max.Timeout" -#~ msgstr "max. Verzögerung" - -#~ msgid "User option" -#~ msgstr "Benutzer Optionen" - -#~ msgid "Password option" -#~ msgstr "Passwort Optionen" - -#~ msgid "Duplicate config" -#~ msgstr "doppelte Konfiguration" - -#~ msgid "Port option" -#~ msgstr "Port Optionen" - -#~ msgid "Export targets" -#~ msgstr "keine Exportziele" - -#~ msgid "Manage plugins" -#~ msgstr "Plugins verwalten" - -#~ msgid "Alert trigger" -#~ msgstr "Alarmauslöser" - -#~ msgid "Alert Overview" -#~ msgstr "Alarmübersicht" - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA Periode (in Sekunden)" - -#~ msgid "Automatic update check" -#~ msgstr "automatischer Updatecheck" - -#~ msgid "Manage Incidents" -#~ msgstr "Störfälle bearbeiten" - -#~ msgid "Create Incidents" -#~ msgstr "Störfall erstellen" - -#~ msgid "Link successfully deleted" -#~ msgstr "Link wurde gelöscht" - -#~ msgid "Manage Agents" -#~ msgstr "Agenten managen" - -#~ msgid "Manage User Rights" -#~ msgstr "Benutzerrechte" - -#~ msgid "Pandora System Management" -#~ msgstr "Pandora System Management" - -#~ msgid "Database Management" -#~ msgstr "Datenbank managen" - -#~ msgid "Alerts Management" -#~ msgstr "Alarme managen" - -#~ msgid "Edit Alerts" -#~ msgstr "Agenten bearbeiten" - -#~ msgid "Module deleted successfully" -#~ msgstr "Modul wurde gelöscht" - -#~ msgid "WMI Query" -#~ msgstr "WMI Abfrage" - -#~ msgid "Del" -#~ msgstr "löschen" - -#~ msgid "Available Agents" -#~ msgstr "verfügare Agenten" - -#~ msgid "Plugin parameters" -#~ msgstr "Plugin Parameter" - -#~ msgid "No news articles at this moment" -#~ msgstr "Keine neuen Nachrichten" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Der Updatemanager ist ein sehr interessantes Feature von Pandora FMS 2.0. " -#~ "Weitere Informationen unter: http://pandorafms.com." - -#~ msgid "Update server port" -#~ msgstr "Port des Updateservers" - -#~ msgid "Id" -#~ msgstr "ID" - -#~ msgid "Update server path" -#~ msgstr "Pfad des Updateservers" - -#~ msgid "Update layout successful" -#~ msgstr "Das Layput wurde erfolgreich geändert." - -#~ msgid "Update layout failed" -#~ msgstr "Das Layout konnte nich aktualisiert werden." - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Recon Task wurde gelöscht." - -#~ msgid "Transfer mode" -#~ msgstr "Übertragungs Modus" - -#~ msgid "Binary input path" -#~ msgstr "Eingangspfad der Binärdateien" - -#~ msgid "Code / binary directory" -#~ msgstr "Code / Verzeichnis der Binärdateien" - -#~ msgid "IP address option" -#~ msgstr "Optionen der IP Adressen" - -#~ msgid "Transfer Mode" -#~ msgstr "Transfermodus" - -#~ msgid "SLAs defined" -#~ msgstr "SLAs definiert" - -#~ msgid "Add Modules" -#~ msgstr "Module Hinzufügen" - -#~ msgid "Your IP" -#~ msgstr "Ihre IP Adresse" - -#~ msgid "Modules critical" -#~ msgstr "Module kritisch" - -#~ msgid "Modules normal" -#~ msgstr "Module normal" - -#~ msgid "Modules warning" -#~ msgstr "Warnungen der Module" - -#~ msgid "minute" -#~ msgstr "Minute" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Ziehen sie ein Element hier her um dessen eigenschaften zu ändern" - -#~ msgid "Last name" -#~ msgstr "Nachname" - -#~ msgid "First name" -#~ msgstr "Vorname" - -#~ msgid "Data older than" -#~ msgstr "Daten älter als" - -#~ msgid "Preffix" -#~ msgstr "Präfix" - -#~ msgid "Error adding module" -#~ msgstr "Fehler beim Hinzufügen des Moduls" - -#~ msgid "Visual map wizard" -#~ msgstr "Visueller Kartenassistent" - -#~ msgid "Image size (px)" -#~ msgstr "Bildgröße (px)" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d Tag" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d Stunden" - -#~ msgid "MD5 check" -#~ msgstr "MD5 Prüfung" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d Woche" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d Tage" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d Wochen" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d Monat" - -#~ msgid "Correlation" -#~ msgstr "Korrelation" - -#~ msgid "Custom Value" -#~ msgstr "Benutzerdefinierter Wert" - -#~ msgid "Deleting file" -#~ msgstr "Lösche Datei" - -#~ msgid "Deleting" -#~ msgstr "Lösche" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Erstelltes Verzeichnis %s" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Das derzeitige Verzeichnis ist nicht vom HTTP Server beschreibbar" - -#~ msgid "Upload file" -#~ msgstr "Datei hochladen" - -#~ msgid "Pandora system management" -#~ msgstr "Pandora Systemmanagment" - -#~ msgid "Manage user rights" -#~ msgstr "Benutzerrechte managen" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Erstellen einer Kopoie der Konfigurationsdatei für" - -#~ msgid "Edit modules" -#~ msgstr "Module bearbeiten" - -#~ msgid "Delete modules" -#~ msgstr "Module löschen" - -#~ msgid "Delete alerts" -#~ msgstr "Warnungen löschen" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "Es trat ein Fehler beim Löschen des Clients auf, der Vorgang wurde " -#~ "abgebrochen" - -#~ msgid "Could not delete agent" -#~ msgstr "Kann den Client nicht löschen" - -#~ msgid "Could not delete alerts" -#~ msgstr "Konnte die Warnungen nicht löschen" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Es trat ein Fehler beim Löschen der Warnung auf, der Vorgang wurde " -#~ "abgebrochen" - -#~ msgid "Configuration management" -#~ msgstr "Konfigurationsmanagment" - -#~ msgid "Could not delete modules" -#~ msgstr "Konnte die Module nicht löschen" - -#~ msgid "Module assignment" -#~ msgstr "Modul Zuordnung" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Plugin component" -#~ msgstr "Plugin Komponente" - -#~ msgid "N/A\t" -#~ msgstr "Nicht verfügbar\t" - -#~ msgid "Network component" -#~ msgstr "Netzwerkkomponente" - -#~ msgid "No layout with this id found" -#~ msgstr "Keine Vorlagen mit dieser ID gefunden" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "BItte überprüfen Sie, dass das aktuelle Verzeichnis Schreibrechte für den " -#~ "HTTP Server besitzt." - -#~ msgid "Press here to get database information as text" -#~ msgstr "Drücken Sie hier um die Datenbank Informationen als Text zu erhalten" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Dieser Benutzer hat die Berechtigungen alles zu verwalten. Er ist ein " -#~ "Adminstrator und überschreibt alle Berechtigungen in den Profilen/Gruppen" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Drücken Sie hier um die Datenbankinformationen als Graph zu erhalten" - -#~ msgid "Field 2" -#~ msgstr "Feld 2" - -#~ msgid "Field 1" -#~ msgstr "Feld 1" - -#~ msgid "Field 3" -#~ msgstr "Feld 3" - -#~ msgid "Add condition" -#~ msgstr "Bedingung hinzufügen" - -#~ msgid "Operator" -#~ msgstr "Operator" - -#~ msgid "Assigned to" -#~ msgstr "Zugewiesen zu" - -#~ msgid "No agent was given" -#~ msgstr "Es wurde kein Client angegeben" - -#~ msgid "No name was given" -#~ msgstr "Es wurde kein Name angegeben" - -#~ msgid "No conditions were given" -#~ msgstr "Es wurden keine Bedingungen angegeben" - -#~ msgid "Wrong module type" -#~ msgstr "Falscher Modultyp" - -#~ msgid "Desc" -#~ msgstr "absteigend" - -#~ msgid "SNMP server" -#~ msgstr "SNMP-Server" - -#~ msgid "Last hour" -#~ msgstr "Letzte Stunde" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Letzten %s Tage" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "laufende Module auf diesem Server / Anzahl Module dieses Typs" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Pandora FMS Sanity tool wird verwendet zur Entfernung mangelhafter " -#~ "Datenbankstruktur-Daten, erstellter Module mit fehlendem Status, oder nicht " -#~ "initialisierbare Module (und keine gültigen Daten zurückgeben). Diese Sorte " -#~ "mangelhafter Module können die Leistung von Pandora FMS verringern. Dieses " -#~ "Werkzeug ist auch in der pandora_db.pl enthalten, das Sie jeden Tag " -#~ "oder Woche starten sollten. Die Datenbank wird dabei NICHT komprimiert, nur " -#~ "die Datenbankstruktur wird korrigiert." - -#~ msgid "Search value" -#~ msgstr "Suchbegriff" - -#~ msgid "Read message" -#~ msgstr "Nachricht lesen" - -#~ msgid "-Select group-" -#~ msgstr "-Gruppe auswählen-" - -#~ msgid "Flag" -#~ msgstr "Kennzeichnung" - -#~ msgid "Uninitialized modules" -#~ msgstr "uniinitialisierte Module" - -#~ msgid "Alerts disabled" -#~ msgstr "Alarmierung deaktiviert" - -#~ msgid "SLA view" -#~ msgstr "SLA Ansicht" - -#~ msgid "No simple alerts found" -#~ msgstr "keine Einzel-Alarme gefunden" - -#~ msgid "Single alerts" -#~ msgstr "Einzel-Alarme" - -#~ msgid "secs." -#~ msgstr "Sek." - -#~ msgid "Report name is empty" -#~ msgstr "Berichtsname ist leer" - -#~ msgid "No items defined" -#~ msgstr "Keine Elemente definiert" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "CSS und JS in die Kopfzeilen packen" - -#~ msgid "Sanitize my database now" -#~ msgstr "bereinige meine Datenbank jetzt" - -#~ msgid "Checking database consistency" -#~ msgstr "Überprüfe Datenbank-Konsistenz" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Lösche nicht-initialisierte Module jetzt" - -#~ msgid "Database sanity tool" -#~ msgstr "Datenbank Bereinigungs Tool" - -#~ msgid "Deleting non-init data" -#~ msgstr "Lösche nicht-initialisierte Daten" - -#~ msgid "Graphs management" -#~ msgstr "Graphenverwaltung" - -#~ msgid "Flash charts" -#~ msgstr "Flashtabellen" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert über ist" - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert nicht ist" - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert zwischen und " -#~ " liegt" - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert nicht " -#~ "entspricht" - -#~ msgid "The alert would fire when the value is " -#~ msgstr "Warnung tritt auf, wenn der Wert ist" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert entspricht" - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert nicht zwischen " -#~ "und liegt" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "Warnung tritt auf, wenn der Wert unter ist" - -#~ msgid "E/D" -#~ msgstr "An/Aus" - -#~ msgid "Only pending" -#~ msgstr "Nur ausstehende" - -#~ msgid "Monitors critical" -#~ msgstr "Monitore kritisch" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitore unbekannt" - -#~ msgid "Monitors normal" -#~ msgstr "Monitore normal" - -#~ msgid "Monitors warning" -#~ msgstr "Monitore warnung" - -#~ msgid "Users defined" -#~ msgstr "Benutzerdefiniert" - -#~ msgid "Autorefresh" -#~ msgstr "Aktualisieren" - -#~ msgid "Global health" -#~ msgstr "Allgemeiner Status" - -#~ msgid "Remote modules rate" -#~ msgstr "Entfernte Modul-Rate" - -#~ msgid "Local modules rate" -#~ msgstr "Lokale Modul-Rate" - -#~ msgid "Monitors not init" -#~ msgstr "Monitore nicht inizialisiert" - -#~ msgid "Go to alert overview" -#~ msgstr "Alarm-Übersicht" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Bitte mindestens 2 Zeichen eingeben um zu suchen" - -#~ msgid " seconds." -#~ msgstr " Sekunden." - -#~ msgid "Delete agents" -#~ msgstr "Lösche Agent" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "None agent in this category" -#~ msgstr "Keine Agenten in dieser Kategorie" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "Group detailed event" -#~ msgstr "Detailiertes Gruppen Ereignis" - -#~ msgid "Sumatory" -#~ msgstr "Sumatory" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Dieser Server hat keine rekonst. Aufgaben" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Maximale Modul-Verzögerung (Sekunden)" - -#~ msgid "Create incident from event" -#~ msgstr "Zwischenfall für Ereignis erstellen" - -#~ msgid "-Select user-" -#~ msgstr "- Wähle Benutzer -" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Dieser Agent hat keine aktiven Monitore" - -#~ msgid "Module Down" -#~ msgstr "Module offline" - -#~ msgid "Module Up" -#~ msgstr "Module online" - -#~ msgid "Invalid method supplied" -#~ msgstr "Falsche Methode gewählt" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Keine Module die S.L.A. Daten auswerten" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatische S.L.A. für Monitore" - -#~ msgid "Events generated -by module-" -#~ msgstr "Ereignis erstellet - nach Modul -" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Keine Server in der Datenbank definiert" - -#~ msgid "User-defined SLA items" -#~ msgstr "Benutzerdef. S.L.A. - Einträge" - -#~ msgid "Compound alerts" -#~ msgstr "Compound Alarme" - -#~ msgid "From the last" -#~ msgstr "Aus den letzten" - -#~ msgid "WMI component management" -#~ msgstr "WMI Komponenten Manager" - -#~ msgid "Visual configuration" -#~ msgstr "Visuale Konfiguration" - -#~ msgid "Image range (px)" -#~ msgstr "Bild-Bereich (px)" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Geplante nicht Erreichbarkeit von" - -#~ msgid "Timestamp to" -#~ msgstr "Timestamp bis" - -#~ msgid "Timestamp from" -#~ msgstr "Timestamp von" - -#~ msgid "Remote configuration management" -#~ msgstr "Remote-Konfiguration Manager" - -#~ msgid "Manage SNMP console" -#~ msgstr "SNMP Konsole Manager" - -#~ msgid "Deleting records for module" -#~ msgstr "Lösche Aufzeichnungen für Modul" - -#~ msgid "The colours meaning:" -#~ msgstr "Diese Farben bedeuten:" - -#~ msgid "Modules groups" -#~ msgstr "Modul-Gruppen" - -#~ msgid "ALERTS FIRED" -#~ msgstr "ALARME FEUER" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Der neue Update Manager " -#~ "Client wird mit Pandora FMS 3.0 ausgeliefert. Er hilft System " -#~ "Administratoren dabei Pandora FMS eingesntämdig zu updaten. Der Update " -#~ "Manager lädt automatisch neue Module, neue Plugins und neue Funktionen " -#~ "herunter." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Der Update Manager ist nur eines von vielen Features welches Sie in der " -#~ "Enterprise Version erhalten. Für weitere Informationen besuchen Sie http://pandorafms.com" - -#~ msgid "Update server host" -#~ msgstr "Aktualisisere Server-Host" - -#~ msgid "Agents in group" -#~ msgstr "Agenten in Gruppe" - -#~ msgid "Module detailed event" -#~ msgstr "Modul detailiertes Event" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "No layouts found" -#~ msgstr "Keine Layouts gefunden" - -#~ msgid "Replicate configuration" -#~ msgstr "Konfiguration kopieren" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "Unmanaged error" -#~ msgstr "Unbehandelbarer Fehler." - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "User defined graph" -#~ msgstr "Benutzerdefinierte Grafik" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Export-Ziel erfolgreich gelöscht" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "Liste der IP-Adressen. Eine IP pro Zeile." - -#~ msgid "Assigned actions" -#~ msgstr "Zugewiesene Aktionen" - -#~ msgid "Configure correlated alert" -#~ msgstr "Zugehörige Warnung konfigurieren" - -#~ msgid "Correlated alerts" -#~ msgstr "Zugehörige Warnungen" - -#~ msgid "Decrease Weight" -#~ msgstr "Gewichtung reduzieren" - -#~ msgid "Increase Weight" -#~ msgstr "Gewichtung erhöhen" - -#~ msgid "or" -#~ msgstr "oder" - -#~ msgid "Illegal query" -#~ msgstr "Ungültige Anfrage" - -#~ msgid "Config" -#~ msgstr "Einstellungen" - -#~ msgid "Database Information" -#~ msgstr "Datenbank Information" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d Stunde" - -#~ msgid "Download file" -#~ msgstr "Datei herunterladen" - -#~ msgid "Module macros" -#~ msgstr "Makro-Modul" - -#~ msgid "Standard user" -#~ msgstr "Standardbenutzer" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Suche mithilfe der Felder Beschreibung, OID, benutzerdefinerter Wert, SNMP-" -#~ "Beauftragter, einzelner Wert, jede benutzerdefinierte OID / Daten." - -#~ msgid "Map element editor" -#~ msgstr "Kartenelemente-Editor" - -#~ msgid "Read Incidents" -#~ msgstr "Vorfälle lesen" - -#~ msgid "Map element trash" -#~ msgstr "Kartenelemente-Papierkorb" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Der neue Update " -#~ "ManagerKlient wird mit Pandora FMS 2.0 ausgeliefert. Er hilft " -#~ "Systemadministratoren, ihr Pandora FMS automatisch zu aktualisieren, da der " -#~ "Update Manager neue Module, neue Plugins und neue Eigenschaften automatisch " -#~ "herunterlädt." - -#~ msgid "Read Agent Information" -#~ msgstr "Beauftragten-Information lesen" - -#~ msgid "Upd" -#~ msgstr "UPD" - -#~ msgid "Source group" -#~ msgstr "Quellgruppe" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Geplante Auszeit auf System" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Status initialisierung nicht erfolgreich" - -#~ msgid "WMI Server" -#~ msgstr "WMI-Server" - -#~ msgid "Plugin Server" -#~ msgstr "Plugin-Server" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Erzeuge ein neues WMI-Server-Modul" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Erzeuge ein neues Pluginserver-Modul" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Erzeuge ein neues Prognose-Servermodul" - -#~ msgid "Prediction Server" -#~ msgstr "Prognose-Server" - -#~ msgid "General group report" -#~ msgstr "Allgemeiner Gruppenbericht" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Bereits gestarteten Auftrag für Beauftragten säubern" - -#~ msgid "Monitor down" -#~ msgstr "Monitor runter" - -#~ msgid "Monitor up" -#~ msgstr "Monitor hoch" - -#~ msgid "Agents detailed view" -#~ msgstr "Detaillierte Beauftragten-Ansicht" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "Search text" -#~ msgstr "Text-Suche" - -#~ msgid "Network Map" -#~ msgstr "Netzwerk-Karte" - -#~ msgid "Agents down" -#~ msgstr "Beauftragte deaktiviert." - -#~ msgid "Free text" -#~ msgstr "Freitext" - -#~ msgid "from" -#~ msgstr "von" - -#~ msgid "Total Agents" -#~ msgstr "Beauftragte insgesamt" - -#~ msgid "System Events" -#~ msgstr "System-Ereignis" - -#~ msgid "Alerts Fired" -#~ msgstr "Aktivierte Alarme" - -#~ msgid "Read agent information" -#~ msgstr "Beauftragten-Information lesen" - -#~ msgid "Create incidents" -#~ msgstr "Vorfälle anlegen" - -#~ msgid "Read incidents" -#~ msgstr "Vorfälle lesen" - -#~ msgid "matches of the alert" -#~ msgstr "Übereinstimmungen mit dem Alarm" - -#~ msgid "Massive agent deletion" -#~ msgstr "Massive Beauftragten-Löschung" - -#~ msgid "Select an element to delete:" -#~ msgstr "Wählen Sie ein Element zum Löschen aus :" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "" -#~ "Bitte wählen Sie ein Bild oder geben Sie einen Namen für das Element ein." - -#~ msgid "attach_error" -#~ msgstr "Fehler beim Anhängen" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Beauftragter des Keepalive-Monitors" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Kein ausgewählter Beauftragter, bitte wählen Sie einen Beauftragten." - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Rotes Feld, wenn die Modulgruppe und der Beauftragte wenigstens ein Modul in " -#~ "kritischem Stadium und alle anderen in beliebigen Stadien besitzen." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Gelbes Feld, wenn die Modulgruppe und der Beauftragte wenigstens ein Modul " -#~ "im Stadium 'Warnung' und alle anderen in grünem Stadium besitzen." - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "" -#~ "Graues Feld, wenn die Modulgruppe und der Beauftragte keine Module besitzen." - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Diese Erweiterung macht die Registrierung der Server-Plugins etwas " -#~ "einfacher. Hier können Sie ein Server-Plugin im gezippten Pandora FMS 3.x " -#~ "Format (*.pspz) hochladen. Bitte schauen Sie in die Dokumentation um zu " -#~ "erfahren, wie man Pandora FMS-Serverplugins erhält und benutzt.

Sie " -#~ "können mehrere Plugins in unserer P" -#~ "ublic Resource Library erhalten." - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Grünes Feld, wenn die Modulgruppe und der Beauftragte alle Module im Stadium " -#~ "'In Ordnung' besitzen." - -#~ msgid "Event validate" -#~ msgstr "Ereignis bestätigen" - -#~ msgid "Pandora agents" -#~ msgstr "Pandora-Beauftragte" - -#~ msgid "Event not validated" -#~ msgstr "Ereignis nicht bestätigt." - -#~ msgid "Event not validate" -#~ msgstr "Ereignis nicht bestätigen" - -#~ msgid "Create Service" -#~ msgstr "Service erstellen" - -#~ msgid "Log Collector" -#~ msgstr "Log-Sammler" - -#~ msgid "Event alerts" -#~ msgstr "Ereignis-Alarme" - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "Inventory modules" -#~ msgstr "Inventar-Module" - -#~ msgid "Local components" -#~ msgstr "Lokale Komponenten" - -#~ msgid "Collections" -#~ msgstr "Kollektionen" - -#~ msgid "Manage policies" -#~ msgstr "Richtlinien verwalten" - -#~ msgid "Service updated successfully" -#~ msgstr "Service erfolgreich aktualisiert" - -#~ msgid "Error creating service" -#~ msgstr "Fehler beim Erstellen des Services" - -#~ msgid "Service created successfully" -#~ msgstr "Service erfolgreich erstellt" - -#~ msgid "Not found" -#~ msgstr "Nicht gefunden" - -#~ msgid "Error updating service" -#~ msgstr "Fehler beim Aktualisieren des Services" - -#~ msgid "New Service" -#~ msgstr "Neuer Service" - -#~ msgid "View Service" -#~ msgstr "Service ansehen" - -#~ msgid "Warning Service alert" -#~ msgstr "Achtung Servicewarnung" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Bitte legen Sie das Limit zwischen 0 und 100 fest." - -#~ msgid "Critical Service alert" -#~ msgstr "Kritische Servicewarnung" - -#~ msgid "Service map" -#~ msgstr "Servicemap" - -#~ msgid "Error creating service element" -#~ msgstr "Fehler beim Erstellen des Serviceelements" - -#~ msgid "Service element created successfully" -#~ msgstr "Serviceelement erfolgreich erstellt" - -#~ msgid "Error empty module" -#~ msgstr "Fehler: Module ohne Inhalt" - -#~ msgid "Edit service elements" -#~ msgstr "Service-Elemente bearbeiten" - -#~ msgid "Error empty service" -#~ msgstr "Fehler: Service ohne Inhalt" - -#~ msgid "Service element updated successfully" -#~ msgstr "Serviceelement erfolgreich aktualisiert" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Serviceelement erfolgreich gelöscht" - -#~ msgid "Error deleting service element" -#~ msgstr "Fehler beim Löschen des Serviceelements" - -#~ msgid "Error updating service element" -#~ msgstr "Fehler beim Aktualisieren des Serviceelements" - -#~ msgid "Security check is ok." -#~ msgstr "Die Sicherheitsüberprüfung ist in Ordnung." - -#~ msgid "Show extended info" -#~ msgstr "Erweiterte Informationen anzeigen" - -#~ msgid "Edit element service" -#~ msgstr "Serviceelement bearbeiten" - -#~ msgid "Create element service" -#~ msgstr "Serviceelement erstellen" - -#~ msgid "Using local component" -#~ msgstr "Nutzen von lokalen Komponenten" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "" -#~ "Die Änderungen in diesem Feld sind mit den Konfigurationsdaten verlinkt." - -#~ msgid "Extended info:" -#~ msgstr "Erweiterte Informationen:" - -#~ msgid "Security check is fail." -#~ msgstr "Die Sicherheitsüberprüfung ist fehlgeschlagen." - -#~ msgid "Hide configuration data" -#~ msgstr "Konfigurationsdaten verbergen" - -#~ msgid "Show configuration data" -#~ msgstr "Konfigurationsdaten anzeigen" - -#~ msgid "Data configuration" -#~ msgstr "Datenkonfiguration" - -#~ msgid "Check" -#~ msgstr "Überprüfung" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Überprüfen Sie die korrekte Struktur der Datenkonfiguration" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "Die erste Zeile muss \"module_begin\" sein" - -#~ msgid "Data configuration is empty" -#~ msgstr "Die Datenkonfiguration ist ohne Inhalt" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Die letzte Zeile muss \"module_end\" sein" - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA kritische Servicewarnung" - -#~ msgid "Critical weight" -#~ msgstr "Kritisches Gewicht" - -#~ msgid "S.L.A. interval" -#~ msgstr "S.L.A.-Intervall" - -#~ msgid "S.L.A. limit" -#~ msgstr "S.L.A.-Limit" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Es gibt eine Zeile mit einem unbekannten Token 'token_fail'." - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Falscher Typ. Bitte einen richtigen Typ festlegen" - -#~ msgid "Ok weight" -#~ msgstr "Richtiges Gewicht" - -#~ msgid "Warning weight" -#~ msgstr "Warnendes Gewicht" - -#~ msgid "Unknown weight" -#~ msgstr "Unbekanntes Gewicht" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Fehlender Name. Bitte fügen Sie eine Zeile mit \"module_name " -#~ "yourmodulename\" zu der Datenkonfiguration hinzu" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Fehlender Typ. Bitte fügen Sie eine Zeile mit \"module_type yourmoduletype\" " -#~ "zu der Datenkonfiguration hinzu" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plugin erfolgreich hinzugefügt" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Plugin kann nicht hinzugefügt werden" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plugin erfolgreich gelöscht" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Plugin kann nicht gelöscht werden" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Syntaxfehler, bitte prüfen Sie die Datenkonfiguration." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "Die Datenkonfiguration ist korrekt erstellt" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plugin erfolgreich deaktiviert" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Plugin kann nicht deaktiviert werden" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Plugin kann nicht aktiviert werden" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plugin erfolgreich aktiviert" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Inventar-Modul erfolgreich aktualisiert" - -#~ msgid "Error updating inventory module" -#~ msgstr "Fehler beim Aktualisieren des Inventar-Moduls" - -#~ msgid "New plug-in" -#~ msgstr "Neues Plugin" - -#~ msgid "Error adding inventory module" -#~ msgstr "Fehler beim Hinzufügen des Inventar-Moduls" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Inventar-Modul erfolgreich hinzugefügt" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Fehler beim Löschen des Inventar-Moduls" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Inventar-Modul erfolgreich gelöscht" - -#~ msgid "7 days" -#~ msgstr "7 Tage" - -#~ msgid "Update all" -#~ msgstr "Alle aktualisieren" - -#~ msgid "Target" -#~ msgstr "Ziel" - -#~ msgid "SNMP operations" -#~ msgstr "SNMP-Einstellungen" - -#~ msgid "Policies operations" -#~ msgstr "Grundsatz-Einstellungen" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Es wird empfohlen, die erweiterten Daten zu löschen, anderenfalls werden die " -#~ "Prüfungsdaten vor der Tabelle 'tsession_extended' berücksichtigt." - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "Kann Exportziel nicht erstellen : Benutzer und Passwort müssen im FTP-Modus " -#~ "ausgefüllt werden." - -#~ msgid "Load basic" -#~ msgstr "Lade Grundstruktur" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Eine Grundstruktur bei Datenkonfiguration laden" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Zwingendes Hinzufügen von Bestandsmodul fehlgeschlagen." - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Diese Werte gelten als voreingestellt, weil dieser Dienst einen " -#~ "automatischen Berechnungsmodus enthält." - -#~ msgid "Config Service" -#~ msgstr "Konfigurations-Dienst" - -#~ msgid "Config Elements" -#~ msgstr "Elemente-Konfiguration" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Zwingendes Hinzufügen von Bestandsmodul erfolgreich." - -#~ msgid "Unable to create the collection" -#~ msgstr "Fehler bei Erzeugung der Zusammenstellung" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Eine andere Zusammenstellung mit dem selben Namen" - -#~ msgid "Manager configuration > New" -#~ msgstr "Manager-Konfiguration > Neue" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Manager-Konfiguration > Bearbeiten " - -#~ msgid "Inventory module error" -#~ msgstr "Bestandsmodul-Fehler" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Fehler beim Bearbeiten der Zusammenstellung, leer gelassener Name." - -#~ msgid "Correct create collection" -#~ msgstr "Korrigiere Erzeugung der Zusammenstellung" - -#~ msgid "Unable to create the collection." -#~ msgstr "Fehler bei Erzeugung der Zusammenstellung." - -#~ msgid "Empty name" -#~ msgstr "Leer gelassener Name" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Ungültige Zeichen im Kurznamen." - -#~ msgid "Unable to edit the collection." -#~ msgstr "Fehler beim Bearbeiten der Zusammenstellung." - -#~ msgid "Synthetic average" -#~ msgstr "Künstlicher Durchschnitt" - -#~ msgid "Group filter" -#~ msgstr "Gruppenfilter" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Für voreingestellten Kurznamen 'fc_X' leer lassen, wobei 'X' die " -#~ "Zusammenstellungs-ID ist." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Künstliches Rechnen" - -#~ msgid "Fixed value" -#~ msgstr "Festwert" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "" -#~ "Kurzname darf nur aplphanumerische Zeichen und '-' oder '_' enthalten." - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "Der Kurzname der Zusammenstellung ist der Name des Verzeichnisses im Anhang " -#~ "und der Paketzusammenstellung." - -#~ msgid "Short name:" -#~ msgstr "Kurzname :" - -#~ msgid "Recreate file" -#~ msgstr "Datei erneut erzeugen" - -#~ msgid "Add module to operation as add" -#~ msgstr "Füge Modul zur Operation hinzu" - -#~ msgid "Add module to operations as divide" -#~ msgstr "Füge Modul zu der Operation als Divisor hinzu." - -#~ msgid "Remove selected modules" -#~ msgstr "Entferne ausgewählte Module." - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Ziehe Modul von der Operation als Abzug ab." - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Füge Modul zu der Operation als Multiplikator hinzu. " - -#~ msgid "Netflow filter" -#~ msgstr "Netflow-Filter" - -#~ msgid "Select Service" -#~ msgstr "Dienst auswählen" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Entferne ausgewählte Module vom Operations-Stapel." - -#~ msgid "Add module to average operation" -#~ msgstr "Füge Modul zur Durchschnitts-Operation hinzu." - -#~ msgid "Move up selected modules" -#~ msgstr "Bewege ausgewählte Module nach oben." - -#~ msgid "Move down selected modules" -#~ msgstr "Bewege ausgewählte Module nach unten." - -#~ msgid "No module was found" -#~ msgstr "Es wurde kein Modul gefunden." - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Lösche entfernte CONF-Dateien des Beauftragten in Pandora." - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "" -#~ "Dieser Beauftragte besitzt keine Remote-Konfiguration. Bitte erstellen Sie " -#~ "eine." - -#~ msgid "Succesful add the collection" -#~ msgstr "Zusammenstellung erfolgreich hinzugefügt." - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Hinzufügen der Zusammenstellung gescheitert." - -#~ msgid "Short Name" -#~ msgstr "Kurzname" - -#~ msgid "Add module" -#~ msgstr "Modul hinzufügen" - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Fehler : Die CONF-Datei des Beauftragten ist nicht beschreibbar." - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Fehler : Die CONF-Datei des Beauftragten ist nicht lesbar." - -#~ msgid "Select filter" -#~ msgstr "Filter auswählen" - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "Bitte erzeugen Sie zunächst eine neue Zusammenstellung, bevor Sie Dateien " -#~ "hochladen." - -#~ msgid "Outdate" -#~ msgstr "Veraltet" - -#~ msgid "Show files" -#~ msgstr "Dateien anzeigen" - -#~ msgid "Dir" -#~ msgstr "Verzeichnis" - -#~ msgid "Create a new web Server module" -#~ msgstr "Ein neues Webserver-Modul erzeugen" - -#~ msgid "Compatibility mode" -#~ msgstr "Kompatibilitätsmodus" - -#~ msgid "Back to file explorer" -#~ msgstr "Zurück zum Datei-Explorer" - -#~ msgid "Files in " -#~ msgstr "Dateien in " - -#~ msgid "Incorrect update file." -#~ msgstr "Dateiaktualisierung fehlgeschlagen." - -#~ msgid "Correct update file." -#~ msgstr "Dateiaktualisierung erfolgreich." - -#~ msgid "Error copying md5 file " -#~ msgstr "Fehler beim Kopieren von MD5-Datei. " - -#~ msgid "Copied " -#~ msgstr "Kopiert " - -#~ msgid " md5 file" -#~ msgstr " MD5-Datei" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Eine einfache Struktur auf Web-Checks laden" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Bitte überprüfen Sie, ob die Struktur auf Web-Check korrekt ist." - -#~ msgid "Web server module" -#~ msgstr "Webserver-Modul" - -#~ msgid "Web checks" -#~ msgstr "Web-Checks" - -#~ msgid "Error copying " -#~ msgstr "Kopierfehler " - -#~ msgid " config file" -#~ msgstr " config Datei" - -#~ msgid "Exact match" -#~ msgstr "Exakter Treffer" - -#~ msgid "SLA max value" -#~ msgstr "SLA Höchstwert" - -#~ msgid "Sum" -#~ msgstr "Summe" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA Grenzwert" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA Grenze %" - -#~ msgid "SLA max Value" -#~ msgstr "SLA Höchstwert" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "SLA min Value" -#~ msgstr "SLA Mindestwert" - -#~ msgid "SLA min value" -#~ msgstr "SLA Mindestwert" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Die letzte Zeile muss \"task_end\" sein" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "Webcheck -Konfiguration ist leer" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP-Authentifizierung (server)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP-Authentifizierung (pass)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "Die erste Zeile muss \"task_begin\" sein" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP-Authentifizierung (realm)" - -#~ msgid "Proxy URL" -#~ msgstr "Proxy-URL" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP-Authentifizierung (login)" - -#~ msgid "Requests" -#~ msgstr "Anfragen" - -#~ msgid "Can not create collection package." -#~ msgstr "Das Sammlungspaket kann nicht erstellt werden." - -#~ msgid "Successful create collection package." -#~ msgstr "Sammlungspaket erfolgreich erstellt." - -#~ msgid "Error: recreate file " -#~ msgstr "Fehler: Datei wiederherstellen " - -#~ msgid "Success: recreate file" -#~ msgstr "Erfolg: Datei wiederherstellen" - -#~ msgid "Manager collection" -#~ msgstr "Sammlungs-Manager" - -#~ msgid "Collections Management" -#~ msgstr "Verwaltung der Sammlungen" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Erstellen des Verzeichnisses fehlgeschlagen: %s" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Webchecks sind korrekt erstellt" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Datei der Sammlung ist größer als das Limit (" - -#~ msgid "No files in collection" -#~ msgstr "Keine Dateien in der Sammlung" - -#~ msgid "Apply changes" -#~ msgstr "Änderungen übernehmen" - -#~ msgid "Re-Apply changes" -#~ msgstr "Änderungen erneut übernehmen" - -#~ msgid "Delete collection" -#~ msgstr "Sammlung löschen" - -#~ msgid "Are you sure to delete?" -#~ msgstr "Sind Sie sich sicher" - -#~ msgid "Elements to apply" -#~ msgstr "Elemente zu übernehmen" - -#~ msgid "List templates" -#~ msgstr "Vorlagen auflisten" - -#~ msgid "Edit template" -#~ msgstr "Vorlage bearbeiten" - -#~ msgid "Create template" -#~ msgstr "Vorlage erstellen" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Bereinigung erfolgreich" - -#~ msgid "Cleanup error" -#~ msgstr "Fehler bei der Bereinigung" - -#~ msgid "Wizard template" -#~ msgstr "Vorlagen-Assistent" - -#~ msgid "Clean up template" -#~ msgstr "Bereinigungs-Vorlage" - -#~ msgid "Select all" -#~ msgstr "Alle auswählen" - -#~ msgid "Apply template" -#~ msgstr "Vorlage übernehmen" - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Dies wird alle Berichte, die in vorherigen Vorlagen-Anwendungen erstellt " -#~ "wurden, löschen. Möchten Sie fortsetzen?" - -#~ msgid "Create custom SQL" -#~ msgstr "Benutzerdefiniertes SQL erstellen" - -#~ msgid "Could not be applied" -#~ msgstr "Konnte nicht übernommen werden" - -#~ msgid "reports" -#~ msgstr "Berichte" - -#~ msgid "items" -#~ msgstr "Elemente" - -#~ msgid "Could not be operation" -#~ msgstr "Könnte nicht funktionieren" - -#~ msgid "Sucessfully applied" -#~ msgstr "Erfolgreich übernommen" - -#~ msgid "Successfully operation" -#~ msgstr "Vorgang erfolgreich" - -#~ msgid "Modules to match" -#~ msgstr "Module stimmen nicht überein" - -#~ msgid "SQL preview" -#~ msgstr "SQL-Vorschau" - -#~ msgid "Query SQL" -#~ msgstr "SQL-Abfrage" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "" -#~ "Probieren Sie, ob Sie die Übereinstimmung der Modul-Namen wörtlich möchten" - -#~ msgid "Module exact match" -#~ msgstr "Exakte Übereinstimmung des Moduls" - -#~ msgid "Template updated successfully" -#~ msgstr "Vorlage erfolgreich aktualisiert" - -#~ msgid "Not literally" -#~ msgstr "Nicht wörtlich" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Entsprechende Module (Freitext)" - -#~ msgid "Policies Management" -#~ msgstr "Verwaltung der Richtlinien" - -#~ msgid "Error updating template" -#~ msgstr "Fehler beim Aktualisieren der Vorlage" - -#~ msgid "Policy updated" -#~ msgstr "Richtlinie aktualisiert" - -#~ msgid "Linking" -#~ msgstr "Verknüpfen" - -#~ msgid "External alerts" -#~ msgstr "Externe Warnungen" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Wenn Sie diese Beschreibung ändern möchten, müssen Sie die Änderung im Text " -#~ "der Datenkonfiguration vornehmen." - -#~ msgid "Queue" -#~ msgstr "Warteschlange" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Die Löschung wurde erfolgreich rückgängig gemacht" - -#~ msgid "Could not be reverted" -#~ msgstr "Konnte nicht rückgängig gemacht werden" - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "Der Modultyp in der Datenkonfiguration ist leer, übernehmen Sie ihn vom " -#~ "Auswahlfeld des Formulars." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "Der Modulname in der Datenkonfiguration ist leer, übernehmen Sie ihn vom " -#~ "Textfeld des Formulars." - -#~ msgid "Could not be added module." -#~ msgstr "Modul konnte nicht hinzugefügt werden." - -#~ msgid "Successfully added module." -#~ msgstr "Modul erfolgreich hinzugefügt." - -#~ msgid "Local component" -#~ msgstr "Lokaler Bestandteil" - -#~ msgid "Undo deletion" -#~ msgstr "Löschen rückgängig machen" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Ausgewählte Module zur Richtlinie kopieren: " - -#~ msgid "Variable" -#~ msgstr "Variable" - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Unerledigte Module wurden erfolgreich zum Löschen hinzugefügt. Sie werden " -#~ "mir der nächsten Richtlinien-Anwendung gelöscht." - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "" -#~ "Modul(e) (%s/%s) konnte(n) nicht zur Richtlinie %s hinzugefügt werden" - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Erfolgreich zur Warteschlange zum Löschen hinzugefügt" - -#~ msgid "Please select any module to copy" -#~ msgstr "Bitte irgendein Modul zum Kopieren auswählen" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Sind Sie sicher, die Module in die Richtlinie zu kopieren?\\n" - -#~ msgid ": Edit: " -#~ msgstr ": Editiere : " - -#~ msgid "Please set template distinct than " -#~ msgstr "Die Vorlage eindeutig unterscheiden von " - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Benutzerdefinierter MySQL-Vorlagenersteller" - -#~ msgid ": Create new custom" -#~ msgstr ": Erzeuge neue benutzerdefinierte" - -#~ msgid "Graph template editor" -#~ msgstr "Graphen-Vorlageneditor" - -#~ msgid "Graph template management" -#~ msgstr "Graphenvorlagen-Verwaltung" - -#~ msgid "There are no defined graph templates" -#~ msgstr "Es gibt keine definierten Graphenvorlagen" - -#~ msgid "Agent browser id" -#~ msgstr "Browser-ID des Beauftragten" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Regulärer Ausdruck für den Beauftragten-Namen, bei dem die Groß- / " -#~ "Kleinschreibung irrelevant ist, z.B. bei Eingabe von 'Network.*' wird mit " -#~ "den folgenden Beauftragten-Namen 'network_agent1, Network CHECKS' " -#~ "übereinstimmen." - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Bitte speichern Sie zuerst die SLA-Vorlage ab bevor Sie damit anfangen, " -#~ "dieser Liste Elemente hinzuzufügen." - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Regulärer Ausdruck für den Beauftragten-Namen, bei dem die Groß- / " -#~ "Kleinschreibung irrelevant ist. Zum Beispiel wird der Rechner bei einer " -#~ "Eingabe von 'Network.*' die folgenden Beauftragten-Namen 'network_agent1' " -#~ "und 'Network CHECKS' zurückgeben." - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "Bitte speichern Sie zuerst die Vorlage ab bevor Sie damit anfangen, dieser " -#~ "Liste Elemente hinzuzufügen." - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Freitextfilter, um die Module der Beauftragten zu filtern, wenn diese " -#~ "Vorlage zur Anwendung kommt." - -#~ 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 "" -#~ "Wenn dieses Feld abgehakt ist, wird der reguläre Ausdruck oder Modulname pro " -#~ "Beauftragten, anstelle eines großen Graphen, in dem alle Module von allen " -#~ "Beauftragten verarbeitet werden, angezeigt." - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Alle Regel-Beauftragten hinzugefügt, um Warteschlange zu löschen." - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "" -#~ "Regel-Beauftragte können nicht zur Lösch-Warteschlange hinzugefügt werden." - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Alle Regel-Beauftragten werden gelöscht." - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "" -#~ "Ein Regel kann nicht glöscht werden, wenn sie noch Beauftragte enthält. " -#~ "Bereinigen Sie sie bitte zuerst." - -#~ msgid "Deleting all policy agents" -#~ msgstr "Lösche alle Regel-Beauftragten" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Modul(e) (%s/%s) erfolgreich zur Regel %s hinzugefügt." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "" -#~ "Module konnten nicht hinzugefügt werden. Sie müssen zuerst eine Regel " -#~ "auswählen." - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Konnte nicht zur Löschungs-Warteschlange hinzugefügt werden." - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Erfolgreich von zur Löschung ausstehenden Beauftragten gelöscht." - -#~ msgid "Pending update policy only database" -#~ msgstr "Datenbank, die nur für noch anzuwendende Regeln gedacht ist." - -#~ msgid "Pending update policy" -#~ msgstr "Noch ausstehende Aktualisierungs-Regel" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "Letzte Anwendung" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Nicht verbundene Module" - -#~ msgid "Applied" -#~ msgstr "Angewendet" - -#~ msgid "Not applied" -#~ msgstr "Nicht angewendet" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Erfolgreich zur Löschung der Sammlung hinzugefügt. Wird bei nächster " -#~ "Anwendung des Regelwerks gelöscht." - -#~ msgid "Applying policy" -#~ msgstr "Wende Regel an" - -#~ msgid "Need apply" -#~ msgstr "Benötigt Anwendung" - -#~ msgid "Deleting from policy" -#~ msgstr "Lösche aus dem Regelwerk" - -#~ msgid "Add to apply queue" -#~ msgstr "Zur Übernahme-Warteschlange hinzufügen" - -#~ msgid "Policy applied" -#~ msgstr "Regel angewendet" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Regulärer Ausdruck für die Zeichenkette oder den Modulnamen, bei dem die " -#~ "Groß- / Kleinschreibung irrelevant ist. Wenn Sie dieses Feld z.B. mit " -#~ "eingeschalteter 'Exakte Modul-Übereinstimmung' benutzen, wird das Feld mit " -#~ "dem exakten Modulnamen übereinstimmen müssen. Wenn sie das nicht tut, können " -#~ "Sie hier auch einen regulären Ausdruck verwenden, z.B. wird '*usage.*' die " -#~ "Werte 'cpu_usage' und 'vram usage' auf Maschine 1 zurückgeben." - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Erfolgreich zu den noch zur Löschung ausstehenden Alarmen hinzugefügt. Wird " -#~ "in der nächsten Anwendung des Regelwerks gelöscht." - -#~ msgid "Deleted action successfuly" -#~ msgstr "Aktion erfolgreich gelöscht." - -#~ msgid "Added action successfuly" -#~ msgstr "Aktion erfolgreich hinzugefügt." - -#~ msgid "Module is not selected" -#~ msgstr "Modul ist nicht ausgewählt" - -#~ msgid "Policy module" -#~ msgstr "Regelwerks-Modul" - -#~ msgid "Select inventory module" -#~ msgstr "Bestandsmodul wählen" - -#~ msgid "Linking modules" -#~ msgstr "Module verbinden" - -#~ msgid "This operation could take a long time" -#~ msgstr "Dieser Vorgang kann sehr viel Zeit in Anspruch nehmen" - -#~ msgid "Apply (database and files)" -#~ msgstr "Anwenden (Datenbank und Dateien)" - -#~ msgid "Complete" -#~ msgstr "Vollständig" - -#~ msgid "Apply (only database)" -#~ msgstr "Anwenden (nur Datenbank)" - -#~ msgid "Delete pending plugins" -#~ msgstr "Unerledigte Plugins löschen" - -#~ msgid "Delete pending file collections" -#~ msgstr "Unerledigte Dateisammlungen löschen" - -#~ msgid "Queue summary" -#~ msgstr "Warteschlangenzusammenfassung" - -#~ msgid "Advices" -#~ msgstr "Ratschläge" - -#~ msgid "Incomplete" -#~ msgstr "Unvollständig" - -#~ msgid "Queue filter" -#~ msgstr "Filter für Wartenschlange" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Der Vorgang wurde erfolgreich zur Warteschlange hinzugefügt" - -#~ msgid "Finished" -#~ msgstr "Fertiggestellt" - -#~ msgid "Empty queue" -#~ msgstr "Warteschlange leeren" - -#~ msgid "Delete all" -#~ msgstr "Alle löschen" - -#~ msgid "Delete from queue" -#~ msgstr "Aus der Warteschlange löschen" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Der Vorgang wurde erfolgreich von der Warteschlange gelöscht" - -#~ msgid "Add policy" -#~ msgstr "Richtlinie hinzufügen" - -#~ msgid "Created successfuly" -#~ msgstr "Erfolgreich erstellt" - -#~ msgid "Free text for filter" -#~ msgstr "Freitext für Filter" - -#~ msgid "List of modules unlinked" -#~ msgstr "Liste der nicht verknüpften Module" - -#~ msgid "Add to delete queue" -#~ msgstr "Zur Löschen-Warteschlange hinzufügen" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Freitext für Filter (*)" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "Der Vorgang kann nicht von der Warteschlange gelöscht werden" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Die Vorgänge können nicht von der Warteschlange gelöscht werden" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Die Vorgänge wurde erfolgreich von der Warteschlange gelöscht" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Duplizierter oder inkompatibeler Vorgang in der Warteschlange" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Unerledigte Plugins wurden erfolgreich zum Löschen hinzugefügt. Sie werden " -#~ "mir der nächsten Richtlinien-Anwendung gelöscht." - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "Vorgang kann nicht zur Warteschlange hinzugefügt werden" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Unerledigte Inventar-Module löschen" - -#~ msgid "Delete pending" -#~ msgstr "Unerledigte löschen" - -#~ msgid "Delete pending modules" -#~ msgstr "Unerledigte Module löschen" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Wird mit der nächsten Richtlinien-Anwendung gelöscht" - -#~ msgid "Delete pending alerts" -#~ msgstr "Unerledigte Warnungen löschen" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Unerledigte externe Warnungen löschen" - -#~ msgid "Error validating alert(s)" -#~ msgstr "Fehler beim Bestätigen der Warnung(en)" - -#~ msgid "Error processing action" -#~ msgstr "Fehler bei der Durchführung der Aktion" - -#~ msgid "List event alerts" -#~ msgstr "Ereignis-Warnungen auflisten" - -#~ msgid "Alert Template" -#~ msgstr "Warnungs-Vorlage" - -#~ msgid "Duplicated alert" -#~ msgstr "Duplizierte Warnung" - -#~ msgid "User comment" -#~ msgstr "Nutzerkommentar" - -#~ msgid "Move down" -#~ msgstr "Nach unten verschieben" - -#~ msgid "Move up" -#~ msgstr "Nach oben verschieben" - -#~ msgid "Window" -#~ msgstr "Fenster" - -#~ msgid "Error updating rule operators" -#~ msgstr "Fehler beim Aktualisieren der Regel-Operatoren" - -#~ msgid "Error updating rule" -#~ msgstr "Fehler beim Aktualisieren der Regel" - -#~ msgid "Successfully updating rule" -#~ msgstr "Regel erfolgreich aktualisiert" - -#~ msgid "Update operators" -#~ msgstr "Operatoren aktualisieren" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "" -#~ "Fehlgeschlagen: erstellen Sie die Warnungen für diese Module, bitte prüfen." - -#~ msgid "Successfully update rule operators" -#~ msgstr "Regel-Operatoren erfolgreich aktualisiert" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Logischer Ausdruck für diese Regel:" - -#~ msgid "Success: create the alerts." -#~ msgstr "Erfolgreich: erstellen Sie die Warnungen." - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Warnungen (%s / %s) wurden nicht erfolgreich aktualisiert" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "Zu bearbeitende SNMP Warnungen" - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Warnungen (%s / %s) wurden erfolgreich aktualisiert" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Erfolgreich: Warnungen entfernen." - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "Zu löschende SNMP Warnungen" - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "" -#~ "Fehlgeschlagen: entfernen Sie die Warnungen für diese Module, bitte prüfen." - -#~ msgid "Unlink pending modules" -#~ msgstr "Verlinkung der noch ausstehenden Module aufheben" - -#~ msgid "Link pending modules" -#~ msgstr "Verlinken der noch ausstehenden Module" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Zur Warteschlange nur für Datenbank hinzufügen" - -#~ msgid "Update pending" -#~ msgstr "Noch ausstehende Aktualisierung" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Kann nicht zur Liste noch zu löschender Plugins hinzugefügt werden." - -#~ msgid "Update pending agents" -#~ msgstr "Aktualisierung der noch ausstehenden Beauftragten" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "" -#~ "Verlinkung wird bei der nächsten Anwendung des Regelwerks aufgehoben." - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Wird bei der nächsten Anwendung des Regelwerks hinzugefügt." - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Fehlgeschlagene Aktualisierung der Module zum Regelwerk" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Erfolgreiche Aktualisierung der Module zum Regelwerk" - -#~ msgid "View associated rules" -#~ msgstr "In Zusammenhang stehende Regeln anzeigen" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Konnte nicht erzeugt werden, bitte Alarmnamen angeben." - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Builder event alert" -#~ msgstr "Bauträger-Ereignisalarm" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Dieses Feld wird mit regexp abgearbeitet" - -#~ msgid "Configure event rule" -#~ msgstr "Konfiguriere Ereignisregel" - -#~ msgid "List event rules" -#~ msgstr "Liste Ereignisregeln auf" - -#~ msgid "Configure event alert" -#~ msgstr "Konfiguriere Ereignis-Alarm" - -#~ msgid "Successfully created rule" -#~ msgstr "Regel erfolgreich erzeugt." - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Erweiterung des Regelwerks für massive Alarme" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Löschung im Regelwerk für massive Alarme" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Regelbewertungs-Modus" - -#~ msgid "Please Read" -#~ msgstr "Bitte lesen" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Weil der Alarm multiple Aktionen haben kann, können Sie sie von der " -#~ "Alarmliste der Ereignisse aus bearbeiten." - -#~ msgid "Error creating rule" -#~ msgstr "Fehler bei Erzeugung der Regel" - -#~ msgid "Group by" -#~ msgstr "Gruppieren nach" - -#~ msgid "Event rules" -#~ msgstr "Reeignis-Regeln" - -#~ msgid "Custom OID" -#~ msgstr "Benutzerfinierte OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Fehler beim Parsen des MIB." - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Löschung im Regelwerk für SNMP-Alarme" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Erweiterung im Regelwerk für SNMP-Alarme" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Benutzerdefinierte TRAP-Werte erfolgreich gelöscht." - -#~ msgid "Error updating trap custom values" -#~ msgstr "Fehler beim Aktualisieren der benutzerdefinierten TRAP-Werte." - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Benutzerdefinierte TRAP-Werte erfolgreich aktualisiert." - -#~ msgid "No change in data" -#~ msgstr "Kein Veränderung der Daten." - -#~ msgid "Error adding trap custom values" -#~ msgstr "Hinzufügen der benutzerdefinierten TRAP-Werte fehlgeschlagen." - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Benutzerdefinierte TRAP-Werte erfolgreich hinzugefügt." - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Bestimmt die max. Lebendauer der Logdaten in Tagen." - -#~ msgid "Load MIB" -#~ msgstr "MIB laden" - -#~ msgid "Upload MIB" -#~ msgstr "MIB hochladen" - -#~ msgid "Log storage directory" -#~ msgstr "Verzeichnis für Speicherung der Logdateien" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Verzeichnis, in dem die Logdaten abgelegt werden." - -#~ msgid "Fail uploaded file" -#~ msgstr "Fehler beim Hochladen der Datei" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Fehler beim Hochladen der %s/%s TRAPs." - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Hochgeladene %s/%s TRAPs" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Felher bei Löschung benutzerdefinierter TRAP-Werte." - -#~ msgid "Page" -#~ msgstr "Seite" - -#~ msgid "Filter by profile" -#~ msgstr "Nach Profil filtern" - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Enterprise ACL-Einrichtung" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Füge neues ACL-Element zum Profil hinzu" - -#~ msgid "Section" -#~ msgstr "Sektion" - -#~ msgid "Create skin" -#~ msgstr "Erscheinungsbild erzeugen" - -#~ msgid "Skin name" -#~ msgstr "Erscheinungsbild-Name" - -#~ msgid "Error deleting skin" -#~ msgstr "Fehler bei Löschung des Erscheinungsbilds." - -#~ msgid "Skins configuration" -#~ msgstr "Erscheinungsbild-Konfiguration" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Erscheinungsbild erfolgreich gelöscht." - -#~ msgid "Could not be update" -#~ msgstr "Konnte nicht aktualisiert werden." - -#~ msgid "Metaconsole setup" -#~ msgstr "Einrichtung der Meta-Konsole" - -#~ msgid "Successfully update" -#~ msgstr "Erfolgreich aktualisiert." - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "ZIP-Datei mit Erscheinungsbild-Unterverzeichnis. Der Name der ZIP-Datei darf " -#~ "nur alphanumerische Zeichen enthalten." - -#~ msgid "Group/s" -#~ msgstr "Grupp(en)" - -#~ msgid "Successfully created skin" -#~ msgstr "Erscheinungsbild erfolgreich erzeugt." - -#~ msgid "Error creating skin" -#~ msgstr "Fehler beim Erzeugen des Erscheinungsbilds." - -#~ msgid "Relative path" -#~ msgstr "Relativer Pfad" - -#~ msgid "Error updating skin" -#~ msgstr "Fehler beim Aktualisieren des Erscheinungsbilds." - -#~ msgid "Successfully updated skin" -#~ msgstr "Erscheinungsbild erfolgreich aktualisiert." - -#~ msgid "DB Password" -#~ msgstr "Datenbank-Passwort" - -#~ msgid "Auth token" -#~ msgstr "Autorisierungs-Token" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token wurde vor kurzem auf der Pandora-Zielkonsole konfiguriert, um die " -#~ "bevollmächtigte Authentifizierung benutzen zu können." - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Anpassung Pandora FMS Metakonsolen-Element" - -#~ msgid "Console Password" -#~ msgstr "Konsolen-Passwort" - -#~ msgid "Console URL" -#~ msgstr "Konsolen-URL" - -#~ msgid "Console User" -#~ msgstr "Konsolen-Benutzer" - -#~ msgid "DB User" -#~ msgstr "Datenbank-Benutzer" - -#~ msgid "DB Name" -#~ msgstr "Datenbank-Name" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Zeitintervall zwischen den Datentransfers" - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Bevor Sie diese Option aktivieren, überprüfen Sie bitte ihre ACL-" -#~ "Einrichtung. Es könnte sein, dass Sie sonst den Zugriff auf ihre Konsole " -#~ "verlieren." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Datengröße des Mechanismus, der zur Übertragung von Daten verwendet wird " -#~ "(einem Datenpuffer ähnlich)." - -#~ msgid "Compatibility" -#~ msgstr "Kompatibilität" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "DB" -#~ msgstr "Datenbank" - -#~ msgid "Only validated events" -#~ msgstr "Nur genehmigte Ereignisse" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Die Bestandsmodule, die auf der Schwarzen Liste für Änderungen stehen, " -#~ "generieren keine Ereignisse beim Ändern." - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Ausgewählte Module aus der Schwarze Liste entfernen" - -#~ msgid "Enterprise options" -#~ msgstr "Enterprise-Optionen" - -#~ msgid "Out of black list" -#~ msgstr "Aus der Schwarzen Liste" - -#~ msgid "In black list" -#~ msgstr "In der Schwarzen Liste" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Ausgewählte Module in die Schwarze Liste aufnehmen" - -#~ msgid " Caracters" -#~ msgstr " Buchstaben" - -#~ msgid " Days" -#~ msgstr " Tage" - -#~ msgid " Minutes" -#~ msgstr " Minuten" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Auf 0 einstellen, um es nicht ablaufen zu lassen." - -#~ msgid "Two attempts minimum" -#~ msgstr "Mindestens zwei Versuche" - -#~ msgid " Attempts" -#~ msgstr " Versuche" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Regeln auf Passwort-Management angewendet. Diese Regel wird auf alle " -#~ "Benutzer mit Ausnahme der Administratoren angewendet." - -#~ msgid "Remote Integria" -#~ msgstr "Entferntes Integria" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Entferntes Babel Enterprise" - -#~ msgid "Macros" -#~ msgstr "Makros" - -#~ msgid "Active directory" -#~ msgstr "Active Directory" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Entferntes Pandora FMS" - -#~ msgid "Enterprise password policy" -#~ msgstr "Enterprise-Passwortregeln" - -#~ msgid "separate fields with " -#~ msgstr "Trennung der Felder mit " - -#~ msgid "Error creating inventory module" -#~ msgstr "Erzeugen von Bestandsmodul fehlgeschlagen." - -#~ msgid "Successfully created inventory module" -#~ msgstr "Bestandsmodul erfolgreich erzeugt." - -#~ msgid "Interpreter" -#~ msgstr "Interpreter" - -#~ msgid "Local component management" -#~ msgstr "Lokales Komponenten-Management" - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Oder deaktivieren Sie Pandora FMS Enterprise" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ "Diese Lizenz ist abgelaufen. " -#~ "

Sie werden keinerlei Aktualisierungen mehr erhalten, wenn Sie keine " -#~ "neue Lizenz erwerben." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "Lizenzlimit überschritten. " -#~ "

Diese Lizenz erlaubt %d Beauftragte und Sie haben %d Beauftragte " -#~ "konfiguriert." - -#~ msgid "Show a map made by user" -#~ msgstr "Zeige eine vom Benutzer angelegte Karte" - -#~ msgid "Limit" -#~ msgstr "Limit" - -#~ msgid "Latest events list" -#~ msgstr "Neueste Ereignisliste" - -#~ msgid "Alerts Fired report" -#~ msgstr "Bericht über aktivierte Alarme" - -#~ msgid "Map made by user" -#~ msgstr "Vom Benutzer angelegte Karte" - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Um Pandora FMS weiterhin benutzen zu können, deaktivieren Sie bitte die " -#~ "Enterprise-Funktionalitäten, indem Sie das Enterprise-Verzeichnis in der " -#~ "Konsole umbenennen.

Oder kontaktieren Sie Artica unter der Adresse " -#~ "info@artica.es für eine neue, gültige Lizenz." - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "Bitte kontaktieren Sie Artica, um diese Lizenz zu erneuern." - -#~ msgid "Renew" -#~ msgstr "Erneuern" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Bitte konfigurieren Sie dieses Widget, bevor Sie es benutzen." - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Zeige einen Graphen eines Beauftragten-Moduls" - -#~ msgid "Single graph" -#~ msgstr "Einzelner Graph" - -#~ msgid "Show a report made by user" -#~ msgstr "Zeige einen vom Benutzer erstellten Bericht" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Höhe in Pixel (0 für autromatisch)" - -#~ msgid "Show the URL content" -#~ msgstr "Zeige den URL-Inhalt" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Dies ist ein Beispiel für ein Dashboard-Widget. Ein Widget könnte Elemente " -#~ "enthalten." - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Willkommens-Nachricht zu Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Willkommen" - -#~ msgid "My URL" -#~ msgstr "Meine URL" - -#~ msgid "Invalid URL" -#~ msgstr "Ungültige URL" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Klicken Sie am oberen Ende dieser Seite auf \"Widgets hinzufügen\", " -#~ "um mehr Elemente hinzuzufügen." - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "Keine Überlappung" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Um diese Nachricht zu löschen, klicken Sie bitte auf den Löschen-Knopf in " -#~ "der oberen rechten Ecke dieses Elements." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Klicken Sie einfach auf den Titel und lassen Sie es durch ziehen und ablegen " -#~ "über der von ihnen gewünschten Stelle fallen." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Herzlichen Dank für die Benutzung von Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Zeige eine Karte des überwachten Netzwerks" - -#~ msgid "Panel with a message" -#~ msgstr "Panel mit einer Nachricht" - -#~ msgid "My Post" -#~ msgstr "Mein Posten" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Allgemeiner und schneller visueller Kartenbericht" - -#~ msgid "Maps status" -#~ msgstr "Karten-Status" - -#~ msgid "Dashboard replicate" -#~ msgstr "Dashboard replizieren" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Zeige einen benutzerdefinierten Graphen" - -#~ msgid "Groups status" -#~ msgstr "Gruppen-Status" - -#~ msgid "General and quick group status report" -#~ msgstr "Allgemeiner und schneller Gruppenstatus-Bericht" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Zeige eine Liste der weltweiten Überwachungs-Gesundheit" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Widget kann nicht geladen werden." - -#~ msgid "Delete widget" -#~ msgstr "Lösche Widget" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Repliziere Dashboard" - -#~ msgid "Group Dashboards" -#~ msgstr "Gruppiere Dashboards" - -#~ msgid "Configure widget" -#~ msgstr "Konfiguriere Widget" - -#~ msgid "Source user's group" -#~ msgstr "Quelle Benutzergruppe" - -#~ msgid "Destination user's group" -#~ msgstr "Ziel Benutzergruppe" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "Wurde nicht kopiert. Fehler beim Kopieren der Daten. Sie müssen ein " -#~ "Dashboard auswählen." - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Nicht kopiert. Fehler beim Kopieren der Daten." - -#~ msgid "Successfully copyed" -#~ msgstr "Erfolgreich kopiert" - -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Dashboard erfolgreich erzeugt" - -#~ msgid "Could not create dashboard" -#~ msgstr "Konnte Dashboard nicht erzeugen" - -#~ msgid "Could not update dashboard" -#~ msgstr "Konnte Dashboard" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Dashboard erfolgreich aktualisiert." - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Bitte konfigurieren das Widget erneut, um es zurückzugewinnen." - -#~ msgid "Play" -#~ msgstr "Abspielen" - -#~ msgid "Previous Dashboard" -#~ msgstr "Vorheriges Dashboard" - -#~ msgid "Slides mode" -#~ msgstr "Dia-Modus" - -#~ msgid "Next Dashboard" -#~ msgstr "Nächstes Dashboard" - -#~ msgid "Search results for" -#~ msgstr "Suchergebnisse für" - -#~ msgid "Private dashboard" -#~ msgstr "Privates Dashboard" - -#~ msgid "Dashboard options" -#~ msgstr "Dashboard-Optionen" - -#~ msgid "Add new widget" -#~ msgstr "Füge neues Widget hinzu" - -#~ msgid "Add new dashboard view" -#~ msgstr "Füge neue Dashboard-Ansicht hinzu" - -#~ msgid "Add dashboard" -#~ msgstr "Füge Dashboard hinzu" - -#~ msgid "Add widget" -#~ msgstr "Widget hinzufügen" - -#~ msgid "Next slide in" -#~ msgstr "Nächstes Dia in" - -#~ msgid "Update dashboard" -#~ msgstr "Dashboard aktualisieren" - -#~ msgid "Delete dashboard" -#~ msgstr "Dashboard löschen" - -#~ msgid "Succesful updated" -#~ msgstr "Erfolgreich aktualisiert." - -#~ msgid "Unsucessful updated" -#~ msgstr "Aktualisierung fehlgeschlagen." - -#~ msgid "Fields" -#~ msgstr "Felder" - -#~ msgid "Create visualmap" -#~ msgstr "Erzeuge visuelle Karte" - -#~ msgid "Screens" -#~ msgstr "Bildschirme" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "Der Benutzer ist keiner Gruppe mit EW-Profil." - -#~ msgid "Create networkmap" -#~ msgstr "Erzeuge Netzwerk-Karte" - -#~ msgid "Tactical View" -#~ msgstr "Taktische Ansicht" - -#~ msgid "More events" -#~ msgstr "Mehr Ereignisse" - -#~ msgid "Module description" -#~ msgstr "Modul-Beschreibung" - -#~ msgid "Web check" -#~ msgstr "Web-Check" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Kann nicht zur Pandora FMS Instanz verbinden" - -#~ msgid "Create module" -#~ msgstr "Modul erzeugen" - -#~ msgid "Click Create to continue" -#~ msgstr "Klicken Sie auf \"Erzeugen\" um fortzufahren." - -#~ msgid "Step by step wizard" -#~ msgstr "Schritt-für-Schritt-Wizard" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "" -#~ "Der Alarm, die Sie hinzufügen möchten, existiert bereits in der Liste." - -#~ msgid "Please, select a module" -#~ msgstr "Wählen Sie bitte ein Modul aus" - -#~ msgid "Edit module" -#~ msgstr "Modul bearbeiten" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Ungültige Buchstaben im Modulnamen gefunden." - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Bitte geben Sie eine gültige IP-Adresse an" - -#~ msgid "Edit agent" -#~ msgstr "Beauftragten bearbeiten" - -#~ msgid "Advanced configuration" -#~ msgstr "Erweiterte Konfiguration" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Ein anderer Beauftragter mit gleichem Namen existiert bereits." - -#~ msgid "Preview" -#~ msgstr "Vorschau" - -#~ msgid "Please, select an alert" -#~ msgstr "Bitte wählen Sie einen Alarm aus." - -#~ msgid "Please, select an agent" -#~ msgstr "Bitte wählen Sie einen Beauftragten aus." - -#~ msgid "String" -#~ msgstr "Zeichenkette (String)" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Bitte wählen Sie den Alarm, der verändert oder gelöscht werden soll." - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "" -#~ "Bitte wählen Sie das Modul, in welchem der Alarm erzeugt werden soll." - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "" -#~ "Bitte wählen Sie das Modul welches verändert oder gelöscht werden soll." - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "" -#~ "Bitte wählen Sie den Beauftragten, der verändert oder gelöscht werden soll." - -#~ msgid "Please, set an interval" -#~ msgstr "Bitte geben Sie ein Intervall an." - -#~ msgid "Create Module" -#~ msgstr "Erzeuge Modul" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "" -#~ "Bitte wählen Sie den Beauftragten, in dem das Modul erzeugt werden soll." - -#~ msgid "Please, set a name" -#~ msgstr "Bitte geben Sie einen Namen an." - -#~ msgid "Group View" -#~ msgstr "Gruppen-Ansicht" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Konnte nicht aktualisiert werden : Fehler in %s" - -#~ msgid "Groups synchronization" -#~ msgstr "Gruppen-Abgleich" - -#~ msgid "Alerts synchronization" -#~ msgstr "Alarm-Abgleich" - -#~ msgid "Components synchronization" -#~ msgstr "Komponenten-Abgleich" - -#~ msgid "Tags synchronization" -#~ msgstr "Etiketten-Abgleich" - -#~ msgid "Synchronizing" -#~ msgstr "Abgleichen" - -#~ msgid "Users synchronization" -#~ msgstr "Benutzer-Abgleich" - -#~ msgid "License Info" -#~ msgstr "Lizenzinformationen" - -#~ msgid "License info" -#~ msgstr "Lizenzinformationen" - -#~ msgid "Customize sections" -#~ msgstr "Sektionen anpassen" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Erzeugter Benutzer %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Fehler beim Erzeigen von Benutzer %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Aktualisierter Benutzer %s" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Fehler bei Benutzer-Aktualisierung %s" - -#~ msgid "Passwords" -#~ msgstr "Passwörter" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Ausgewählte Sektionen anstoßen, um sie zu deaktivieren" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Ausgewählte Sektionen anstoßen, um sie zu aktivieren" - -#~ msgid "Enabled sections" -#~ msgstr "Aktivierte Sektionen" - -#~ msgid "Disabled sections" -#~ msgstr "Deaktivierte Sektionen" - -#~ msgid "Copy profile" -#~ msgstr "Profil kopieren" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "" -#~ "Diese Checkbox abhaken, um die Original-Benutzerprofile zu aktualisieren." - -#~ msgid "Profile synchronization mode." -#~ msgstr "Profilabgleichs-Modus" - -#~ msgid "New profile" -#~ msgstr "Neues Profil" - -#~ msgid "This metaconsole" -#~ msgstr "Diese Meta-Konsole" - -#~ msgid "Profile mode" -#~ msgstr "Profil-Modus" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Die folgenden Elementegruppen / Profile / Benutzergruppen wurden erfolgreich " -#~ "erstellt / aktualisiert (%d/%d/%d)" - -#~ msgid "Sync" -#~ msgstr "Abgleichen" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Fehler bei Verbindung zu %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Fehler bei Erzeugen / Aktualisieren der folgenden Elementegruppen / Profile " -#~ "/ Benutzerprofile (%d/%d/%d)" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Fehler bei Erzeugung der %s Komponentengruppen " - -#~ msgid "Could not be delete" -#~ msgstr "Konnte nicht gelöscht werden." - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Erzeugte Komponentengruppen %s" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "" -#~ "Fehler bei Erzeugung / Aktualisierung der Netzwerk-Komponenten %s/%s " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Erzeugte / aktualisierte lokale Komponenten %s/%s" - -#~ msgid "Metaconsole elements" -#~ msgstr "Metakonsolen-Elemente" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Erzeugte / aktualisierte Netzwerk-Komponenten %s/%s" - -#~ msgid "Visual" -#~ msgstr "Visuell" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "Anzahl der für jede Instanz abgefragten Elemente in einigen Ansichten." - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Fehler bei Erzeugung der lokalen Komponenten %s/%s " - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Fehler beim Erzeugen / aktualisieren der Vorlagen %s/%s" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Komplettieren Sie bitte den Pfad zur Pandora-Konsole ohne das letzte \"/\" " -#~ "Zeichen. Beispiel : " - -#~ msgid "Only database" -#~ msgstr "Nur Datenbank" - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "Es gibt keine zur Meta-Konsole hinzugefügten Server." - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Fehler beim Erzeugen / Aktualisieren der %s/%s Kommandos." - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Fehler bei Erzeugung / Aktualisierung der Aktionen %s/%s" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "Erzeugte / aktualisierte Aktionen %s/%s" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Erzeugte / aktualisierte Vorlagen %s/%s" - -#~ msgid "Propagation" -#~ msgstr "Verbreitung" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Erzeigte / aktualisierte Kommandos %s/%s" - -#~ msgid "Consoles Setup" -#~ msgstr "Konsolen-Einrichtung" - -#~ msgid "Passwords setup" -#~ msgstr "Passwort-Einrichtung" - -#~ msgid "Please search for anything text." -#~ msgstr "Bitte suche nach allen Texten." - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Erzeugte / aktualisierte Etiketten %s/%s" - -#~ msgid "General setup" -#~ msgstr "Allgemeine Einrichtung" - -#~ msgid "Customize translation" -#~ msgstr "Übersetzung anpassen" - -#~ msgid "Translation in selected language" -#~ msgstr "Übersetzung in ausgewählter Sprache" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Fehler bei Erzeugung / Aktualisierung der Etiketten %s/%s" - -#~ msgid "Original string" -#~ msgstr "Original-Zeichenkette" - -#~ msgid "Strings translation" -#~ msgstr "Zeichenketten-Übersetzung" - -#~ msgid "Performance setup" -#~ msgstr "Leistungs-Einrichtung" - -#~ msgid "Consoles setup" -#~ msgstr "Konsolen-Einrichtung" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "IP-Server in der *.conf in die Quellen-Datenbank umgeleitet" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Erzeugte / aktualisierte Gruppen %s/%s" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "Beauftragten-Module in Zieldatenbank erzeugt." - -#~ msgid "Visual setup" -#~ msgstr "Visuelle Einrichtung" - -#~ msgid "created agent in destination DB" -#~ msgstr "Beauftragter in Zieldatenbank erzeugt." - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "Beauftragten-Alarme in Zieldatenbank erzeugt." - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "Erzeugte Alarm-Aktionen in Zieldatenbank" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Fehler bei Erzeugung / Aktualisierung der Gruppen %s/%s" - -#~ msgid "Add agents to destination server" -#~ msgstr "Dem Ziel-Server Beauftragte hinzufügen" - -#~ msgid "Move" -#~ msgstr "Verschieben" - -#~ msgid "Source Server" -#~ msgstr "Quell-Server" - -#~ msgid "Destination Server" -#~ msgstr "Ziel-Server" - -#~ msgid "Successfully moved" -#~ msgstr "Erfolgreich verschoben." - -#~ msgid "Could not be moved" -#~ msgstr "Konnte nicht verschoben werden." - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Metakonsolen-IP in der \"IP-Liste mit API-Zugriff\" nicht angegeben. Pandora-" -#~ "Konsole wird vermutet." - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Fehler bei Löschung der Regelmodule %s" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Erzeugte / aktualisierte %s/%s Regelwerk-Module" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Erzeugte Regeln %s" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Fehler bei Erzeugung der Regeln %s" - -#~ msgid "Policies apply" -#~ msgstr "Regeln anwenden" - -#~ msgid "Policies queue" -#~ msgstr "Regel-Warteschlange" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Gelöschte Regelsatz-Module %s" - -#~ msgid "Policy Manager" -#~ msgstr "Regelwerk-Manager" - -#~ msgid "Apply policies" -#~ msgstr "Regeln anwenden" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Erzeugte Regelwerk-Alarme %s" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Fehler bei Erzeugung der Regelwerk-Alarme %s" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Fehler bei Erzeugung / Aktualisierung der Regelwerk-Module %s/%s" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Für die bestmögliche Benutzererfahrung mit Pandora FMS empfehlen wir " -#~ "nachdrücklich die Benutzung von" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox oder " -#~ "Google Chrome Browsern." - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Fehler beim Löschen der Regelwerk-Alarme %s" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Gelöschte Regelwerk-Alarme %s" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Die Meta-Konsole benötigt eine vorherige Aktivierung einer regulären " -#~ "Konsole. Bitte kontaktieren Sie den Systemadministrator, wenn Sie Hilfe " -#~ "benötigen.
" - -#~ msgid "Network traffic" -#~ msgstr "Netzwerk-Traffic" - -#~ msgid "Monitors view" -#~ msgstr "Überwachungs-Ansicht" - -#~ msgid "Create new report" -#~ msgstr "Neuen Bericht erzeugen" - -#~ msgid "Alert management" -#~ msgstr "Alarm-Management" - -#~ msgid "Templates wizard" -#~ msgstr "Vorlagen-Wizard" - -#~ msgid "Report templates" -#~ msgstr "Berichts-Vorlage" - -#~ msgid "Agent management" -#~ msgstr "Beauftragten-Management" - -#~ msgid "Live view" -#~ msgstr "Live-Ansicht" - -#~ msgid "Category management" -#~ msgstr "Kategorie-Management" - -#~ msgid "Metasetup" -#~ msgstr "Meta-Einrichtung" - -#~ msgid "Tag management" -#~ msgstr "Etiketten-Management" - -#~ msgid "Policy management" -#~ msgstr "Regelwerks-Management" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Aktualisierung der Netzwerk-Karte fehlgeschlagen." - -#~ msgid "Agents movement" -#~ msgstr "Beauftragten-Bewegung" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Erfolgreiche Aktualisierung der Netzwerk-Karte." - -#~ msgid "Back to login" -#~ msgstr "Zurück zur Anmeldung" - -#~ msgid "Agent modules" -#~ msgstr "Beauftragten-Module" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Kann nicht zu Pandora %s verbinden, um Netzwerk-Karte zu erzeugen." - -#~ msgid "There is no group selected" -#~ msgstr "Es ist keine Gruppe auswählt worden." - -#~ msgid "Show modulegroup" -#~ msgstr "Zeige Modulgruppe" - -#~ msgid "Unnamed " -#~ msgstr "Unbenannt " - -#~ msgid "Show modules" -#~ msgstr "Zeige Module" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Zeige untergeordnete Meta-Konsole" - -#~ msgid "Filter by agents" -#~ msgstr "Nach Beauftragten filtern" - -#~ msgid "Filter by modules" -#~ msgstr "Nach Modulen filtern" - -#~ msgid "Undo changes" -#~ msgstr "Änderungen verwerfen" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Füge die ausgewählten Module zum Beauftragten hinzu" - -#~ msgid "String to check" -#~ msgstr "Zu überprüfende Zeichenkette" - -#~ msgid "Response" -#~ msgstr "Reaktion" - -#~ msgid "Delete check" -#~ msgstr "Überprüfung löschen" - -#~ msgid "Add check" -#~ msgstr "Überprüfung hinzufügen" - -#~ msgid "Check type" -#~ msgstr "Typ überprüfen" - -#~ msgid "Latency" -#~ msgstr "Latenz" - -#~ msgid "Various" -#~ msgstr "Verschiedenes" - -#~ msgid "Checks" -#~ msgstr "Überprüfungen" - -#~ msgid "Deleted modules" -#~ msgstr "Gelöschte Module" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Es gab ein Problem beim Erzeugen der Alarme, die Aktion wurde abgebrochen." - -#~ msgid "Thresholds" -#~ msgstr "Grenzwerte" - -#~ msgid "Web configuration" -#~ msgstr "Web-Konfiguration" - -#~ msgid "Alerts in module" -#~ msgstr "Alarme im Modul" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Fehler beim Hinzufügen von Modul %s" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Der Beauftragte %s konnte nicht erzeugt werden." - -#~ msgid "Agent successfully added" -#~ msgstr "Beauftragter erfolgreich hinzugefügt." - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "Module %s erzeugt." - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Der Beauftragte %s konnte nicht aktualisiert werden." - -#~ msgid "User synchronization" -#~ msgstr "Benutzer-Synchronisierung" - -#~ msgid "Successfully updated module." -#~ msgstr "Modul erfolgreich aktualisiert." - -#~ msgid "Manage agent modules" -#~ msgstr "Beauftragten-Module verwalten" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Fehler beim Aktualisieren des Moduls %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Module gelöscht." - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Beim Aktulaisieren der Alarme ist ein Fehler aufgetreten. Die Aktion wurde " -#~ "abgebrochen." - -#~ msgid "No admin user" -#~ msgstr "Kein Admin-Benutzer" - -#~ msgid "Customizable section" -#~ msgstr "Anpassbarer Abschnitt" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow deaktiviert benutzerdefinierte Liveansichts-Filter" - -#~ msgid "Tree View" -#~ msgstr "Baumansicht" - -#~ msgid "Delete alert" -#~ msgstr "Alarm löschen" - -#~ msgid "Go to Alert detail" -#~ msgstr "Zu dem Alarm-Details gehen" - -#~ msgid "Go to module detail" -#~ msgstr "Zum Modul-Detail gehen" - -#~ msgid "Create new alert" -#~ msgstr "Neuen Alarm erzeugen" - -#~ msgid "Go to agent detail" -#~ msgstr "Zu den Beauftragten-Details gehen" - -#~ msgid "Create new module" -#~ msgstr "Neues Modul erzeugen" - -#~ msgid "Group synchronization" -#~ msgstr "Gruppen-Synchronisierung" - -#~ msgid "Stand By" -#~ msgstr "Standby" - -#~ msgid "Start date" -#~ msgstr "Start-Datum" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Beim Laden des Etiketts ist ein Fehler aufgetreten." - -#~ msgid "Edit plugin" -#~ msgstr "Plugin anpassen" - -#~ msgid "Log viewer" -#~ msgstr "Log-Betrachter" - -#~ msgid "Plugin management" -#~ msgstr "Plugin-Management" - -#~ msgid "Create plugin" -#~ msgstr "Plugin erzeugen" - -#~ msgid "Copy Dashboard" -#~ msgstr "Dashboard kopieren" - -#~ msgid "Custom SQL" -#~ msgstr "Benutzerdefinierte SQL" - -#~ msgid "Network console" -#~ msgstr "Netzwerk-Konsole" - -#~ msgid "Could not be updated." -#~ msgstr "Konnte nicht aktualisiert werden." - -#~ msgid "Export this list to CSV" -#~ msgstr "Diese Liste nach CSV exportieren" - -#~ msgid "Success be updated." -#~ msgstr "Erfolg aktualisieren." - -#~ msgid "Policy: " -#~ msgstr "Regel : " - -#~ msgid "Service Map" -#~ msgstr "Dienste-Karte" - -#~ msgid "List of elements" -#~ msgstr "Liste der Elemente" - -#~ msgid "Error deleting service" -#~ msgstr "Fehler beim Löschen des Diensts." - -#~ msgid "Service deleted successfully" -#~ msgstr "Dienst erfolgreich gelöscht" - -#~ msgid "Last contact: " -#~ msgstr "Letzter Kontakt : " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Enterprise-Netzwerk-Karte" - -#~ msgid "Not found networkmap." -#~ msgstr "Netzwerk-Karte nicht gefunden." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Enterprise-Netzwerk-Karte - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Erfolgreich erzeugt." - -#~ msgid "Succesfully updated" -#~ msgstr "Erfolgreich aktualisiert." - -#~ msgid "Succesfully duplicate" -#~ msgstr "Erfolgreich dupliziert." - -#~ msgid "Could not be duplicated" -#~ msgstr "Konnte nicht dupliziert werden." - -#~ msgid "Status: " -#~ msgstr "Status : " - -#~ msgid "Data: " -#~ msgstr "Daten : " - -#~ msgid "Succesfully deleted" -#~ msgstr "Erfolgreich gelöscht." - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Diesem Beauftragten wurde keine Sammlung zugewiesen." - -#~ msgid "The networkmap has been generated already." -#~ msgstr "Die Netzwerk-Karte ist bereits erzeugt worden." - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Größe der Netzwerk-Karte (Breite x Höhe)" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "" -#~ "Dieses Aktion kann nicht rückgängig gemacht werden, da sie auf der Datenbank " -#~ "ausgeführt wird." - -#~ msgid "Resize the networkmap" -#~ msgstr "Größenanpassung der Netzwerk-Karte" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Aktualisiere Status der Netzwerk-Karte" - -#~ msgid "Method generation networkmap" -#~ msgstr "Erzeugungs-Methode der Netzwerk-Karte" - -#~ msgid "Descripttion" -#~ msgstr "Beschreibung" - -#~ msgid "Show Collection" -#~ msgstr "Zeige Sammlung" - -#~ msgid "Policy outdate" -#~ msgstr "Regelwerk überholt." - -#~ msgid "Toggle the collection table" -#~ msgstr "Zur Sammlungs-Tabelle umschalten" - -#~ msgid "Details of node:" -#~ msgstr "Details des Knotenpunkts :" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Dieser Beauftragte hat kein zugewiesenes Regelwerk." - -#~ msgid "Networkmap resized." -#~ msgstr "Größe der Netzwerk-Karte angepasst." - -#~ msgid "Error process map" -#~ msgstr "Fehler in Bearbeitungs-Karte" - -#~ msgid "Update networkmap" -#~ msgstr "Netzwerk-Karte aktualisieren" - -#~ msgid "Save networkmap" -#~ msgstr "Netzwerk-Karte speichern" - -#~ msgid "Relationship" -#~ msgstr "Beziehung" - -#~ msgid "Toggle the module table" -#~ msgstr "Zur Modul-Tabelle umschalten." - -#~ msgid "(Un-adopted)" -#~ msgstr "Nicht-adaptiert" - -#~ msgid "Show Modules" -#~ msgstr "Module zeigen" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(nicht-adaptiert) (nicht verlinkt)" - -#~ msgid "(Adopted)" -#~ msgstr "Adaptiert" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(adaptiert) (nicht verlinkt)" - -#~ msgid "Toggle the alert table" -#~ msgstr "Zur Alarm-Tabelle umschalten." - -#~ msgid "Show Alert" -#~ msgstr "Zeige Alarm" - -#~ msgid "Backup" -#~ msgstr "Backup" - -#~ msgid "Export to PDF" -#~ msgstr "Exportieren nach PDF" - -#~ msgid "Create backup" -#~ msgstr "Backup erstellen" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Pandora Datenbank-Backup Werkzeug" - -#~ msgid "Lost" -#~ msgstr "Verloren" - -#~ msgid "Backups list" -#~ msgstr "Backup-Liste" - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Fehler beim Hinzufügen des Moduls. Der Typ fehlt." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Hinzufügen von %s-Sammlung fehlgeschlagen." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "%s-Sammlung erfolgreich hinzugefügt." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Fehler bei Erzeugung des Beauftragten %s." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Beauftragter %s erfolgreich hinzugefügt." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "%s-Regel erfolgreich erzeugt." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Fehler bei Erzeigung der %s-Regel." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Fehler : Die Regel hat keinen Namen." - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "Fehler bei der Erzeugung der Regel %s. Der Name existiert bereits und es " -#~ "gibt im Augenblick keine freien Namen." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Achtung bei der Erzeugung der Regel %s. Der Name existiert und die Regel hat " -#~ "den Namen %s." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Fehler beim Hinzufügen des Alarms. Die Vorlage '%s' existiert nicht." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "%s-Modul erfolgreich hinzugefügt." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "" -#~ "Fehler beim Hinzufügen des Moduls. Fehler in der Etiketten-Komponente." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "'%s'-Alarm erfolgreich hinzugefügt." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Fehler beim Hinzufügen des %s-Moduls." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Fehler beim Hinzufügen des Alarms. Die Vorlage '%s' existiert nicht." - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "'%s'-Alarm erfolgreich hinzugefügt." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Fehler beim Hinzufügen des '%s'-Alarms." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Fehler beim Hinzufügen des Alarms. Die Aktion '%s' existiert nicht." - -#~ msgid "Yearly" -#~ msgstr "Jährlich" - -#~ msgid "Hourly" -#~ msgstr "Stündlich" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Dies ist ein automatisch erstellter Bericht." - -#~ msgid "Save custom report to disk" -#~ msgstr "Speichere benutzerdefinierten Bericht auf Festplatte" - -#~ msgid "Send custom report by email" -#~ msgstr "Sende benutzerdefinierten Bericht per E-Mail" - -#~ msgid "Not scheduled" -#~ msgstr "Nicht geplant" - -#~ msgid "Backup Pandora database" -#~ msgstr "Backup der Pandora-Datenbank durchführen" - -#~ msgid "Send to email" -#~ msgstr "Per E-Mail senden" - -#~ msgid "Save to disk into path" -#~ msgstr "Auf Festplatte speichern in Pfad" - -#~ msgid "Report to build" -#~ msgstr "Abzuliefernder Bericht" - -#~ msgid "Cron jobs" -#~ msgstr "CRON-Jobs" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Bitte antworten Sie nicht auf diese E-Mail." - -#~ msgid "Open the attached file to view it" -#~ msgstr "Die angehängte Datei zur Ansicht öffnen" - -#~ msgid "Cron extension is not running" -#~ msgstr "CRON-Erweiterung läuft nicht." - -#~ msgid "Edit job" -#~ msgstr "CRON-Job anpassen" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Pfad existiert nicht oder ist nicht beschreibbar." - -#~ msgid "Add new job" -#~ msgstr "Neuen CRON-Job hinzufügen" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Bitte fügen Sie die folgende Zeile in ihre crontab-Datei ein" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Diese Erweiterung ist auf eine korrekte Einrichtung von CRON, dem " -#~ "zeitbasierten Planungsdienst, angewiesen." - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "" -#~ "CRON-Erweiterung ist bis jetzt noch nicht gestartet worden oder ist schlecht " -#~ "konfiguriert." - -#~ msgid "Scheduled jobs" -#~ msgstr "Geplante Jobs" - -#~ msgid "Cron extension is running" -#~ msgstr "CRON-Erweiterung läuft." - -#~ msgid "Last execution" -#~ msgstr "Letzte Ausführung" - -#~ msgid "Task" -#~ msgstr "Task" - -#~ msgid "Scheduled" -#~ msgstr "Geplant" - -#~ msgid "First_execution" -#~ msgstr "Erste_Ausführung" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Es könnte sein, dass der Wert beim ersten Start noch nicht exakt der gleiche " -#~ "ist, weil die CRON-Konfiguration unterschiedlich ist." - -#~ msgid "Last run" -#~ msgstr "Letzter Start" - -#~ msgid "Force run" -#~ msgstr "Erzwungener Start" - -#~ msgid "Path" -#~ msgstr "Pfad" - -#~ msgid "Upload CSV file" -#~ msgstr "CSV-Datei hochladen" - -#~ msgid "Separator" -#~ msgstr "Trenner" - -#~ msgid "Wizard SLA" -#~ msgstr "SLA-Wizard" - -#~ msgid "File processed" -#~ msgstr "Datei verarbeitet" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "Die CSV-Datei muss die Felder in der folgenden Reihenfolge besitzen" - -#~ msgid "CSV format" -#~ msgstr "CSV-Format" - -#~ msgid "Translate string" -#~ msgstr "Zeichenkette übersetzen" - -#~ msgid "CSV import" -#~ msgstr "CSV-Import" - -#~ msgid "First execution" -#~ msgstr "Erste Ausführung" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Erzeugter Beauftragter %s" - -#~ msgid "Global" -#~ msgstr "Weltweit" - -#~ msgid "Generated" -#~ msgstr "Erzeugt" - -#~ msgid "Templates list" -#~ msgstr "Vorlagen-Liste" - -#~ msgid "Advance options" -#~ msgstr "Erweiterte Optionen" - -#~ msgid "Get PDF file" -#~ msgstr "PDF-Datei erhalten" - -#~ msgid "Templates Wizard" -#~ msgstr "Vorlagen-Wizard" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Beauftragten-Graph (%s) - %s" - -#~ msgid "Template editor" -#~ msgstr "Vorlagen-Editor" - -#~ msgid "% Wrong" -#~ msgstr "% Falsch" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "Report type" -#~ msgstr "Berichtstyp" - -#~ msgid "Simple Graph" -#~ msgstr "Einfacher Graph" - -#~ msgid "% Limit" -#~ msgstr "% Limit" - -#~ msgid "Uknown agents" -#~ msgstr "Unbekannte Beauftragte" - -#~ msgid "MIN Value" -#~ msgstr "Min. Wert" - -#~ msgid "MAX Value" -#~ msgstr "Max. Wert" - -#~ msgid "Last 8 hours events" -#~ msgstr "Ereignisse der letzten 8 Stunden" - -#~ msgid "Modules at normal status" -#~ msgstr "Module im Status 'Normal'" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Module im Status 'Kritisch' oder 'Warnung'" - -#~ msgid "Modules under" -#~ msgstr "Module unter" - -#~ msgid "Modules over or equal to" -#~ msgstr "Module größer oder gleich" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "Es gibt keine Module über oder gleich dem Wert %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "Es gibt keine Module unter %s" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "Es gibt keine Module im Status 'Normal'" - -#~ msgid "Crit:" -#~ msgstr "Krit :" - -#~ msgid "Warn:" -#~ msgstr "Warn :" - -#~ msgid "Serialized data " -#~ msgstr "Serialisierte Daten " - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "Es gibt keine Module, die diesen Kriterien entsprechen." - -#~ msgid "There are no data." -#~ msgstr "Es gibt keine Daten." - -#~ msgid "Ok:" -#~ msgstr "OK :" - -#~ msgid "Value:" -#~ msgstr "Wert :" - -#~ msgid "Square" -#~ msgstr "Rechteck" - -#~ msgid "Rhombus" -#~ msgstr "Raute" - -#~ msgid "Circle" -#~ msgstr "Kreis" - -#~ msgid "Color" -#~ msgstr "Farbe" - -#~ msgid "Network map linked" -#~ msgstr "Netzwerk-Karte verlinkt" - -#~ msgid "Shape" -#~ msgstr "Form" - -#~ msgid "Radius" -#~ msgstr "Radius" - -#~ msgid "Add fictional point" -#~ msgstr "Füge fiktiven Punkt hinzu" - -#~ msgid "Open Minimap" -#~ msgstr "Öffne Mini-Karte" - -#~ msgid "Show modules:" -#~ msgstr "Zeige Module :" - -#~ msgid "Copy of " -#~ msgstr "Kopie von " - -#~ msgid "Module alert" -#~ msgstr "Modul-Alarm" - -#~ msgid "Empty configuration" -#~ msgstr "Leere Konfiguration" - -#~ msgid "Empty OS" -#~ msgstr "Leere OS" - -#~ msgid "Lines" -#~ msgstr "Zeilen" - -#~ msgid "Metaconsole" -#~ msgstr "Meta-Konsole" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "Automatisierter Pandora FMS-Bericht für benutzerdefinierten Bericht" - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "Es sind keine Beauftragten / Module definiert." - -#~ msgid "There are no agents with modules." -#~ msgstr "Es gibt keine Beauftragten mit Modulen." - -#~ msgid "Last 8 hours" -#~ msgstr "Letzte 8 Stunden" - -#~ msgid "Modules less or equal to" -#~ msgstr "Module kleiner oder gleich zu" - -#~ msgid "Modules under those conditions" -#~ msgstr "Module in diesen Stadien" - -#~ msgid "There are no" -#~ msgstr "Es gibt keine" - -#~ msgid "Exception - Equal to" -#~ msgstr "Ausnahme - gleich zu" - -#~ msgid "Modules over" -#~ msgstr "Module über" - -#~ msgid "Modules detailed event" -#~ msgstr "Module, detailliertes Ereignis" - -#~ msgid "There are no alerts for this module." -#~ msgstr "Es gibt keine Alarme für dieses Modul." - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Module im Status 'Kritisch' oder 'Warnung'" - -#~ msgid "Modules equal to" -#~ msgstr "Module gleich zu" - -#~ msgid "Modules normal status" -#~ msgstr "Module im Status 'Normal'" - -#~ msgid "Modules not equal to" -#~ msgstr "Module ungleich zu" - -#~ msgid "Modules less" -#~ msgstr "Module kleiner" - -#~ msgid "There are no events for this module." -#~ msgstr "Es gibt keine Ereignisse für dieses Modul." - -#~ msgid "There are no events in group." -#~ msgstr "Es gibt keine Ereignisse in dieser Gruppe." - -#~ msgid "There are no Events." -#~ msgstr "Es gibt keine Ereignisse." - -#~ msgid "Inside limits" -#~ msgstr "Innerhalb der Limits" - -#~ msgid "Untitled" -#~ msgstr "Unbenannt" - -#~ msgid "CONTENTS" -#~ msgstr "INHALTE" - -#~ msgid "Report date: " -#~ msgstr "Berichts-Datum : " - -#~ msgid "Generated: " -#~ msgstr "Generiert : " - -#~ msgid "Agent:" -#~ msgstr "Beauftragter :" - -#~ msgid "Module:" -#~ msgstr "Module :" - -#~ msgid "On the edge" -#~ msgstr "Am Rande" - -#~ msgid "Restoring a backup" -#~ msgstr "Ein Backup wiederherstellen" - -#~ msgid "No description" -#~ msgstr "Keine Beschreibung" - -#~ msgid "There are no modules." -#~ msgstr "Es gibt keine Module." - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "Es ist eine komplizierte Aktion, die menschliche Eingriffe erfordert, um " -#~ "Systemversagen und Datenverlust zu verhindern." - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "Das Wiederherstellen eines Backups muss manuell geschehen." - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "" -#~ "Bitte folgen Sie diesen Anweisungen, um das ausgewählte Backup wieder " -#~ "herzustellen." - -#~ msgid "Period: " -#~ msgstr "Dauer : " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "Finde die Server-Konfigurationsdateien und ersetze folgende Zeilen" - -#~ msgid "and replace with" -#~ msgstr "und ersetze es mit" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Verändern Sie bitte die Server-Konfigurationen, um diese neue Datenbank zu " -#~ "verwenden." - -#~ msgid "Open configuration file" -#~ msgstr "Konfigurations-Datei öffnen" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Passen Sie bitte die Konsolen-Konfiguration an, um diese neue Datenbank zu " -#~ "verwenden." - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "" -#~ "Verbinden Sie sich mit der MySQL-Datenbank, indem Sie fogendes Kommando " -#~ "benutzen :" - -#~ msgid "Create a new database" -#~ msgstr "Erstelle eine neue Datenbank" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Öffnen Sie eine Konsole mit ROOT-Rechten am Ort " - -#~ msgid "Restore the backup" -#~ msgstr "Das Backup wiederherstellen" - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "" -#~ "Starten Sie die Server neu und melden Sie sich wieder in der Konsole an." - -#~ msgid "Into your destination database." -#~ msgstr "In die Ziel-Datenbank" - -#~ msgid "Run import command using the following command" -#~ msgstr "Führen Sie das Import-Kommando mithilfe des folgenden Kommandos aus." - -#~ msgid "Log collector" -#~ msgstr "Log-Sammler" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Fehler beim Verbinden mit angegebenem Host" - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "Mit Host verbunden, die Datenbank kann aber nicht gefunden werden." - -#~ msgid "Configuration report for group " -#~ msgstr "Konfigurations-Bericht für die Gruppe " - -#~ msgid "Database credentials not found" -#~ msgstr "Datenbank-Zeugnisse nicht gefunden." - -#~ msgid "Configuration report for agent " -#~ msgstr "Konfigurations-Bericht für den Beauftragten " - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "\"Übersetze Zeichenkette\"-Erweiterung kann auf dem Server nicht gefunden " -#~ "werden. Diese Erweiterung ist zwingend erforderlich und muss unbedingt auf " -#~ "der Meta-Konsole konfiguriert werden." - -#~ msgid "Get CSV file" -#~ msgstr "CSV-Datei erhalten" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Servername stimmt nicht überein. Überprüfen Sie den Servernamen des " -#~ "Knotenpunkts und konfigurieren Sie den gleichen Server in der Meta-" -#~ "Einrichtung." - -#~ msgid "Last event replication" -#~ msgstr "Letzte Ereignis-Replikation" - -#~ msgid "Tree view by tags" -#~ msgstr "Baumansicht nach Etiketten" - -#~ msgid "No changes found" -#~ msgstr "Keine Veränderungen gefunden" - -#~ msgid "Service does not exist." -#~ msgstr "Dienst existiert nicht." - -#~ msgid "Weight Unknown" -#~ msgstr "Gewicht unbekannt" - -#~ msgid "There are no service elements defined" -#~ msgstr "Es sind keine Dienst-Elemente definiert" - -#~ msgid "Weight Critical" -#~ msgstr "Gewicht kritisch" - -#~ msgid "Critical (Alert)" -#~ msgstr "Kritisch (Alarm)" - -#~ msgid "Unknow" -#~ msgstr "Unbekannt" - -#~ msgid "Weight Warning" -#~ msgstr "Gewichts-Warnung" - -#~ msgid "Weight Ok" -#~ msgstr "Gewicht OK" - -#~ msgid "Module pending to unlink" -#~ msgstr "Aufhebung der Modulverlinkung bevorstehend" - -#~ msgid "Delete service element" -#~ msgstr "Lösche Service-Element" - -#~ msgid "FAIL" -#~ msgstr "GESCHEITERT" - -#~ msgid "Policy linkation" -#~ msgstr "Regelwerk-Verlinkung" - -#~ msgid "Module pending to link" -#~ msgstr "Modulverlinkung bevorstehend" - -#~ msgid "Create a new policy map" -#~ msgstr "Erzeuge eine neue Regelwerks-Karte" - -#~ msgid "Unlink from policy" -#~ msgstr "Verlinkung vom Regelwerk aufheben" - -#~ msgid "Module linked" -#~ msgstr "Modul verlinkt" - -#~ msgid "Relink to policy" -#~ msgstr "Wieder zum regelwerk verlinken" - -#~ msgid "Module unlinked" -#~ msgstr "Modul-Verlinkung aufgehoben" - -#~ msgid " previous changes." -#~ msgstr " vorherige Änderungen." - -#~ msgid "Password must be different" -#~ msgstr "Passwort muss ein anderes sein." - -#~ msgid "Password too short" -#~ msgstr "Passwort zu kurz." - -#~ msgid "Change" -#~ msgstr "Wechseln" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "Benutzer wurde gesperrt. Bitte nochmal versuchen in " - -#~ msgid " minutes" -#~ msgstr " Minuten" - -#~ msgid "Password must be different from the " -#~ msgstr "Passwort darf nicht mit den vorherigen übereinstimmen " - -#~ msgid "You must change password" -#~ msgstr "Sie müssen das Passwort ändern." - -#~ msgid "CONFIRM: " -#~ msgstr "BESTÄTIGEN : " - -#~ msgid "NEW PASS: " -#~ msgstr "NEUES PASSWORT : " - -#~ msgid "Password empty" -#~ msgstr "Passwortzeile leer." - -#~ msgid "Password confirm does not match" -#~ msgstr "Passwortbestätigung stimmt nicht überein." - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Fehler bei Aktualisierung des Benutzerpassworts (keine Änderung ?)" - -#~ msgid "Password must contain symbols" -#~ msgstr "Passwort muss Symbole enthalten." - -#~ msgid "User pass successfully updated" -#~ msgstr "Benutzerpasswort erfolgreich aktualisiert." - -#~ msgid "Password must contain numbers" -#~ msgstr "Passwort muss Ziffern enthalten." - -#~ msgid "Form filter" -#~ msgstr "Form-Filter" - -#~ msgid "Plannified downtime" -#~ msgstr "Geplante Downzeit" - -#~ msgid "Average" -#~ msgstr "Durchschnitt" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Aus Sicherheitsgründen gibt es hier gewisse Kürzel und Worte, die Sie nicht " -#~ "verwenden dürfen." - -#~ msgid "Group configuration: " -#~ msgstr "Gruppen-Konfiguration : " - -#~ msgid " MODULES" -#~ msgstr " MODULE" - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Automatische Modul-Erzeugung für den Dienst %s" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Alarm für unbekannte Dienste existiert nicht." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Alarm für kritische Dienste existiert nicht." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Alarm-Warnungsdienst existiert nicht." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Alarm für kritische SLA-Dienste existiert nicht." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Beauftragter für Speicherung des Dienstes existiert nicht." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Modulspeicherung für SLA-Dienst existiert nicht." - -#~ msgid "Module store the service does not exist." -#~ msgstr "Modul für Speicherung der Dienste existiert nicht." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Beauftragter für Speicherung des SLA-Dienstes existiert nicht." - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Prüfe 'tagente_estado'-Tabelle" - -#~ msgid "Packets per agent" -#~ msgstr "Pakete pro Beauftragten" - -#~ msgid "Modules per agent" -#~ msgstr "Module pro Beauftragten" - -#~ msgid "Agent to store data" -#~ msgstr "Beauftragter zur Speicherung von Daten" - -#~ msgid "Error empty agent" -#~ msgstr "Fehler : Beauftragter ohne Inhalt." - -#~ msgid "To agent(s):" -#~ msgstr "Zu Beauftragten :" - -#~ msgid "No selected agents to copy" -#~ msgstr "Keine Beauftragten zum Kopieren ausgewählt." - -#~ msgid "First select an agent" -#~ msgstr "Bitte zuerst einen Beauftragten auswählen" - -#~ msgid "No source agent selected" -#~ msgstr "Kein Quell-Beauftragter ausgewählt." - -#~ msgid "Filter agent" -#~ msgstr "Beauftragten filtern" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Wählen Sie bitte die zu übereinstimmenden Module für das Erstellen eines " -#~ "Berichts für die Beauftragten." - -#~ msgid "Undo agents to template" -#~ msgstr "Beauftragte von der Vorlage entfernen" - -#~ msgid "Add agents to template" -#~ msgstr "Beauftragte zur Vorlage hinzufügen" - -#~ msgid "Create report per agent" -#~ msgstr "Bericht pro Beauftragten erstellen" - -#~ msgid "Agents available" -#~ msgstr "Verfügbare Beauftragte" - -#~ msgid "Agents to apply" -#~ msgstr "Beauftragte zum Übernehmen" - -#~ msgid "Delete all agents" -#~ msgstr "Alle Beauftragte löschen" - -#~ msgid "Create a graph for each agent" -#~ msgstr "Erstellen eines Diagramms für jeden Beauftragten." - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Dieser Beauftragte kann nicht von remote konfiguriert werden." - -#~ msgid "Agents in Policy" -#~ msgstr "Beauftragte im Regelwerk" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "" -#~ "Konnte nicht von der Liste der noch zur Löschung ausstehenden Beauftragten " -#~ "gelöscht werden." - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Erfolgreich zur Liste der zu löschenden Beauftragten hinzugefügt. Sie werden " -#~ "mir der nächsten Regelwerks-Anwendung gelöscht." - -#~ msgid "Delete agents from policy" -#~ msgstr "Beauftragte aus dem Regelwerk entfernen" - -#~ msgid "Add agents to policy" -#~ msgstr "Füge Beauftragte zum Regelwerk hinzu" - -#~ msgid "Delete pending agents" -#~ msgstr "Noch zur Löschung ausstehende Beauftragte" - -#~ msgid "Modules in policy agents" -#~ msgstr "Module im Regelwerk-Beauftragten" - -#~ msgid "There are no agents included in this group" -#~ msgstr "In dieser Gruppe gibt es keine Agenten." - -#~ msgid "Modules agents in policy" -#~ msgstr "Modul-Beauftragte im Regelwerk" - -#~ msgid "(Agent)" -#~ msgstr "(Beauftragter)" - -#~ msgid "disabled agent in source DB" -#~ msgstr "Deaktivierter Beauftragter in Quelldatenbank" - -#~ msgid "Agent successfully updated" -#~ msgstr "Beauftragter wurde aktualisiert." - -#~ msgid "Agent detailed event" -#~ msgstr "Detailliertes Ereignis Beauftragter" - -#~ msgid "Agents detailed event" -#~ msgstr "Detailliertes Ereignis Beauftragte" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Der Updatemanager sendet anonyme Informationen über die Benutzung von " -#~ "Pandora FMS (Anzahl der Agenten und der laufenden Module). Wenn Sie das " -#~ "unterbinden möchten, löschen Sie das Update Plugin oder die Adresse des " -#~ "Remoteservers im Plugin." - -#~ msgid "Active events history" -#~ msgstr "Verlauf der aktiven Ereignisse" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Anzahl der Tage, bis die Daten in die Verlaufs-Datenbank verschoben werden." - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Warnung: Wenn die Beauftragten-Position verändert wird, aktiviert der " -#~ "Beauftragte automatisch die Option 'Neue GIS-Daten ignorieren' !" - -#~ msgid "Agent configuration: " -#~ msgstr "Beauftragten-Konfiguration: " - -#~ msgid "Top N events by module." -#~ msgstr "Top N Anfragen nach Modul." - -#~ msgid "Top N Events by module." -#~ msgstr "Top N Anfragen nach Modul." - -#~ msgid "Please select one or more groups." -#~ msgstr "Bitte wählen SIe eine oder mehrere Gruppen aus." - -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." -#~ msgstr "" -#~ "Könnten Sie bitte zuerst die Widget-Daten eingeben, bevor Sie die Listen-" -#~ "Elemente angeben ?" - -#~ msgid "Show a top n of agents modules." -#~ msgstr "Zeige eine Top N von Beauftragten-Modulen." - -#~ msgid "Amount to show" -#~ msgstr "Zu zeigende Menge" - -#~ msgid "There is not data to show." -#~ msgstr "Es gibt keine Daten, die angezeigt werden könnten." - -#~ msgid "Top N events by agent." -#~ msgstr "Top N Ereignisse nach Beauftragtem." - -#~ msgid "Selection several modules" -#~ msgstr "Modulauswahl in Gruppen" - -#~ msgid "Regex for to filter modules" -#~ msgstr "Regulärer Ausdruck zum Filtern von Modulen" - -#~ msgid "avg" -#~ msgstr "Durchschn." - -#~ msgid "Selection module one by one" -#~ msgstr "Modulauswahl einzeln" - -#~ msgid "Unsuccessful added modules" -#~ msgstr "Nicht erfolgreich hinzugefügte Module" - -#~ msgid "Top N Events by agent." -#~ msgstr "Top N Ereignisse nach Beauftragtem." - -#~ msgid "Filter modules" -#~ msgstr "Module filtern" - -#~ msgid "Successful added modules" -#~ msgstr "Erfolgreich hinzugefügte Module" - -#~ msgid "Mask format" -#~ msgstr "Maskenformat" - -#~ msgid "Bit mask" -#~ msgstr "Bitmaske" - -#~ msgid "Net mask" -#~ msgstr "Netzmaske" - -#~ msgid " Inverse interval " -#~ msgstr " Invertierter Intervall " - -#~ msgid "Example:" -#~ msgstr "Beispiel:" - -#~ msgid "Str: " -#~ msgstr "Str: " - -#~ msgid "No associated actions" -#~ msgstr "Keine damit in Zusammenhang stehenden Aktionen" - -#~ msgid "Network wildcard" -#~ msgstr "Netzwerk-Maskenzeichen" - -#~ msgid "Network address" -#~ msgstr "Netzwerkadresse" - -#~ msgid "Incorrect mask format" -#~ msgstr "Falsches Maskenformat." - -#~ msgid "Network mask" -#~ msgstr "Netzwerkmaske" - -#~ msgid "Address field is empty" -#~ msgstr "Adressfeld ist leer." - -#~ msgid "Calculate" -#~ msgstr "Berechnen" - -#~ msgid "Mask field is empty" -#~ msgstr "Maskenfeld ist leer." - -#~ msgid "Incorrect address format" -#~ msgstr "Falsches Adressformat" - -#~ msgid "Mask" -#~ msgstr "Maske" - -#~ msgid "Broadcast address" -#~ msgstr "Broadcast-Adresse" - -#~ msgid "Last valid IP" -#~ msgstr "Letzte gültige IP" - -#~ msgid "Hosts/Net" -#~ msgstr "Hosts / Netze" - -#~ msgid "First valid IP" -#~ msgstr "Erste gültige IP" - -#~ msgid "Operating system" -#~ msgstr "Betriebssystem" - -#~ msgid "Edited" -#~ msgstr "Verändert" - -#~ msgid "Generate events" -#~ msgstr "Ereignisse generieren" - -#~ msgid "This agent has other IPs" -#~ msgstr "Dieser Beauftragte besitzt andere IPs." - -#~ msgid "Managed" -#~ msgstr "Verwaltet" - -#~ msgid "Alive" -#~ msgstr "Am leben" - -#~ msgid "For example: Central Data Center" -#~ msgstr "Zum Beispiel: Zentrales Datenzentrum" - -#~ msgid "Scan interval" -#~ msgstr "Scan-Intervall" - -#~ msgid "0 for manually scan" -#~ msgstr "'0' für manuellen Scan" - -#~ msgid "Successfully updated." -#~ msgstr "Erfolgreich aktualisiert." - -#~ msgid "Examples" -#~ msgstr "Beispiele" - -#~ msgid "Format: IP/Mask" -#~ msgstr "Format: IP / Maske" - -#~ msgid "Ping" -#~ msgstr "Ping" - -#~ msgid "Network not found" -#~ msgstr "Netzwerk nicht gefunden." - -#~ msgid "Ping to host" -#~ msgstr "Ping an Host" - -#~ msgid "Addresses view" -#~ msgstr "Adress-Ansicht" - -#~ msgid "Edit network" -#~ msgstr "Netzwerk editieren" - -#~ msgid "No networks found" -#~ msgstr "Keine Netzwerke gefunden." - -#~ msgid "IPs" -#~ msgstr "IPs" - -#~ msgid "Manage addresses" -#~ msgstr "Adressen verwalten" - -#~ msgid "Subnet" -#~ msgstr "Subnetz" - -#~ msgid "No addresses found on this network" -#~ msgstr "Keine Adressen in diesem Netzwerk gefunden." - -#~ msgid "Export to Excel" -#~ msgstr "In Excel-Format exportieren" - -#~ msgid "Delete network" -#~ msgstr "Netzwerk löschen" - -#~ msgid "Exact address match" -#~ msgstr "Exakte Adressübereinstimmung" - -#~ msgid "Big" -#~ msgstr "Groß" - -#~ msgid "Last check" -#~ msgstr "Letzte Überprüfung" - -#~ msgid "Tiny" -#~ msgstr "Winzig" - -#~ msgid "ASC" -#~ msgstr "Ansteigend" - -#~ msgid "DESC" -#~ msgstr "Absteigend" - -#~ msgid "Filter options" -#~ msgstr "Filteroptionen" - -#~ msgid "Edit address" -#~ msgstr "Adresse bearbeiten" - -#~ msgid "Show not alive hosts" -#~ msgstr "Zeige nicht erreichbare Hosts" - -#~ msgid "Show only managed addresses" -#~ msgstr "Zeige nur verwaltete Adressen" - -#~ msgid "Icons style" -#~ msgstr "Symbolstil" - -#~ msgid "Change to manual mode" -#~ msgstr "In den manuellen Modus wechseln" - -#~ msgid "This address will not be updated by the server" -#~ msgstr "Dieser Adresse wird nicht vom Server aktualisiert." - -#~ msgid "Disabled address" -#~ msgstr "Deaktivierte Adresse" - -#~ msgid "Change to automatic mode" -#~ msgstr "In den automatischen Modus wechseln" - -#~ msgid "Not alive" -#~ msgstr "Nicht am leben" - -#~ msgid "IPAM" -#~ msgstr "IPAM" - -#~ msgid "Subnetworks calculator" -#~ msgstr "Subnetz-Taschenrechner" - -#~ msgid "Add comments" -#~ msgstr "Kommentare hinzufügen" - -#~ msgid "Please, uncheck auto option to set manual agent." -#~ msgstr "" -#~ "Bitte die Option 'automatisch' deaktivieren, um den manuellen Modus für den " -#~ "Beauftragten einschalten zu können." - -#~ msgid "Update agent address" -#~ msgstr "Aktualisiere Beauftragten-Adresse" - -#~ msgid "Local module" -#~ msgstr "Lokales Modul" - -#~ msgid "" -#~ "Left in blank if you want to use default name: Template name - agents (num " -#~ "agents) - Date" -#~ msgstr "" -#~ "Bitte leer lassen, um den voreingestellten Namen zu verwenden. Vorlagenname -" -#~ " Beauftragte (Nummer) - Datum" - -#~ msgid "Service forced successfully" -#~ msgstr "Dienst erfolgreich erzwungen." - -#~ msgid "Error service forced" -#~ msgstr "Fehler bei Erzwingung des Diensts." - -#~ msgid "Successfully duplicate the module." -#~ msgstr "Modul erfolgreich dupliziert." - -#~ msgid "Remote/Local" -#~ msgstr "Lokal / Entfernt" - -#~ msgid "Send to emails (separated by comma)" -#~ msgstr "An Email-Adressen senden (durch Kommas getrennt)" - -#~ msgid "Set center" -#~ msgstr "Mittelpunkt setzen" - -#~ msgid "Show details" -#~ msgstr "Zeige Details" - -#~ msgid "Find" -#~ msgstr "Finden" - -#~ msgid "Satellite operations" -#~ msgstr "Satelliten-Operationen" - -#~ msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -#~ msgstr "" -#~ "Zeige nur die Aufgabe, die das Recon Skript \"SNMP L2 Recon\" enthält." - -#~ msgid "" -#~ "It is setted any recon task, the nodes get from the recontask IP mask " -#~ "instead from the group." -#~ msgstr "" -#~ "Wenn irgendein Recon Task konfiguriert wurde, erhalten die Knoten ihre IP " -#~ "von der Recon Task IP-Maske anstatt von der Gruppe." - -#~ msgid "Updated modules on database" -#~ msgstr "Aktualisierte Module in der Datenbank" - -#~ msgid "Filter module" -#~ msgstr "Filtermodul" - -#~ msgid "Massive Satellite modules edition" -#~ msgstr "Massive Stellitenmodul-Editierung" - -#~ msgid "Agent configuration files updated" -#~ msgstr "Beauftragten-Konfigurationsdateien aktualisiert." - -#~ msgid "Total IPs" -#~ msgstr "Gesamtzahl IPs" - -#~ msgid "Not managed" -#~ msgstr "Nicht verwaltet" - -#~ msgid "SLA Compliance per days" -#~ msgstr "SLA Einhaltung nach Tagen" - -#~ msgid "A -> Z" -#~ msgstr "A -> Z" - -#~ msgid "Z -> A" -#~ msgstr "Z -> A" - -#~ msgid "Newer -> Older" -#~ msgstr "Neuer -> Älter" - -#~ msgid "Older -> Newer" -#~ msgstr "Älter -> Neuer" - -#~ msgid "Day" -#~ msgstr "Tag" - -#~ msgid "Summary of SLA Fails" -#~ msgstr "Zusammenfassung fehlgeschlagener SLAs" - -#, php-format -#~ msgid "Edit node %s" -#~ msgstr "Editiere Knoten %s" - -#~ msgid "Holding Area" -#~ msgstr "Haltegebiet" - -#~ msgid "Refresh Holding area" -#~ msgstr "Haltegebiet aktualisieren" - -#~ msgid "Add node" -#~ msgstr "Knoten hinzufügen" - -#~ msgid "Set parent" -#~ msgstr "Als Elternelement festlegen" - -#~ msgid "Update fictional node" -#~ msgstr "Aktualisiere fiktiven Knoten" - -#~ msgid "Networkmap to link" -#~ msgstr "Netzwerk-Karte zum Verlinken" - -#~ msgid "name fictional node" -#~ msgstr "Benenne fiktiven Knoten" - -#~ msgid "Edit node" -#~ msgstr "Knoten editieren" - -#~ msgid "Node options" -#~ msgstr "Knoten-Optionen" - -#~ msgid "Set as children" -#~ msgstr "Als Kind-Element festlegen" - -#~ msgid "Node source" -#~ msgstr "Knoten-Quelle" - -#~ msgid "Add agent node (filter by group)" -#~ msgstr "Beauftragten-Knoten hinzufügen (nach Gruppe filtern)" - -#~ msgid "Add fictional node" -#~ msgstr "Fiktiven Knoten hinzufügen" - -#~ msgid "Relations" -#~ msgstr "Beziehungen" - -#~ msgid "Add agent node" -#~ msgstr "Beauftragten-Knoten hinzufügen" - -#~ msgid "Node target" -#~ msgstr "Knoten-Ziel" - -#~ msgid "There are not relations" -#~ msgstr "Es gibt keine Beziehungen." - -#~ msgid "Interface source" -#~ msgstr "Schnittstellen-Quelle" - -#~ msgid "Interface Target" -#~ msgstr "Schnittstellen-Ziel" - -#~ msgid "Source data" -#~ msgstr "Quelldaten" - -#~ msgid "Unsucessful get module inventory data." -#~ msgstr "Beschaffung der Modul-Bestandsdaten war nicht erfolgreich." - -#~ msgid "Source from recon task" -#~ msgstr "Quell des Recon-Tasks" - -#~ msgid "Block Mode" -#~ msgstr "Block-Modus" - -#~ msgid "CIDR IP mask" -#~ msgstr "CIDR IP Maske" - -#~ msgid "Source from CIDR IP mask" -#~ msgstr "Quelle der CIDR IP-Maske" - -#~ msgid "Start empty networkmap" -#~ msgstr "Beginne leere Netzwerk-Karte" - -#~ msgid "Client" -#~ msgstr "Klient" - -#, php-format -#~ msgid "There are %s updates, and the first to update is:" -#~ msgstr "Es gibt %s Aktualisierungen und die erste Aktualsierung ist :" - -#~ msgid "Version number:" -#~ msgstr "Versionsnummer :" - -#~ msgid "Trial" -#~ msgstr "Probeversion" - -#~ msgid "Diff view" -#~ msgstr "Unterschieds-Ansicht" - -#~ msgid "Hostname" -#~ msgstr "Rechnername" - -#~ msgid "DB Host" -#~ msgstr "Datenbankrechner" - -#~ msgid "The services list is empty" -#~ msgstr "Die Dienstliste ist leer" - -#~ msgid "Available" -#~ msgstr "Verfügbar" - -#~ msgid "Selected" -#~ msgstr "Ausgewählt" - -#~ msgid "Icon preview" -#~ msgstr "Symbolvorschau" - -#~ msgid "Mobile" -#~ msgstr "Mobil" - -#~ msgid "Send by email" -#~ msgstr "Per E-Mail senden" - -#~ msgid "Send by email " -#~ msgstr "Per E-Mail senden " - -#~ msgid "Reserved" -#~ msgstr "Reserviert" - -#~ msgid "Addresses" -#~ msgstr "Adressen" - -#~ msgid "Unreserved" -#~ msgstr "Nicht reserviert" - -#~ msgid "Next available IP" -#~ msgstr "Nächste verfügbare IP" - -#~ msgid "Reserved addresses" -#~ msgstr "Reservierte Adresse" - -#~ msgid "Not Reserved" -#~ msgstr "Nicht reserviert" - -#~ msgid "No services selected" -#~ msgstr "Keine Dienste ausgewählt" - -#~ msgid "This element should be deleted" -#~ msgstr "Dieses Element sollte gelöscht werden" - -#~ msgid "Nonexistent" -#~ msgstr "Nicht vorhanden" - -#, php-format -#~ msgid "Group \"%s\"" -#~ msgstr "Gruppe \"%s\"" - -#~ msgid "Order:" -#~ msgstr "Reihenfolge:" - -#~ msgid "Target group" -#~ msgstr "Zielgruppe" - -#~ msgid "Create template report wizard" -#~ msgstr "Vorlagenberichtsassistent erstellen" - -#~ msgid "Remove the services from the list" -#~ msgstr "Dienste aus der Liste entfernen" - -#~ msgid "Filter by" -#~ msgstr "Filtern nach" - -#~ msgid "Create Local Component" -#~ msgstr "Lokale Komponente erstellen" - -#~ msgid "Update Local Component" -#~ msgstr "Lokale Komponente aktualisieren" - -#~ msgid "Password policy" -#~ msgstr "Passwortrichtlinie" - -#~ msgid "SLA graph" -#~ msgstr "SLA-Graph" - -#~ msgid "The collection directory does not exist." -#~ msgstr "Das Sammlungsverzeichnis ist nicht vorhanden." - -#~ msgid "Invalid licence." -#~ msgstr "Ungültige Lizenz." - -#~ msgid "Contact:" -#~ msgstr "Kontakt:" - -#~ msgid "E-mail:" -#~ msgstr "E-Mail-Adresse:" - -#~ msgid "Please contact Artica at info@artica.es for a valid licence." -#~ msgstr "" -#~ "Bitte kontaktieren Sie Artica über info@artica.es für eine gültige Lizenz." - -#~ msgid "Request new licence" -#~ msgstr "Neue Lizenz anfordern" - -#~ msgid "Activate licence" -#~ msgstr "Lizenz aktivieren" - -#~ msgid "Your request key is:" -#~ msgstr "Ihr Anforderungsschlüssel ist:" - -#~ msgid "% Agents Unknown" -#~ msgstr "% Agenten unbekannt" - -#~ msgid "Group or Tag" -#~ msgstr "Gruppe oder Schlagwort" - -#~ msgid "ERROR:" -#~ msgstr "FEHLER:" - -#~ msgid "Summary by status" -#~ msgstr "Zusammenfassung nach Status" - -#~ msgid "Move Agents" -#~ msgstr "Agenten verschieben" - -#~ msgid "Report of events (last hour)" -#~ msgstr "Bericht der Ereignisse (letzte Stunde)" - -#~ msgid "Report of state" -#~ msgstr "Statusbericht" - -#~ msgid "Open for more details" -#~ msgstr "Für mehr Details öffnen" - -#~ msgid "Synchronizing Users" -#~ msgstr "Benutzer werden synchronisiert" - -#~ msgid "Apply Policies" -#~ msgstr "Richtlinien anwenden" - -#~ msgid "Filter by tag" -#~ msgstr "Nach Schlagwort filtern" - -#~ msgid "Networkmap list" -#~ msgstr "Netzwerkkartenliste" - -#~ msgid "Module successfully added." -#~ msgstr "Modul erfolgreich hinzugefügt." - -#~ msgid "Synchronizing Groups" -#~ msgstr "Gruppen werden synchronisiert" - -#~ msgid "Synchronizing Tags" -#~ msgstr "Schlagwörter werden synchronisiert" - -#~ msgid "Show the tree view" -#~ msgstr "Baumansicht anzeigen" - -#, php-format -#~ msgid "There is a error: %s" -#~ msgstr "Es gibt einen Fehler: %s" - -#~ msgid "Group already exists in destination DB" -#~ msgstr "Gruppe ist in Zieldatenbank bereits vorhanden" - -#~ msgid "Created group in destination DB" -#~ msgstr "Erstellte Gruppe in Zieldatenbank" - -#~ msgid "Group does not exist. Agent " -#~ msgstr "Gruppe ist nicht vorhanden. Agent " - -#~ msgid "Reserve this IP now" -#~ msgstr "Diese IP jetzt reservieren" - -#~ msgid "Manage this IP now" -#~ msgstr "Diese IP jetzt verwalten" - -#~ msgid "None of the services was added" -#~ msgstr "Keiner der Dienste wurde hinzugefügt." - -#~ msgid "Next available IP Address is:" -#~ msgstr "Nächste verfügbare IP-Adresse ist:" - -#, php-format -#~ msgid "%d services couldn't be added" -#~ msgstr "%d Dienste konnten nicht hinzugefügt werden" - -#~ msgid "Check ACL" -#~ msgstr "ACL überprüfen" - -#~ msgid "Assign next free IP" -#~ msgstr "Nächste freie IP zuweisen" - -#~ msgid "ID Report" -#~ msgstr "Berichtkennung" diff --git a/pandora_console/include/languages/el.mo b/pandora_console/include/languages/el.mo index d91d0c5e3b2ccebab27f6fdf282ecff114229d2c..8efe8a8735bed459c9ca44bdff5482008c1f8168 100644 GIT binary patch delta 46 zcmaDhneo|V#trY)c}#T;%yf+`6$~w`j3@tAzshc=YiyukXfpY_h8B~##b##B#|i*@ CX%7eh delta 46 zcmaDhneo|V#trY)d5m-ojCBo76%5U-3?~0pzshc^Yh Cy$<#O diff --git a/pandora_console/include/languages/el.po b/pandora_console/include/languages/el.po index 53263bcb59..83b6e859cd 100644 --- a/pandora_console/include/languages/el.po +++ b/pandora_console/include/languages/el.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-el\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2012-03-15 17:08+0000\n" +"PO-Revision-Date: 2015-06-29 18:38+0000\n" "Last-Translator: Minas Salapatas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: el\n" #: ../../godmode/groups/configure_group.php:68 @@ -20237,171 +20237,3 @@ msgstr "" #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "" - -#~ msgid "Id" -#~ msgstr "Ταυτότητα (ID)" - -#~ msgid "Settings" -#~ msgstr "Ρυθμίσεις" - -#~ msgid "Development" -#~ msgstr "Ανάπτυξη εφαρμογών" - -#~ msgid "preview" -#~ msgstr "Προεπισκόπηση" - -#~ msgid "Factor" -#~ msgstr "Συντελεστής" - -#~ msgid "Up" -#~ msgstr "Επάνω" - -#~ msgid "Master" -#~ msgstr "Πρωτεύων" - -#~ msgid "hour" -#~ msgstr "ώρα" - -#~ msgid "day" -#~ msgstr "ημέρα" - -#~ msgid "week" -#~ msgstr "εβδομάδα" - -#~ msgid "month" -#~ msgstr "μήνας" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "S" -#~ msgstr "Σ" - -#~ msgid "Info" -#~ msgstr "Πληροφορίες" - -#~ msgid "Load" -#~ msgstr "Φόρτος" - -#~ msgid "SNMP server" -#~ msgstr "Εξυπηρετητής SNMP" - -#~ msgid "Seconds" -#~ msgstr "Δευτερόλεπτα" - -#~ msgid "from" -#~ msgstr "από" - -#~ msgid " to " -#~ msgstr " με " - -#~ msgid "minute" -#~ msgstr "λεπτό" - -#~ msgid "Group name" -#~ msgstr "Όνομα ομάδας" - -#~ msgid "Last name" -#~ msgstr "Επώνυμο:" - -#~ msgid "First name" -#~ msgstr "Όνομα:" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d ώρα" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d εβδομάδες" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d εβδομάδα" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d ημέρα" - -#~ msgid "Autorefresh" -#~ msgstr "Αυτόματη ανανέωση" - -#~ msgid "No news articles at this moment" -#~ msgstr "Δεν υπάρχουν νέα άρθρα για την ώρα" - -#~ msgid "Your IP" -#~ msgstr "Η διευθυνση IP σας" - -#~ msgid "Users defined" -#~ msgstr "Καθορίστηκαν χρήστες" - -#~ msgid "Visual map wizard" -#~ msgstr "Βοηθός οπτικού χάρτη" - -#~ msgid "Image size (px)" -#~ msgstr "Μέγεθος εικόνας" - -#~ msgid "Image range (px)" -#~ msgstr "Εύρος εικόνας" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Υπήρξε πρόβλημα στην δημιουργία της αναφοράς" - -#~ msgid "Reporting successfully created" -#~ msgstr "Η αναφορά δημιουργήθηκε επιτυχώς" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Αυτο είναι το Σύστημα ηλεκτρονικής διαχείρησης για την Pandora FMS. Από εδώ " -#~ "μπορείτε να διαχειριστείτε τους πράκτορες, τις προειδοποιησεις και τα " -#~ "συμβάντα. Η συνεδρία είναι ενεργή όσο υπάρχει δραστηριότητα." - -#~ msgid "Alerts defined" -#~ msgstr "Ορίστηκαν οι προειδοποιήσεις" - -#~ msgid "Map builder" -#~ msgstr "Σχεδιαστής χάρτη" - -#~ msgid "No layout with this id found" -#~ msgstr "Δε βρέθηκε διάταξη με αυτή την ταυτότητα" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Παρουσιάστηκε πρόβλημα στη δημιουργία του SLA" - -#~ msgid "SLA was successfully created" -#~ msgstr "το SLA δημιουργήθηκε επιτυχώς" - -#~ msgid "SLA was successfully delete" -#~ msgstr "To SLA διαγράφθηκε επιτυχώς" - -#~ msgid "SLAs defined" -#~ msgstr "Τα SLAs δημιοργήθηκαν" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Παρουσιάστηκε πρόβλημα κατά τη διαγραφή του SLA" - -#~ msgid "Label color" -#~ msgstr "Χρώμα ετικέτας" - -#~ msgid "Older" -#~ msgstr "Παλαιότερο" - -#~ msgid "You are" -#~ msgstr "Είστε" - -#~ msgid "Monitors critical" -#~ msgstr "Κρίσιμες Παρακολουθήσεις" - -#~ msgid "Monitors normal" -#~ msgstr "κανονικές Οθόνες" - -#~ msgid "Monitors warning" -#~ msgstr "Οθόνες προειδοποίησης" - -#~ msgid "Monitors unknown" -#~ msgstr "Αγνωστες οθόνες" diff --git a/pandora_console/include/languages/en_GB.mo b/pandora_console/include/languages/en_GB.mo index 00c9c786b455961a814258ca4fe16d0c9c7b4ddc..4aeba6fa039dd084f1e7bde034f3b128aff2239b 100644 GIT binary patch delta 66421 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 O`tM%fBX2+(|NjAFaA-*Y diff --git a/pandora_console/include/languages/en_GB.po b/pandora_console/include/languages/en_GB.po index 94e8efba77..a48c889059 100644 --- a/pandora_console/include/languages/en_GB.po +++ b/pandora_console/include/languages/en_GB.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2015-03-27 14:57+0000\n" -"Last-Translator: Andi Chandler \n" +"PO-Revision-Date: 2015-06-29 18:40+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:02+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: \n" #: ../../godmode/groups/configure_group.php:68 @@ -9281,7 +9281,7 @@ msgstr "The module still store data but the alerts and events will be stop" #: ../../godmode/massive/massive_add_tags.php:43 msgid "No tags selected" -msgstr "" +msgstr "No tags selected" #: ../../godmode/reporting/visual_console_builder.php:148 msgid "Successfully update." @@ -20671,5126 +20671,3 @@ msgstr "Security error. Please contact your administrator." #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "File is missing in disk storage. Please contact the administrator." - -#~ msgid "Autorefresh" -#~ msgstr "Autorefresh" - -#~ msgid "minute" -#~ msgstr "minute" - -#~ msgid "hour" -#~ msgstr "hour" - -#~ msgid "Your IP" -#~ msgstr "Your IP" - -#~ msgid "No news articles at this moment" -#~ msgstr "No news articles at this moment" - -#~ msgid "Monitors critical" -#~ msgstr "Monitors critical" - -#~ msgid "Monitors warning" -#~ msgstr "Monitors warning" - -#~ msgid "Monitors normal" -#~ msgstr "Monitors normal" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitors unknown" - -#~ msgid "Alerts defined" -#~ msgstr "Alerts defined" - -#~ msgid "Users defined" -#~ msgstr "Users defined" - -#~ msgid "Visual map wizard" -#~ msgstr "Visual map wizard" - -#~ msgid "No layout with this id found" -#~ msgstr "No layout with this id found" - -#~ msgid "Map builder" -#~ msgstr "Map builder" - -#~ msgid "Image range (px)" -#~ msgstr "Image range (px)" - -#~ msgid "Image size (px)" -#~ msgstr "Image size (px)" - -#~ msgid "Reporting successfully created" -#~ msgstr "Reporting successfully created" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "There was a problem creating reporting" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA was successfully created" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "There was a problem creating SLA" - -#~ msgid "Module is not set" -#~ msgstr "Module is not set" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA was successfully delete" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "There was a problem deleting SLA" - -#~ msgid "Custom reporting builder" -#~ msgstr "Custom reporting builder" - -#~ msgid "SLAs defined" -#~ msgstr "SLAs defined" - -#~ msgid "SLA report construction" -#~ msgstr "SLA report construction" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Type at least two characters to search" - -#~ msgid "Report name is empty" -#~ msgstr "Report name is empty" - -#~ msgid "Add item to report" -#~ msgstr "Add item to report" - -#~ msgid "Reporting type" -#~ msgstr "Reporting type" - -#~ msgid "Custom graph name" -#~ msgstr "Custom graph name" - -#~ msgid "No items defined" -#~ msgstr "No items defined" - -#~ msgid "Label color" -#~ msgstr "Label colour" - -#~ msgid "Graph builder module list" -#~ msgstr "Graph builder module list" - -#~ msgid "Combined image render" -#~ msgstr "Combined image render" - -#~ msgid "Factor" -#~ msgstr "Factor" - -#~ msgid "Render now" -#~ msgstr "Render now" - -#~ msgid "day" -#~ msgstr "day" - -#~ msgid "Redraw" -#~ msgstr "Redraw" - -#~ msgid "Custom graph store" -#~ msgstr "Custom graph store" - -#~ msgid "Store" -#~ msgstr "Store" - -#~ msgid "Graphs management" -#~ msgstr "Graphs management" - -#~ msgid "General configuration" -#~ msgstr "General configuration" - -#~ msgid "Automatic update check" -#~ msgstr "Automatic update check" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "The list of IPs separate with carriage return." - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA period (seconds)" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compact CSS and JS into header" - -#~ msgid "Visual configuration" -#~ msgstr "Visual configuration" - -#~ msgid "Flash charts" -#~ msgstr "Flash charts" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#~ msgid "Deleting" -#~ msgstr "Deleting" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Created directory %s" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Current directory is not writable by HTTP Server" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "Please check that current directory has write rights for HTTP server" - -#~ msgid "Upload file" -#~ msgstr "Upload file" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" - -#~ msgid "Group name" -#~ msgstr "Group name" - -#~ msgid "First name" -#~ msgstr "First name" - -#~ msgid "Last name" -#~ msgstr "Last name" - -#~ msgid "Database sanity tool" -#~ msgstr "Database sanity tool" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Checking tagente_estado table" - -#~ msgid "Checking database consistency" -#~ msgstr "Checking database consistency" - -#~ msgid "Deleting non-init data" -#~ msgstr "Deleting non-init data" - -#~ msgid "Sanitize my database now" -#~ msgstr "Sanitise my database now" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Delete non-initialised modules now" - -#~ msgid "Modules per agent" -#~ msgstr "Modules per agent" - -#~ msgid "Packets per agent" -#~ msgstr "Packets per agent" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Press here to get database information as text" - -#~ msgid "Assigned modules" -#~ msgstr "Assigned modules" - -#~ msgid "Total data" -#~ msgstr "Total data" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Press here to get database information as a graph" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Purge task launched for agent" - -#~ msgid "Data older than" -#~ msgstr "Data older than" - -#~ msgid "Deleting records for module" -#~ msgstr "Deleting records for module" - -#~ msgid "Field 1" -#~ msgstr "Field 1" - -#~ msgid "Field 2" -#~ msgstr "Field 2" - -#~ msgid "Field 3" -#~ msgstr "Field 3" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "The alert would fire when the value matches " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "The alert would fire when the value doesn't match " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "The alert would fire when the value is " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "The alert would fire when the value is not " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "The alert would fire when the value is between " -#~ "and " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "The alert would fire when the value is not between and " - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "The alert would fire when the value is below " - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "The alert would fire when the value is above " - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "Correlated alerts" -#~ msgstr "Correlated alerts" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configure correlated alert" - -#~ msgid "Assigned actions" -#~ msgstr "Assigned actions" - -#~ msgid "Assigned to" -#~ msgstr "Assigned to" - -#~ msgid "Operator" -#~ msgstr "Operator" - -#~ msgid "Add condition" -#~ msgstr "Add condition" - -#~ msgid "No name was given" -#~ msgstr "No name was given" - -#~ msgid "No agent was given" -#~ msgstr "No agent was given" - -#~ msgid "No conditions were given" -#~ msgstr "No conditions were given" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "There was an error deleting the alerts, the operation has been cancelled" - -#~ msgid "Could not delete alerts" -#~ msgstr "Could not delete alerts" - -#~ msgid "Error adding module" -#~ msgstr "Error adding module" - -#~ msgid "Modules successfully added " -#~ msgstr "Modules successfully added " - -#~ msgid "Available templates" -#~ msgstr "Available templates" - -#~ msgid "Plugin parameters" -#~ msgstr "Plug-in parameters" - -#~ msgid "Configuration management" -#~ msgstr "Configuration management" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "There was an error deleting the agent, the operation has been cancelled" - -#~ msgid "Could not delete agent" -#~ msgstr "Could not delete agent" - -#~ msgid "Massive agent deletion" -#~ msgstr "Massive agent deletion" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Agent keepalive monitor" - -#~ msgid "There was a problem updating module" -#~ msgstr "There was a problem updating module" - -#~ msgid "There was a problem adding module" -#~ msgstr "There was a problem adding module" - -#~ msgid "Edit modules" -#~ msgstr "Edit modules" - -#~ msgid "Delete agents" -#~ msgstr "Delete agents" - -#~ msgid "Delete modules" -#~ msgstr "Delete modules" - -#~ msgid "Delete alerts" -#~ msgstr "Delete alerts" - -#~ msgid " seconds." -#~ msgstr " seconds." - -#~ msgid "Module assignment" -#~ msgstr "Module assignment" - -#~ msgid "Could not delete modules" -#~ msgstr "Could not delete modules" - -#~ msgid "Timestamp from" -#~ msgstr "Timestamp from" - -#~ msgid "Timestamp to" -#~ msgstr "Timestamp to" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Planned Downtime Form" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Planned Downtime present on system" - -#~ msgid "Data Copy" -#~ msgstr "Data Copy" - -#~ msgid "No selected agents to copy" -#~ msgstr "No selected agents to copy" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Making copy of configuration file for" - -#~ msgid "Remote configuration management" -#~ msgstr "Remote configuration management" - -#~ msgid "Source group" -#~ msgstr "Source group" - -#~ msgid "To agent(s):" -#~ msgstr "To agent(s):" - -#~ msgid "Replicate configuration" -#~ msgstr "Replicate configuration" - -#~ msgid "Duplicate config" -#~ msgstr "Duplicate config" - -#~ msgid "Manage modules" -#~ msgstr "Manage modules" - -#~ msgid "Correlation" -#~ msgstr "Correlation" - -#~ msgid "Manage SNMP console" -#~ msgstr "Manage SNMP console" - -#~ msgid "Report builder" -#~ msgstr "Report builder" - -#~ msgid "Manage profiles" -#~ msgstr "Manage profiles" - -#~ msgid "Manage plugins" -#~ msgstr "Manage plug-ins" - -#~ msgid "Export targets" -#~ msgstr "Export targets" - -#~ msgid "Network component" -#~ msgstr "Network component" - -#~ msgid "WMI component management" -#~ msgstr "WMI component management" - -#~ msgid "Module Interval" -#~ msgstr "Module Interval" - -#~ msgid "Minimum Data" -#~ msgstr "Minimum Data" - -#~ msgid "Maximum Data" -#~ msgstr "Maximum Data" - -#~ msgid "Plugin component" -#~ msgstr "Plug-in component" - -#~ msgid "Module component management" -#~ msgstr "Module component management" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Custom Value" -#~ msgstr "Custom Value" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Field #1 (Alias, name)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Field #2 (Single Line)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Field #3 (Full Text)" - -#~ msgid "Manage Database" -#~ msgstr "Manage Database" - -#~ msgid "Read incidents" -#~ msgstr "Read incidents" - -#~ msgid "Create incidents" -#~ msgstr "Create incidents" - -#~ msgid "Read agent information" -#~ msgstr "Read agent information" - -#~ msgid "Manage user rights" -#~ msgstr "Manage user rights" - -#~ msgid "Pandora system management" -#~ msgstr "Pandora system management" - -#~ msgid "Error updating export target" -#~ msgstr "Error updating export target" - -#~ msgid "Successfully updated export target" -#~ msgstr "Successfully updated export target" - -#~ msgid "Error deleting export target" -#~ msgstr "Error deleting export target" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Successfully deleted export target" - -#~ msgid "Error creating export target" -#~ msgstr "Error creating export target" - -#~ msgid "Successfully created export target" -#~ msgstr "Successfully created export target" - -#~ msgid "There are no export targets configured" -#~ msgstr "There are no export targets configured" - -#~ msgid "Preffix" -#~ msgstr "Preffix" - -#~ msgid "Transfer mode" -#~ msgstr "Transfer mode" - -#~ msgid "Master" -#~ msgstr "Master" - -#~ msgid "MD5 check" -#~ msgstr "MD5 check" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hour" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d hours" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d day" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d days" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d week" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d weeks" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d month" - -#~ msgid "Target directory" -#~ msgstr "Target directory" - -#~ msgid "Extra options" -#~ msgstr "Extra options" - -#~ msgid "IP address option" -#~ msgstr "IP address option" - -#~ msgid "Port option" -#~ msgstr "Port option" - -#~ msgid "User option" -#~ msgstr "User option" - -#~ msgid "Password option" -#~ msgstr "Password option" - -#~ msgid "month" -#~ msgstr "month" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "Event report" -#~ msgstr "Event report" - -#~ msgid "Alert report" -#~ msgstr "Alert report" - -#~ msgid "Up" -#~ msgstr "Up" - -#~ msgid "Sumatory" -#~ msgstr "Sumatory" - -#~ msgid "Agents in group" -#~ msgstr "Agents in group" - -#~ msgid "Agents detailed view" -#~ msgstr "Agents detailed view" - -#~ msgid "Agents detailed event" -#~ msgstr "Agents detailed event" - -#~ msgid "Only pending" -#~ msgstr "Only pending" - -#~ msgid "Global health" -#~ msgstr "Global health" - -#~ msgid "You don't have access" -#~ msgstr "You don't have access" - -#~ msgid "There are no agents included in this group" -#~ msgstr "There are no agents included in this group" - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "Go to alert overview" -#~ msgstr "Go to alert overview" - -#~ msgid "Last hour" -#~ msgstr "Last hour" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Last %s days" - -#~ msgid "Older" -#~ msgstr "Older" - -#~ msgid "Event not validated" -#~ msgstr "Event not validated" - -#~ msgid "SNMP server" -#~ msgstr "SNMP server" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "You don't have enough permission to access this resource" - -#~ msgid "Unmanaged error" -#~ msgstr "Unmanaged error" - -#~ msgid "General group report" -#~ msgstr "General group report" - -#~ msgid "Agent detailed event" -#~ msgstr "Agent detailed event" - -#~ msgid "Software agent data" -#~ msgstr "Software agent data" - -#~ msgid "Software agent monitor" -#~ msgstr "Software agent monitor" - -#~ msgid "Network agent data" -#~ msgstr "Network agent data" - -#~ msgid "Network agent monitor" -#~ msgstr "Network agent monitor" - -#~ msgid "Wrong module type" -#~ msgstr "Wrong module type" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "week" -#~ msgstr "week" - -#~ 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
P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "This extension makes registration of server plug-ins more easy. Here you can " -#~ "upload a server plug-in in Pandora FMS 3.x zipped format (.pspz). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS Server Plug-" -#~ "ins.

You can get more plug-ins in our P" -#~ "ublic Resource Library" - -#~ msgid "The colours meaning:" -#~ msgstr "The colours meaning:" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Green cell when the module group and agent have all modules in OK state." - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "Grey cell when the module group and agent don't have any modules." - -#~ msgid "Modules groups" -#~ msgstr "Modules groups" - -#~ msgid "Development" -#~ msgstr "Development" - -#~ msgid "Testing" -#~ msgstr "Testing" - -#~ msgid "Code / binary directory" -#~ msgstr "Code / binary directory" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Keygen file does not exists" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Keygen file is not executable" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plug-ins and new features (even full " -#~ "migrations tools for future versions) automatically." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plug-in setup." - -#~ msgid "Your system is up-to-date" -#~ msgstr "Your system is up-to-date" - -#~ msgid "Server connection failed" -#~ msgstr "Server connection failed" - -#~ msgid "Server authorization rejected" -#~ msgstr "Server authorisation rejected" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "There's a new update for Pandora FMS" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Overwrite local changes" -#~ msgstr "Overwrite local changes" - -#~ msgid "Your system version number is" -#~ msgstr "Your system version number is" - -#~ msgid "Settings" -#~ msgstr "Settings" - -#~ msgid "Update manager settings updated" -#~ msgstr "Update manager settings updated" - -#~ msgid "Update server host" -#~ msgstr "Update server host" - -#~ msgid "Update server path" -#~ msgstr "Update server path" - -#~ msgid "Update server port" -#~ msgstr "Update server port" - -#~ msgid "Binary input path" -#~ msgstr "Binary input path" - -#~ msgid "Keygen path" -#~ msgstr "Keygen path" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "There's a new update for Pandora" - -#~ msgid "More info" -#~ msgstr "More info" - -#~ msgid "Update manager settings" -#~ msgstr "Update manager settings" - -#~ msgid "System Events" -#~ msgstr "System Events" - -#~ msgid "Create incident from event" -#~ msgstr "Create incident from event" - -#~ msgid "Event graph by group" -#~ msgstr "Event graph by group" - -#~ msgid "User activity statistics" -#~ msgstr "User activity statistics" - -#~ msgid "Pandora users" -#~ msgstr "Pandora users" - -#~ msgid "-Select user-" -#~ msgstr "-Select user-" - -#~ msgid "-Select group-" -#~ msgstr "-Select group-" - -#~ msgid "Read message" -#~ msgstr "Read message" - -#~ msgid "Events generated -by module-" -#~ msgstr "Events generated -by module-" - -#~ msgid "Flag" -#~ msgstr "Flag" - -#~ msgid "Pandora agents" -#~ msgstr "Pandora agents" - -#~ msgid "Invalid method supplied" -#~ msgstr "Invalid method supplied" - -#~ msgid "None agent in this category" -#~ msgstr "None agent in this category" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Display of last data modules received by agent" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "This agent doesn't have any module" - -#~ msgid "int" -#~ msgstr "int" - -#~ msgid "Raw Data" -#~ msgstr "Raw Data" - -#~ msgid "Monitors not init" -#~ msgstr "Monitors not init" - -#~ msgid "Local modules rate" -#~ msgstr "Local modules rate" - -#~ msgid "Remote modules rate" -#~ msgstr "Remote modules rate" - -#~ msgid "Uninitialized modules" -#~ msgstr "Uninitialised modules" - -#~ msgid "Load" -#~ msgstr "Load" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "There are no servers configured in the database" - -#~ msgid "At least one monitor fails" -#~ msgstr "At least one monitor fails" - -#~ msgid "Alerts disabled" -#~ msgstr "Alerts disabled" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent without monitors" - -#~ msgid "Agent down" -#~ msgstr "Agent down" - -#~ msgid "SLA view" -#~ msgstr "SLA view" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "There are no modules to evaluate the S.L.A. from" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatic SLA for monitors" - -#~ msgid "Module Down" -#~ msgstr "Module Down" - -#~ msgid "Module Up" -#~ msgstr "Module Up" - -#~ msgid "User-defined SLA items" -#~ msgstr "User-defined SLA items" - -#~ msgid "Single alerts" -#~ msgstr "Single alerts" - -#~ msgid "No simple alerts found" -#~ msgstr "No simple alerts found" - -#~ msgid "Compound alerts" -#~ msgstr "Compound alerts" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "This agent doesn't have any active monitors" - -#~ msgid "secs." -#~ msgstr "secs." - -#~ msgid "View users" -#~ msgstr "View users" - -#~ msgid "Search value" -#~ msgstr "Search value" - -#~ msgid "No layouts found" -#~ msgstr "No layouts found" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "This server has no recon tasks assigned" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Modules running on this server / Total modules of this type" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Modules delayed / Max. Delay (sec)" - -#~ msgid "Map element editor" -#~ msgstr "Map element editor" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is kept open while activity exists." - -#~ msgid "Map element trash" -#~ msgstr "Map element trash" - -#~ msgid "Update layout successful" -#~ msgstr "Update layout successful" - -#~ msgid "Update layout failed" -#~ msgstr "Update layout failed" - -#~ msgid "Select an element to delete:" -#~ msgstr "Select an element to delete:" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Please, choose an image or type a name for the element." - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Drag an element here to edit the properties" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "No selected agent, please select any agent." - -#~ msgid "preview" -#~ msgstr "preview" - -#~ msgid "Update agent" -#~ msgstr "Update agent" - -#~ msgid "Event not validate" -#~ msgstr "Event not validate" - -#~ msgid "Event validate" -#~ msgstr "Event validate" - -#~ msgid "matches of the alert" -#~ msgstr "matches of the alert" - -#~ msgid "Deleting file" -#~ msgstr "Deleting file" - -#~ msgid "Pandora Setup" -#~ msgstr "Pandora Setup" - -#~ msgid "Group management" -#~ msgstr "Group management" - -#~ msgid "TCP port" -#~ msgstr "TCP port" - -#~ msgid "Agent general information" -#~ msgstr "Agent general information" - -#~ msgid "Modules normal" -#~ msgstr "Modules normal" - -#~ msgid "Modules critical" -#~ msgstr "Modules critical" - -#~ msgid "Modules warning" -#~ msgstr "Modules warning" - -#~ msgid "Agents down" -#~ msgstr "Agents down" - -#~ msgid "Configuration detail" -#~ msgstr "Configuration detail" - -#~ msgid "From the last" -#~ msgstr "From the last" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Due to security restrictions, there are some tokens or words you cannot use" - -#~ msgid "Illegal query" -#~ msgstr "Illegal query" - -#~ msgid "or" -#~ msgstr "or" - -#~ msgid "ALERTS FIRED" -#~ msgstr "ALERTS FIRED" - -#~ msgid "Group detailed event" -#~ msgstr "Group detailed event" - -#~ msgid "User defined graph" -#~ msgstr "User defined graph" - -#~ msgid "Decrease Weight" -#~ msgstr "Decrease Weight" - -#~ msgid "Increase Weight" -#~ msgstr "Increase Weight" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Module detailed event" -#~ msgstr "Module detailed event" - -#~ msgid "Config" -#~ msgstr "Config" - -#~ msgid "Create networkmap" -#~ msgstr "Create networkmap" - -#~ msgid "Modules over or equal to" -#~ msgstr "Modules over or equal to" - -#~ msgid "Modules under those conditions" -#~ msgstr "Modules under those conditions" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Modules at critial or warning status" - -#~ msgid "There are no" -#~ msgstr "There are no" - -#~ msgid "On the edge" -#~ msgstr "On the edge" - -#~ msgid "Inside limits" -#~ msgstr "Inside limits" - -#~ msgid "Last 8 hours" -#~ msgstr "Last 8 hours" - -#~ msgid "There was a problem loading alert" -#~ msgstr "A problem occurred while loading alerts" - -#~ msgid "Seconds" -#~ msgstr "Seconds" - -#~ msgid "3 hours" -#~ msgstr "3 hours" - -#~ msgid "4 days" -#~ msgstr "4 days" - -#~ msgid "Search text" -#~ msgstr "Search text" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Change between Green/Red status" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialised " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. These kind of bad modules could degrade Pandora FMS's performance. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity tool " -#~ "DOESN'T compact your database, only delete bad structured data." - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Pandora FMS Help System" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Pandora FMS Web Console" - -#~ msgid "Logged Out" -#~ msgstr "Logged Out" - -#~ msgid "You are" -#~ msgstr "You are" - -#~ msgid "Authentication Error" -#~ msgstr "Authentication Error" - -#~ msgid "General information" -#~ msgstr "General information" - -#~ msgid "Last Month" -#~ msgstr "Last Month" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Drag an element here to delete from the map" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. 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." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." - -#~ msgid "Two Months" -#~ msgstr "Two Months" - -#~ msgid "Six Months" -#~ msgstr "Six Months" - -#~ msgid "Max.Timeout" -#~ msgstr "Max.Timeout" - -#~ msgid "Network Server" -#~ msgstr "Network Server" - -#~ msgid "Recon Server" -#~ msgstr "Recon Server" - -#~ msgid "Data Server" -#~ msgstr "Data Server" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Successfully deleted export target" - -#~ msgid "export targets" -#~ msgstr "export targets" - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Successfully deleted recon task" - -#~ msgid "MD5 Check" -#~ msgstr "MD5 Check" - -#~ msgid "Network profile" -#~ msgstr "Network profile" - -#~ msgid "Transfer Mode" -#~ msgstr "Transfer Mode" - -#~ msgid "DB Maintenance" -#~ msgstr "DB Maintenance" - -#~ msgid "DB Information" -#~ msgstr "DB Information" - -#~ msgid "Read Agent Information" -#~ msgstr "Read Agent Information" - -#~ msgid "Manage Incidents" -#~ msgstr "Manage Incidents" - -#~ msgid "Create Incidents" -#~ msgstr "Create Incidents" - -#~ msgid "Read Incidents" -#~ msgstr "Read Incidents" - -#~ msgid "Link successfully deleted" -#~ msgstr "Link successfully deleted" - -#~ msgid "Link successfully created" -#~ msgstr "Link successfully created" - -#~ msgid "Profile successfully created" -#~ msgstr "Profile successfully created" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profile successfully deleted" - -#~ msgid "Link successfully updated" -#~ msgstr "Link successfully updated" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profile successfully updated" - -#~ msgid "Manage Agents" -#~ msgstr "Manage Agents" - -#~ msgid "Manage User Rights" -#~ msgstr "Manage User Rights" - -#~ msgid "Edit Alerts" -#~ msgstr "Edit Alerts" - -#~ msgid "Pandora System Management" -#~ msgstr "Pandora System Management" - -#~ msgid "Database Management" -#~ msgstr "Database Management" - -#~ msgid "Alerts Management" -#~ msgstr "Alerts Management" - -#~ msgid "Net. Templates" -#~ msgstr "Net. Templates" - -#~ msgid "Alert successfully created" -#~ msgstr "Alert successfully created" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alert successfully deleted" - -#~ msgid "There was a problem updating agent" -#~ msgstr "There was a problem updating agent" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alert successfully updated" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent successfully updated" - -#~ msgid "Module deleted successfully" -#~ msgstr "Module deleted successfully" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Available Agents" -#~ msgstr "Available Agents" - -#~ msgid "To Agent(s):" -#~ msgstr "To Agent(s):" - -#~ msgid "Configuration Management" -#~ msgstr "Configuration Management" - -#~ msgid "WMI Query" -#~ msgstr "WMI Query" - -#~ msgid "Upd" -#~ msgstr "Upd" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Status init unsuccessful" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Create a new prediction Server module" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Create a new WMI Server module" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Create a new plugin Server module" - -#~ msgid "Prediction Server" -#~ msgstr "Prediction Server" - -#~ msgid "WMI Server" -#~ msgstr "WMI Server" - -#~ msgid "Plugin Server" -#~ msgstr "Plugin Server" - -#~ msgid "Alert type" -#~ msgstr "Alert type" - -#~ msgid "User successfully deleted" -#~ msgstr "User successfully deleted" - -#~ msgid "Add Modules" -#~ msgstr "Add Modules" - -#~ msgid "NC.Group" -#~ msgstr "NC.Group" - -#~ msgid "Database Maintenance" -#~ msgstr "Database Maintenance" - -#~ msgid "Database Information" -#~ msgstr "Database Information" - -#~ msgid "Standard user" -#~ msgstr "Standard user" - -#~ msgid "Database Audit purge" -#~ msgstr "Database Audit purge" - -#~ msgid "Event Database cleanup" -#~ msgstr "Event Database cleanup" - -#~ msgid "Monitor down" -#~ msgstr "Monitor down" - -#~ msgid "Monitor up" -#~ msgstr "Monitor up" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "Times Fired" -#~ msgstr "Times Fired" - -#~ msgid "Alert Overview" -#~ msgstr "Alert Overview" - -#~ msgid "Alert trigger" -#~ msgstr "Alert trigger" - -#~ msgid "Network Map" -#~ msgstr "Network Map" - -#~ msgid "Pandora Agents" -#~ msgstr "Pandora Agents" - -#~ msgid "Validated event" -#~ msgstr "Validated event" - -#~ msgid "Full list of Monitors" -#~ msgstr "Full list of Monitors" - -#~ msgid "Free text" -#~ msgstr "Free text" - -#~ msgid "Thurdsday" -#~ msgstr "Thursday" - -#~ msgid "Data from agent " -#~ msgstr "Data from agent " - -#~ msgid "Database export results" -#~ msgstr "Database export results" - -#~ msgid "Hr" -#~ msgstr "Hr" - -#~ msgid "from" -#~ msgstr "from" - -#~ msgid "No module has been selected" -#~ msgstr "No module has been selected" - -#~ msgid "Download file" -#~ msgstr "Download file" - -#~ msgid " to " -#~ msgstr " to " - -#~ msgid " from " -#~ msgstr " from " - -#~ msgid "Begin date (*)" -#~ msgstr "Start date (*)" - -#~ msgid "End date (*)" -#~ msgstr "End date (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Standalone CSV ascii file" - -#~ msgid "Alerts Fired" -#~ msgstr "Alerts Fired" - -#~ msgid "Total Agents" -#~ msgstr "Total Agents" - -#~ msgid "Configuration report for agent " -#~ msgstr "Configuration report for agent " - -#~ msgid "Configuration report for group " -#~ msgstr "Configuration report for group " - -#~ msgid "Form filter" -#~ msgstr "Form filter" - -#~ msgid "Tree View" -#~ msgstr "Tree View" - -#~ msgid "Module macros" -#~ msgstr "Module macros" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." - -#~ msgid "SNMP operations" -#~ msgstr "SNMP operations" - -#~ msgid "Collections" -#~ msgstr "Collections" - -#~ msgid "Policies operations" -#~ msgstr "Policies operations" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" - -#~ msgid "Log Collector" -#~ msgstr "Log Collector" - -#~ msgid "Event alerts" -#~ msgstr "Event alerts" - -#~ msgid "Service created successfully" -#~ msgstr "Service created successfully" - -#~ msgid "Create Service" -#~ msgstr "Create Service" - -#~ msgid "Inventory modules" -#~ msgstr "Inventory modules" - -#~ msgid "Local components" -#~ msgstr "Local components" - -#~ msgid "Manage policies" -#~ msgstr "Manage policies" - -#~ msgid "Service updated successfully" -#~ msgstr "Service updated successfully" - -#~ msgid "Error creating service" -#~ msgstr "Error creating service" - -#~ msgid "Not found" -#~ msgstr "Not found" - -#~ msgid "Error updating service" -#~ msgstr "Error updating service" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "This values are by default because the service is auto calculate mode." - -#~ msgid "Config Service" -#~ msgstr "Config Service" - -#~ msgid "View Service" -#~ msgstr "View Service" - -#~ msgid "Service map" -#~ msgstr "Service map" - -#~ msgid "New Service" -#~ msgstr "New Service" - -#~ msgid "Error empty module" -#~ msgstr "Error empty module" - -#~ msgid "Edit service elements" -#~ msgstr "Edit service elements" - -#~ msgid "Agent to store data" -#~ msgstr "Agent to store data" - -#~ msgid "Warning Service alert" -#~ msgstr "Warning Service alert" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Please set limit between 0 to 100." - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA critical service alert" - -#~ msgid "S.L.A. interval" -#~ msgstr "S.L.A. interval" - -#~ msgid "S.L.A. limit" -#~ msgstr "S.L.A. limit" - -#~ msgid "Critical Service alert" -#~ msgstr "Critical Service alert" - -#~ msgid "Error creating service element" -#~ msgstr "Error creating service item" - -#~ msgid "Service element created successfully" -#~ msgstr "Service element created successfully" - -#~ msgid "Error empty service" -#~ msgstr "Error empty service" - -#~ msgid "Error empty agent" -#~ msgstr "Error empty agent" - -#~ msgid "Error deleting service element" -#~ msgstr "Error deleting service item" - -#~ msgid "Error updating service element" -#~ msgstr "Error updating service item" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Service item deleted successfully" - -#~ msgid "Service element updated successfully" -#~ msgstr "Service item updated successfully" - -#~ msgid "Edit element service" -#~ msgstr "Edit element service" - -#~ msgid "Create element service" -#~ msgstr "Create element service" - -#~ msgid "Extended info:" -#~ msgstr "Extended info:" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." - -#~ msgid "Show extended info" -#~ msgstr "Show extended info" - -#~ msgid "Security check is fail." -#~ msgstr "Security check failed" - -#~ msgid "Ok weight" -#~ msgstr "Ok weight" - -#~ msgid "Warning weight" -#~ msgstr "Warning weight" - -#~ msgid "Unknown weight" -#~ msgstr "Unknown weight" - -#~ msgid "First select an agent" -#~ msgstr "First select an agent" - -#~ msgid "Critical weight" -#~ msgstr "Critical weight" - -#~ msgid "Using local component" -#~ msgstr "Using local component" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "The changes on this field are linked with the configuration data." - -#~ msgid "Hide configuration data" -#~ msgstr "Hide configuration data" - -#~ msgid "Show configuration data" -#~ msgstr "Show configuration data" - -#~ msgid "Check" -#~ msgstr "Check" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Check the correct structure of the data configuration" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "First line must be \"module_begin\"" - -#~ msgid "Data configuration" -#~ msgstr "Data configuration" - -#~ msgid "Load basic" -#~ msgstr "Load basic" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Load a basic structure on data configuration" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Type is wrong. Please set a correct type" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plug-in deleted succesfully" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Plug-in cannot be deleted" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Error in the syntax, please check the data configuration." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "Data configuration are built correctly" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "There is a line with a unknown token 'token_fail'." - -#~ msgid "Data configuration is empty" -#~ msgstr "Data configuration is empty" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Last line must be \"module_end\"" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plug-in added succesfully" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Plug-in cannot be added" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plug-in disabled succesfully" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Plug-in cannot be disabled" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Plug-in cannot be enabled" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plug-in enabled succesfully" - -#~ msgid "New plug-in" -#~ msgstr "New plug-in" - -#~ msgid "Error adding inventory module" -#~ msgstr "Error adding inventory module" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Inventory module added successfully" - -#~ msgid "7 days" -#~ msgstr "7 days" - -#~ msgid "Update all" -#~ msgstr "Update all" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Successfully updated inventory module" - -#~ msgid "Error updating inventory module" -#~ msgstr "Error updating inventory module" - -#~ msgid "Inventory module error" -#~ msgstr "Inventory module error" - -#~ msgid "Target" -#~ msgstr "Target" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Error forcing inventory module" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Successfully forced inventory module" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Error deleting inventory module" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Successfully deleted inventory module" - -#~ msgid "Unable to create the collection" -#~ msgstr "Unable to create the collection" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Another collection with the same short name" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Unable to edit the collection, empty name." - -#~ msgid "Unable to edit the collection." -#~ msgstr "Unable to edit the collection." - -#~ msgid "Correct create collection" -#~ msgstr "Correct create collection" - -#~ msgid "Unable to create the collection." -#~ msgstr "Unable to create the collection." - -#~ msgid "Empty name" -#~ msgstr "Empty name" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Invalid characters in short name" - -#~ msgid "Synthetic average" -#~ msgstr "Synthetic average" - -#~ msgid "Group filter" -#~ msgstr "Group filter" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "Empty for default short name fc_X where X is the collection id." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Synthetic arithmetic" - -#~ msgid "Fixed value" -#~ msgstr "Fixed value" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "Short name must contain only alphanumeric characters, - or _ ." - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." - -#~ msgid "Short name:" -#~ msgstr "Short name:" - -#~ msgid "Recreate file" -#~ msgstr "Create file again" - -#~ msgid "Add module to operation as add" -#~ msgstr "Add module to operation as add" - -#~ msgid "Remove selected modules" -#~ msgstr "Remove selected modules" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Add module to operations as deduct" - -#~ msgid "Netflow filter" -#~ msgstr "Netflow filter" - -#~ msgid "Select Service" -#~ msgstr "Select Service" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Remove selected modules from operations stack" - -#~ msgid "Add module to average operation" -#~ msgstr "Add module to average operation" - -#~ msgid "Move up selected modules" -#~ msgstr "Move up selected modules" - -#~ msgid "Move down selected modules" -#~ msgstr "Move down selected modules" - -#~ msgid "Security check is ok." -#~ msgstr "Security check is ok." - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "Manager configuration > New" -#~ msgstr "Manager configuration > New" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Manager configuration > Edit " - -#~ msgid "Config Elements" -#~ msgstr "Config Elements" - -#~ msgid "Add module to operations as divide" -#~ msgstr "Add module to operations as divide" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Add module to operations as multiplicate " - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Error: The conf file of agent is not writable." - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Error: The conf file of agent is not readble." - -#~ msgid "Select filter" -#~ msgstr "Select filter" - -#~ msgid "No module was found" -#~ msgstr "No module was found" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Delete remote conf agent files in Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "This agent has no remote configuration, please set it." - -#~ msgid "Succesful add the collection" -#~ msgstr "Success in adding the collection." - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Adding the collection was unsuccessful." - -#~ msgid "Short Name" -#~ msgstr "Short Name" - -#~ msgid "Add module" -#~ msgstr "Add module" - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "Please save a new collection first before uploading files." - -#~ msgid "Show files" -#~ msgstr "Show files" - -#~ msgid "Outdate" -#~ msgstr "Outdated" - -#~ msgid "Create a new web Server module" -#~ msgstr "Create a new webserver module" - -#~ msgid "Correct update file." -#~ msgstr "Correct update file." - -#~ msgid "Compatibility mode" -#~ msgstr "Compatibility mode" - -#~ msgid "Back to file explorer" -#~ msgstr "Back to file explorer" - -#~ msgid "Files in " -#~ msgstr "Files in " - -#~ msgid "Incorrect update file." -#~ msgstr "Incorrect update file." - -#~ msgid "Error copying md5 file " -#~ msgstr "Error copying md5 file " - -#~ msgid "No source agent selected" -#~ msgstr "No source agent selected" - -#~ msgid "Copied " -#~ msgstr "Copied " - -#~ msgid " md5 file" -#~ msgstr " md5 file" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Load a basic structure on Web Checks" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Check the correct structure of the WebCheck" - -#~ msgid "Web server module" -#~ msgstr "Web server module" - -#~ msgid "Web checks" -#~ msgstr "Web Checks" - -#~ msgid "Error copying " -#~ msgstr "Error copying " - -#~ msgid " config file" -#~ msgstr " config file" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP auth (server)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP auth (pass)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "First line must be \"task_begin\"" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP auth (realm)" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Last line must be \"task_end\"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "Webchecks configuration is empty" - -#~ msgid "Proxy URL" -#~ msgstr "Proxy URL" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP auth (login)" - -#~ msgid "Requests" -#~ msgstr "Requests" - -#~ msgid "Agent browser id" -#~ msgstr "Agent browser id" - -#~ msgid "Can not create collection package." -#~ msgstr "Cannot create collection package." - -#~ msgid "Successful create collection package." -#~ msgstr "Successful in creating collection package." - -#~ msgid "Error: recreate file " -#~ msgstr "Error: recreate file " - -#~ msgid "Success: recreate file" -#~ msgstr "Success in recreating file" - -#~ msgid "Manager collection" -#~ msgstr "Manager collection" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Failure in creating the directory: %s" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Web checks are built correctly" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "File of collection is bigger than the limit (" - -#~ msgid "No files in collection" -#~ msgstr "No files in collection" - -#~ msgid "Collections Management" -#~ msgstr "Collections Management" - -#~ msgid "Apply changes" -#~ msgstr "Apply changes" - -#~ msgid "Re-Apply changes" -#~ msgstr "Reapply changes" - -#~ msgid "Delete collection" -#~ msgstr "Delete collection" - -#~ msgid "Are you sure to delete?" -#~ msgstr "Are you sure you want to delete ?" - -#~ msgid "Create template" -#~ msgstr "Create template" - -#~ msgid "List templates" -#~ msgstr "List templates" - -#~ msgid "Edit template" -#~ msgstr "Edit template" - -#~ msgid "SLA max value" -#~ msgstr "SLA max value" - -#~ msgid "SLA min value" -#~ msgstr "SLA min value" - -#~ msgid "Elements to apply" -#~ msgstr "Elements to apply" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA limit %" - -#~ msgid "SLA max Value" -#~ msgstr "SLA max value" - -#~ msgid "Graph template editor" -#~ msgstr "Graph template editor" - -#~ msgid "Exact match" -#~ msgstr "Exact match" - -#~ msgid "SLA min Value" -#~ msgstr "SLA min value" - -#~ msgid "Sum" -#~ msgstr "Sum" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA limit value" - -#~ msgid "Graph template management" -#~ msgstr "Graph template management" - -#~ msgid "There are no defined graph templates" -#~ msgstr "There are no defined graph templates" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Cleanup sucessful." - -#~ msgid "Cleanup error" -#~ msgstr "Cleanup error" - -#~ msgid "Wizard template" -#~ msgstr "Wizard template" - -#~ msgid "Agents available" -#~ msgstr "Agents available" - -#~ msgid "Undo agents to template" -#~ msgstr "Undo agents to template" - -#~ msgid "Add agents to template" -#~ msgstr "Add agents to template" - -#~ msgid "Please set template distinct than " -#~ msgstr "Please set template distinct from " - -#~ msgid "Apply template" -#~ msgstr "Apply template" - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "This will delete all reports created in previous template applications. Do " -#~ "you want to continue ?" - -#~ msgid "Clean up template" -#~ msgstr "Clean up template" - -#~ msgid "Filter agent" -#~ msgstr "Filter agent" - -#~ msgid "Select all" -#~ msgstr "Select all" - -#~ msgid "Agents to apply" -#~ msgstr "Agents to apply" - -#~ msgid "Successfully operation" -#~ msgstr "Operation successful." - -#~ msgid ": Edit: " -#~ msgstr "Edit : " - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Custom MySQL template builder" - -#~ msgid ": Create new custom" -#~ msgstr "Create new custom :" - -#~ msgid "Create custom SQL" -#~ msgstr "Create custom SQL" - -#~ msgid "Could not be applied" -#~ msgstr "Could not be applied." - -#~ msgid "reports" -#~ msgstr "Reports" - -#~ msgid "items" -#~ msgstr "Items" - -#~ msgid "Sucessfully applied" -#~ msgstr "Sucessfully applied." - -#~ msgid "Query SQL" -#~ msgstr "SQL query" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "Check if you want to literally match module name." - -#~ msgid "Module exact match" -#~ msgstr "Module exact match" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Case insensitive regular expression or string for module name, e.g. if you " -#~ "use this field with \"Module exact match\" enabled then this field has to be " -#~ "filled out with the literal string of the module name, if not you can use a " -#~ "regular expression, e.g. *usage.* will match: cpu_usage, vram usage in " -#~ "machine 1." - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Case insensitive regular expression for agent name, e.g. Network.* will " -#~ "match with the following agent names : network_agent1, NetworK CHECKS" - -#~ msgid "Create report per agent" -#~ msgstr "Create report per agent" - -#~ msgid "Modules to match" -#~ msgstr "Modules to match" - -#~ msgid "SQL preview" -#~ msgstr "SQL preview" - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Please save the SLA template before starting to add items to this list." - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Modules to match (Free text)" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Free text to filter the modules of agents when applying this template." - -#~ msgid "" -#~ "If it is checked, the regexp or name of modules match only each to each to " -#~ "agent, instead create a big graph with all modules from all agents." -#~ msgstr "" -#~ "If this is checked, the regexp or name of modules match only once to each " -#~ "agent, instead of creating a big graph with all modules from all agents." - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "Select the modules to match when creating a report for agents." - -#~ msgid "Not literally" -#~ msgstr "Not literally" - -#~ msgid "Template updated successfully" -#~ msgstr "Template updated successfully." - -#~ msgid "Error updating template" -#~ msgstr "Error updating template" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "Please save the template to start adding items to the list." - -#~ msgid "Policy updated" -#~ msgstr "Policy updated." - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "All policy agents added to delete queue." - -#~ msgid "Policies Management" -#~ msgstr "Policies Management" - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "Policy agents cannot be added to the delete queue." - -#~ msgid "Delete all agents" -#~ msgstr "Delete all agents" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "All the policy agents will be deleted." - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "A policy with agents cannot be deleted. Please purge it first." - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "If you change this description, you must change to the text of Data " -#~ "configuration." - -#~ msgid "Pending update policy" -#~ msgstr "Pending update policy" - -#~ msgid "Deleting all policy agents" -#~ msgstr "Deleting all policy agents" - -#~ msgid "Pending update policy only database" -#~ msgstr "Pending update policy only database" - -#~ msgid "Linking" -#~ msgstr "Linking" - -#~ msgid "Queue" -#~ msgstr "Queue" - -#~ msgid "External alerts" -#~ msgstr "External alerts" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Reverting deletion successful." - -#~ msgid "Could not be added module." -#~ msgstr "Module could not be added." - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "The module type in Data configuration is empty, take it from the combo box " -#~ "of form." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "The module name in Data configuration is empty, take it from the text field " -#~ "of form." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "Module(s) could not be added. You must select a policy first." - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Successfully added module(s) (%s/%s) to policy %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "module(s) could not be added (%s/%s) to policy %s." - -#~ msgid "Successfully added module." -#~ msgstr "Module successfully added." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Successfully added to modules pending for deletion. They will be deleted in " -#~ "the next policy application." - -#~ msgid "Could not be reverted" -#~ msgstr "Could not be reverted." - -#~ msgid "Local component" -#~ msgstr "Local component" - -#~ msgid "Undo deletion" -#~ msgstr "Undo deletion" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Copy selected modules to policy : " - -#~ msgid "Variable" -#~ msgstr "Variable" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Could not be added to the delete queue." - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Successfully added to delete queue." - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Successfully added to agents pending for deletion. They will be deleted in " -#~ "the next policy application." - -#~ msgid "Please select any module to copy" -#~ msgstr "Please select any module to copy" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Are you sure to copy modules into policy ? \\n" - -#~ msgid "Agents in Policy" -#~ msgstr "Agents in Policy" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "Could not be deleted from agents pending deletion" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Successfully deleted from agents pending deletion." - -#~ msgid "Delete agents from policy" -#~ msgstr "Delete agents from policy" - -#~ msgid "Add agents to policy" -#~ msgstr "Add agents to policy" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Unlinked modules" -#~ msgstr "Unlinked modules" - -#~ msgid "Applied" -#~ msgstr "Applied" - -#~ msgid "Not applied" -#~ msgstr "Not applied" - -#~ msgid "Add to apply queue" -#~ msgstr "Add to apply queue" - -#~ msgid "Applying policy" -#~ msgstr "Applying policy" - -#~ msgid "Need apply" -#~ msgstr "Need apply" - -#~ msgid "Deleting from policy" -#~ msgstr "Deleting from policy" - -#~ msgid "Policy applied" -#~ msgstr "Policy applied" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Successfully added to deletion of the collection. It will be deleted in the " -#~ "next policy application." - -#~ msgid "Add to delete queue" -#~ msgstr "Add to delete queue" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "This agent can not be remotely configured." - -#~ msgid "Last application" -#~ msgstr "Last application" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Successfully added to alerts pending deletion. It will be deleted in the " -#~ "next policy application." - -#~ msgid "Created successfuly" -#~ msgstr "Successfully created" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Action successfully deleted" - -#~ msgid "Added action successfuly" -#~ msgstr "Action successfully added" - -#~ msgid "Policy module" -#~ msgstr "Policy module" - -#~ msgid "Module is not selected" -#~ msgstr "Module is not selected" - -#~ msgid "Select inventory module" -#~ msgstr "Select inventory module" - -#~ msgid "Linking modules" -#~ msgstr "Linking modules" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Operation successfully deleted from the queue." - -#~ msgid "Free text for filter" -#~ msgstr "Free text for filter" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "Operation cannot be deleted from the queue." - -#~ msgid "Add policy" -#~ msgstr "Add policy" - -#~ msgid "List of modules unlinked" -#~ msgstr "List of unlinked modules" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Operations successfully deleted from the queue." - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Error : Update linking modules to policy" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Success : Update linking modules to policy" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Free text for filter (*)" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Add to apply queue only for database" - -#~ msgid "Unlink pending modules" -#~ msgstr "Unlink pending modules" - -#~ msgid "Link pending modules" -#~ msgstr "Link pending modules" - -#~ msgid "Update pending agents" -#~ msgstr "Update pending agents" - -#~ msgid "Update pending" -#~ msgstr "Update pending" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Operations cannot be deleted from the queue." - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Will be unlinked in the next policy application." - -#~ msgid "Delete pending" -#~ msgstr "Delete pending" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Will be linked in the next policy application" - -#~ msgid "Delete pending agents" -#~ msgstr "Delete pending agents" - -#~ msgid "This operation could take a long time" -#~ msgstr "This operation could take a long time." - -#~ msgid "Delete pending plugins" -#~ msgstr "Delete pending plugins" - -#~ msgid "Delete pending file collections" -#~ msgstr "Delete pending file collections" - -#~ msgid "Queue summary" -#~ msgstr "Queue summary" - -#~ msgid "Advices" -#~ msgstr "Advices" - -#~ msgid "Delete pending modules" -#~ msgstr "Delete pending modules" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Delete pending inventory modules" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Will be deleted in the next policy application" - -#~ msgid "Delete pending alerts" -#~ msgstr "Delete pending alerts" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Delete pending external alerts" - -#~ msgid "Apply (only database)" -#~ msgstr "Apply (only database)" - -#~ msgid "Finished" -#~ msgstr "Finished" - -#~ msgid "Delete from queue" -#~ msgstr "Delete from queue" - -#~ msgid "Empty queue" -#~ msgstr "Empty queue" - -#~ msgid "Delete all" -#~ msgstr "Delete all" - -#~ msgid "Apply (database and files)" -#~ msgstr "Apply (database and files)" - -#~ msgid "Complete" -#~ msgstr "Complete" - -#~ msgid "Queue filter" -#~ msgstr "Queue filter" - -#~ msgid "Incomplete" -#~ msgstr "Incomplete" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Duplicated or incompatible operation in the queue" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Successfully added to plugins pending deletion. It will be deleted in the " -#~ "next policy application." - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Operation successfully added to the queue" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "Operation cannot be added to the queue" - -#~ msgid "Alert Template" -#~ msgstr "Alert Template" - -#~ msgid "Modules in policy agents" -#~ msgstr "Modules in policy agents" - -#~ msgid "Duplicated alert" -#~ msgstr "Duplicated alert" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Cannot be added to plugins pending deletion." - -#~ msgid "Error processing action" -#~ msgstr "Error processing action" - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Error validating alert(s)" -#~ msgstr "Error validating alert(s)" - -#~ msgid "Builder event alert" -#~ msgstr "Builder event alert" - -#~ msgid "List event alerts" -#~ msgstr "List event alerts" - -#~ msgid "View associated rules" -#~ msgstr "View associated rules" - -#~ msgid "Move down" -#~ msgstr "Move down" - -#~ msgid "Move up" -#~ msgstr "Move up" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "List event rules" -#~ msgstr "List event rules" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Rule evaluation mode" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Could not be created, please fill alert name." - -#~ msgid "Please Read" -#~ msgstr "Please read" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." - -#~ msgid "Group by" -#~ msgstr "Group by" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "This field will be processed with regexp" - -#~ msgid "User comment" -#~ msgstr "User comment" - -#~ msgid "Configure event rule" -#~ msgstr "Configure event rule" - -#~ msgid "Configure event alert" -#~ msgstr "Configure event alert" - -#~ msgid "Window" -#~ msgstr "Window" - -#~ msgid "Event rules" -#~ msgstr "Event rules" - -#~ msgid "Error creating rule" -#~ msgstr "Error creating rule" - -#~ msgid "Error updating rule" -#~ msgstr "Error updating rule" - -#~ msgid "Successfully updating rule" -#~ msgstr "Successfully updating rule" - -#~ msgid "Successfully created rule" -#~ msgstr "Successfully created rule" - -#~ msgid "Update operators" -#~ msgstr "Update operators" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Updating rule operators successful." - -#~ msgid "Error updating rule operators" -#~ msgstr "Error updating rule operators" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Logic expression for these rules:" - -#~ msgid "(Agent)" -#~ msgstr "(Agent)" - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Successfully updated alerts (%s / %s)" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Updating of alerts unsuccessful (%s / %s)." - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "Failure in removing the alerts for these modules, please check." - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Massive alerts policy addition" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Removal of the alerts successful." - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "SNMP alerts to be deleted" - -#~ msgid "Success: create the alerts." -#~ msgstr "Creating of the alerts successful." - -#~ msgid "Modules agents in policy" -#~ msgstr "Module agents in policy" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Failure in creating the alerts for these modules, please check." - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "SNMP Alerts to be edited" - -#~ msgid "Custom OID" -#~ msgstr "Custom OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Error parsing MIB" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Massive alert SNMP deletion" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Massive alert SNMP edition" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Massive alerts policy deletion" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Error in updating trap custom values." - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Updating trap custom values successful." - -#~ msgid "No change in data" -#~ msgstr "No change in data" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Error in adding trap custom values." - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Success in adding trap custom values." - -#~ msgid "Load MIB" -#~ msgstr "Load MIB" - -#~ msgid "Upload MIB" -#~ msgstr "Upload MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Log storage directory" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Directory where the log data will be stored." - -#~ msgid "Fail uploaded file" -#~ msgstr "Failure in uploading file" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Failure in uploading %s/%s traps" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Uploaded %s/%s traps" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Error in deleting trap custom values." - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Deletion of trap custom values successful." - -#~ msgid "Page" -#~ msgstr "Page" - -#~ msgid "Filter by profile" -#~ msgstr "Filter by profile" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Sets the maximum lifetime for log data in days." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Enterprise ACL setup" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Add new ACL element to profile" - -#~ msgid "Section" -#~ msgstr "Section" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Successfully deleted skin" - -#~ msgid "Error deleting skin" -#~ msgstr "Error deleting skin" - -#~ msgid "Skins configuration" -#~ msgstr "Skins configuration" - -#~ msgid "Create skin" -#~ msgstr "Create skin" - -#~ msgid "Metaconsole setup" -#~ msgstr "Metaconsole setup" - -#~ msgid "Successfully update" -#~ msgstr "Update successful." - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." - -#~ msgid "Group/s" -#~ msgstr "Group/s" - -#~ msgid "Successfully created skin" -#~ msgstr "Creation of skin successful." - -#~ msgid "Relative path" -#~ msgstr "Relative path" - -#~ msgid "Skin name" -#~ msgstr "Skin name" - -#~ msgid "Error updating skin" -#~ msgstr "Error in updating skin" - -#~ msgid "Successfully updated skin" -#~ msgstr "Updating skin successful" - -#~ msgid "DB Password" -#~ msgstr "DB Password" - -#~ msgid "DB User" -#~ msgstr "DB User" - -#~ msgid "Auth token" -#~ msgstr "Auth token" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." - -#~ msgid "Could not be update" -#~ msgstr "Could not be updated." - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Pandora FMS Metaconsole item edition" - -#~ msgid "Console URL" -#~ msgstr "Console URL" - -#~ msgid "DB Host" -#~ msgstr "DB Host" - -#~ msgid "Console User" -#~ msgstr "Console User" - -#~ msgid "DB Name" -#~ msgstr "DB Name" - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Before activating this option, check your ACL Setup. You may lose access to " -#~ "the console." - -#~ msgid "Time interval between data transfer." -#~ msgstr "Time interval between data transfer." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Data size of mechanism used to transfer the data (similar to a data buffer.)" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "Number of days before the data is transfered to history database." - -#~ msgid "Compatibility" -#~ msgstr "Compatibility" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "DB" -#~ msgstr "DB" - -#~ msgid "Console Password" -#~ msgstr "Console Password" - -#~ msgid "Only validated events" -#~ msgstr "Only validated events" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Push selected modules out of blacklist." - -#~ msgid "Enterprise options" -#~ msgstr "Enterprise Options" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events if changed." - -#~ msgid "Out of black list" -#~ msgstr "Out of black list" - -#~ msgid "In black list" -#~ msgstr "Into black list" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Push selected modules into blacklist." - -#~ msgid " Caracters" -#~ msgstr " Characters" - -#~ msgid "Two attempts minimum" -#~ msgstr "Two attempts minimum" - -#~ msgid " Days" -#~ msgstr " Days" - -#~ msgid " Minutes" -#~ msgstr " Minutes" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Set to '0' to never let it expire." - -#~ msgid "Remote Integria" -#~ msgstr "Remote Integria" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Remote Babel Enterprise" - -#~ msgid "Active directory" -#~ msgstr "Active directory" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Remote Pandora FMS" - -#~ msgid "Enterprise password policy" -#~ msgstr "Enterprise password policy" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except to the administrator." - -#~ msgid " Attempts" -#~ msgstr " Attempts" - -#~ msgid "separate fields with " -#~ msgstr "separate fields with " - -#~ msgid "Error creating inventory module" -#~ msgstr "Error in creating inventory module." - -#~ msgid "Successfully created inventory module" -#~ msgstr "Inventory module successfully created." - -#~ msgid "Interpreter" -#~ msgstr "Interpreter" - -#~ msgid "Local component management" -#~ msgstr "Local component management" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Or disable Pandora FMS enterprise" - -#~ msgid "Map made by user" -#~ msgstr "Map made by user" - -#~ msgid "Show a map made by user" -#~ msgstr "Show a map made by user" - -#~ msgid "Limit" -#~ msgstr "Limit" - -#~ msgid "Latest events list" -#~ msgstr "Latest events list" - -#~ msgid "Renew" -#~ msgstr "Renew" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Please configure this widget before usage" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Show a graph of an agent module" - -#~ msgid "Single graph" -#~ msgstr "Single graph" - -#~ msgid "Show a report made by user" -#~ msgstr "Show a report made by user" - -#~ msgid "Alerts Fired report" -#~ msgstr "Alerts Fired report" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Height in px (zero for auto)" - -#~ msgid "Show the URL content" -#~ msgstr "Show the URL content" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Welcome message to Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Welcome" - -#~ msgid "My URL" -#~ msgstr "My URL" - -#~ msgid "Invalid URL" -#~ msgstr "Invalid URL" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "No overlap" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "To do so, just click on the title and drag and drop it to the desired place." - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "This is an example of a dashboard widget. A widget may contain elements" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Thanks for using Pandora FMS." - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Show a map of the monitored network." - -#~ msgid "Panel with a message" -#~ msgstr "Panel with a message" - -#~ msgid "My Post" -#~ msgstr "My Post" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "General and quick visual maps report" -#~ msgstr "General and quick visual maps report" - -#~ msgid "Maps status" -#~ msgstr "Maps status" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Show a list of global monitor health" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Show a defined custom graph" - -#~ msgid "Groups status" -#~ msgstr "Groups status" - -#~ msgid "General and quick group status report" -#~ msgstr "General and quick group status report" - -#~ msgid "Delete widget" -#~ msgstr "Delete widget" - -#~ msgid "Configure widget" -#~ msgstr "Configure widget" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Replicate Dashboard" - -#~ msgid "Group Dashboards" -#~ msgstr "Group Dashboards" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "Not copied, rror copying data. You have to select a dashboard first." - -#~ msgid "Source user's group" -#~ msgstr "Source user's group" - -#~ msgid "Destination user's group" -#~ msgstr "Destination user's group" - -#~ msgid "Dashboard replicate" -#~ msgstr "Dashboard replicate" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Not copied. Error copying data." - -#~ msgid "Successfully copyed" -#~ msgstr "Successfully copied." - -#~ msgid "Could not create dashboard" -#~ msgstr "Could not create dashboard." - -#~ msgid "Could not update dashboard" -#~ msgstr "Could not update dashboard." - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Dashboard successfuly updated." - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Please configure the widget again to recover it" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Cannot load widget." - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Dashboard successfuly created." - -#~ msgid "Play" -#~ msgstr "Play" - -#~ msgid "Slides mode" -#~ msgstr "Slides mode" - -#~ msgid "Next Dashboard" -#~ msgstr "Next Dashboard" - -#~ msgid "Previous Dashboard" -#~ msgstr "Previous Dashboard" - -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgid "Private dashboard" -#~ msgstr "Private dashboard" - -#~ msgid "Dashboard options" -#~ msgstr "Dashboard options" - -#~ msgid "Add new widget" -#~ msgstr "Add new widget" - -#~ msgid "Add new dashboard view" -#~ msgstr "Add new dashboard view" - -#~ msgid "Add dashboard" -#~ msgstr "Add dashboard" - -#~ msgid "Add widget" -#~ msgstr "Add widget" - -#~ msgid "Next slide in" -#~ msgstr "Next slide in" - -#~ msgid "Update dashboard" -#~ msgstr "Update dashboard" - -#~ msgid "Delete dashboard" -#~ msgstr "Delete dashboard" - -#~ msgid "Succesful updated" -#~ msgstr "Update successful." - -#~ msgid "Fields" -#~ msgstr "Fields" - -#~ msgid "Search results for" -#~ msgstr "Search results for" - -#~ msgid "Create visualmap" -#~ msgstr "Create visual map" - -#~ msgid "Screens" -#~ msgstr "Screens" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "The user is not in either of the groups with an EW profile." - -#~ msgid "Unsucessful updated" -#~ msgstr "Update unsuccessful." - -#~ msgid "Tactical View" -#~ msgstr "Tactical View" - -#~ msgid "More events" -#~ msgstr "More events" - -#~ msgid "Module description" -#~ msgstr "Module description" - -#~ msgid "Web check" -#~ msgstr "Web check" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Cannot connect to Pandora FMS instance." - -#~ msgid "Create module" -#~ msgstr "Create module" - -#~ msgid "Click Create to continue" -#~ msgstr "Click Create to continue" - -#~ msgid "Step by step wizard" -#~ msgstr "Step by step wizard" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "The alert you are trying to add is already in the list of alerts." - -#~ msgid "Please, select a module" -#~ msgstr "Please select a module" - -#~ msgid "Edit module" -#~ msgstr "Edit module" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Invalid characters found in module name." - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Please set a valid IP address." - -#~ msgid "Edit agent" -#~ msgstr "Edit agent" - -#~ msgid "Advanced configuration" -#~ msgstr "Advanced configuration" - -#~ msgid "Please, select an alert" -#~ msgstr "Please select an alert" - -#~ msgid "Preview" -#~ msgstr "Preview" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Another agent with the same name already exists." - -#~ msgid "Please, select an agent" -#~ msgstr "Please select an agent" - -#~ msgid "String" -#~ msgstr "String" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Select the alert to be edited or deleted" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Select the module in which the alert will be created." - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Select the module to be edited or deleted" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Select the agent to be edited or deleted" - -#~ msgid "Create Module" -#~ msgstr "Create Module" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Select the agent where the module will be created" - -#~ msgid "Please, set a name" -#~ msgstr "Please set a name" - -#~ msgid "Group View" -#~ msgstr "Group View" - -#~ msgid "Please, set an interval" -#~ msgstr "Please set an interval" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Could not be updated : Error in %s" - -#~ msgid "Groups synchronization" -#~ msgstr "Groups synchronisation" - -#~ msgid "Alerts synchronization" -#~ msgstr "Alerts synchronisation" - -#~ msgid "Components synchronization" -#~ msgstr "Components synchronization" - -#~ msgid "Tags synchronization" -#~ msgstr "Tags synchronisation" - -#~ msgid "Synchronizing" -#~ msgstr "Synchronising" - -#~ msgid "Users synchronization" -#~ msgstr "Users synchronisation" - -#~ msgid "Customize sections" -#~ msgstr "Customise sections" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Created user %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Error in creating user %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Updated user %s" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Error in updating user %s" - -#~ msgid "Passwords" -#~ msgstr "Passwords" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Pop selected sections to disable it" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Push selected sections to enable it" - -#~ msgid "Enabled sections" -#~ msgstr "Enabled sections" - -#~ msgid "Disabled sections" -#~ msgstr "Disabled sections" - -#~ msgid "Copy profile" -#~ msgstr "Copy profile" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Check this to copy the user's original profiles" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Profile synchronisation mode" - -#~ msgid "New profile" -#~ msgstr "New profile" - -#~ msgid "This metaconsole" -#~ msgstr "This meta-console" - -#~ msgid "Profile mode" -#~ msgstr "Profile mode" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "The following element groups / profiles / user profiles were created / " -#~ "updated sucessfully (%d/%d/%d)" - -#~ msgid "Sync" -#~ msgstr "Sync" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Error connecting to %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Error creating/updating the following elements groups / profiles / user " -#~ "profiles (%d/%d/%d)" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Error in creating %s component groups " - -#~ msgid "Could not be delete" -#~ msgstr "Could not be deleted." - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Error creating/updating %s/%s local components " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Created %s component groups" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Error in creating / updating %s/%s network components " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Created / updated %s/%s local components" - -#~ msgid "Metaconsole elements" -#~ msgstr "Metaconsole elements" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Created/updated %s/%s network components" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "The number of elements retrieved for each instance in some views." - -#~ msgid "Visual" -#~ msgstr "Visual" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Error in creating / updating %s/%s templates" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Complete path to Pandora console without last \"/\" character. Example " - -#~ msgid "Only database" -#~ msgstr "Only database" - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "There are no servers added to metaconsole." - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Error in creating / updating %s/%s commands." - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Created / updated %s/%s commands" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Error in creating / updating %s/%s actions." - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "Created / updated %s/%s actions" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Created / updated %s/%s templates" - -#~ msgid "Propagation" -#~ msgstr "Propagation" - -#~ msgid "Consoles Setup" -#~ msgstr "Consoles Setup" - -#~ msgid "Passwords setup" -#~ msgstr "Passwords setup" - -#~ msgid "Original string" -#~ msgstr "Original string" - -#~ msgid "Please search for anything text." -#~ msgstr "Please search for anything text." - -#~ msgid "Active events history" -#~ msgstr "Active events history" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Created / updated %s/%s tags" - -#~ msgid "General setup" -#~ msgstr "General setup" - -#~ msgid "Customize translation" -#~ msgstr "Customize translation" - -#~ msgid "Translation in selected language" -#~ msgstr "Translation in selected language" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Error in creating / updating %s/%s tags" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "created agent alerts in destination DB" - -#~ msgid "Strings translation" -#~ msgstr "Strings translation" - -#~ msgid "Performance setup" -#~ msgstr "Performance setup" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Error in creating / updating %s/%s groups" - -#~ msgid "Consoles setup" -#~ msgstr "Consoles setup" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "Redirected IP-server in conf into source DB" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "created agent modules in destination DB" - -#~ msgid "created agent in destination DB" -#~ msgstr "created agent in destination DB" - -#~ msgid "Visual setup" -#~ msgstr "Visual setup" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Groups %s/%s created / updated" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "created alert actions in destination DB" - -#~ msgid "Add agents to destination server" -#~ msgstr "Add agents to destination server" - -#~ msgid "Move" -#~ msgstr "Move" - -#~ msgid "Source Server" -#~ msgstr "Source Server" - -#~ msgid "Destination Server" -#~ msgstr "Destination Server" - -#~ msgid "Successfully moved" -#~ msgstr "Successfully moved" - -#~ msgid "Could not be moved" -#~ msgstr "Could not be moved" - -#~ msgid "disabled agent in source DB" -#~ msgstr "disabled agents in source DB" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Unset metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." - -#~ msgid "Policy Manager" -#~ msgstr "Policy Manager" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Error in creating %s policy alerts" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Deleted %s policy modules" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Error in deleting %s policy modules" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Created / updated %s/%s policy modules" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Error in creating / updating %s/%s policy modules" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Created %s policies" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Error in creating %s policies" - -#~ msgid "Policies apply" -#~ msgstr "Policies apply" - -#~ msgid "Policies queue" -#~ msgstr "Policies queue" - -#~ msgid "Apply policies" -#~ msgstr "Apply policies" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Created %s policy alerts" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox or Google Chrome browsers." - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Error in deleting %s policy alerts" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Deleted %s policy alerts" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" - -#~ msgid "Network traffic" -#~ msgstr "Network traffic" - -#~ msgid "Monitors view" -#~ msgstr "Monitors view" - -#~ msgid "Create new report" -#~ msgstr "Create new report" - -#~ msgid "Tag management" -#~ msgstr "Tag management" - -#~ msgid "Alert management" -#~ msgstr "Alert management" - -#~ msgid "Policy management" -#~ msgstr "Policy management" - -#~ msgid "Templates wizard" -#~ msgstr "Templates wizard" - -#~ msgid "Report templates" -#~ msgstr "Report templates" - -#~ msgid "Agent management" -#~ msgstr "Agent management" - -#~ msgid "Live view" -#~ msgstr "Live view" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Updating of the the network map unsuccessful." - -#~ msgid "Agents movement" -#~ msgstr "Agents movement" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Updating of the the network map successful." - -#~ msgid "Show modules" -#~ msgstr "Show modules" - -#~ msgid "Filter by agents" -#~ msgstr "Filter by agents" - -#~ msgid "Filter by modules" -#~ msgstr "Filter by modules" - -#~ msgid "Unnamed " -#~ msgstr "Unnamed " - -#~ msgid "Back to login" -#~ msgstr "Back to login" - -#~ msgid "Metasetup" -#~ msgstr "Metasetup" - -#~ msgid "Category management" -#~ msgstr "Category management" - -#~ msgid "Undo changes" -#~ msgstr "Undo changes" - -#~ msgid "Agent modules" -#~ msgstr "Agent modules" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Cannot connect to %s Pandora to generate network map." - -#~ msgid "Check type" -#~ msgstr "Check type" - -#~ msgid "Response" -#~ msgstr "Response" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Add selected modules to agent" - -#~ msgid "Latency" -#~ msgstr "Latency" - -#~ msgid "Show modulegroup" -#~ msgstr "Show module group" - -#~ msgid "There is no group selected" -#~ msgstr "There is no group selected" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Show children Metaconsole" - -#~ msgid "String to check" -#~ msgstr "String to check" - -#~ msgid "Delete check" -#~ msgstr "Delete check" - -#~ msgid "Add check" -#~ msgstr "Add check" - -#~ msgid "Web configuration" -#~ msgstr "Web configuration" - -#~ msgid "Various" -#~ msgstr "Various" - -#~ msgid "Thresholds" -#~ msgstr "Thresholds" - -#~ msgid "Alerts in module" -#~ msgstr "Alerts in module" - -#~ msgid "Checks" -#~ msgstr "Checks" - -#~ msgid "Deleted modules" -#~ msgstr "Deleted modules" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Error in adding module %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "There was an error creating the alerts, the operation has been cancelled" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Could not create agent %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agent successfully added" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Could not update agent %s" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s Modules created" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Error in updating module %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Modules deleted" - -#~ msgid "Successfully updated module." -#~ msgstr "Module successfully updated." - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "There was an error in updating the alerts, the operation has been cancelled." - -#~ msgid "Go to module detail" -#~ msgstr "Go to module detail" - -#~ msgid "Go to agent detail" -#~ msgstr "Go to agent detail" - -#~ msgid "Create new module" -#~ msgstr "Create new module" - -#~ msgid "User synchronization" -#~ msgstr "User synchronization" - -#~ msgid "Group synchronization" -#~ msgstr "Group synchronization" - -#~ msgid "No admin user" -#~ msgstr "No admin user" - -#~ msgid "Manage agent modules" -#~ msgstr "Manage agent modules" - -#~ msgid "Customizable section" -#~ msgstr "Customizable section" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow disables custom live view filters." - -#~ msgid "Log viewer" -#~ msgstr "Log viewer" - -#~ msgid "Delete alert" -#~ msgstr "Delete alert" - -#~ msgid "There was a problem loading tag" -#~ msgstr "There was a problem in loading the tag." - -#~ msgid "Stand By" -#~ msgstr "Stand By" - -#~ msgid "Go to Alert detail" -#~ msgstr "Go to Alert detail" - -#~ msgid "Create new alert" -#~ msgstr "Create new alert" - -#~ msgid "Edit plugin" -#~ msgstr "Edit plugin" - -#~ msgid "Plugin management" -#~ msgstr "Plugin management" - -#~ msgid "Create plugin" -#~ msgstr "Create plugin" - -#~ msgid "Copy Dashboard" -#~ msgstr "Copy dashboard" - -#~ msgid "Network console" -#~ msgstr "Network console" - -#~ msgid "Start date" -#~ msgstr "Start date" - -#~ msgid "Custom SQL" -#~ msgstr "Custom SQL" - -#~ msgid "Export this list to CSV" -#~ msgstr "Export this list to CSV" - -#~ msgid "Success be updated." -#~ msgstr "Updating successful." - -#~ msgid "Service Map" -#~ msgstr "Service Map" - -#~ msgid "List of elements" -#~ msgstr "List of elements" - -#~ msgid "Error deleting service" -#~ msgstr "Error deleting service" - -#~ msgid "Service deleted successfully" -#~ msgstr "Service deleted successfully" - -#~ msgid "Last contact: " -#~ msgstr "Last contact : " - -#~ msgid "Not found networkmap." -#~ msgstr "Network map not found." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Enterprise network map - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Successfully created." - -#~ msgid "Networkmap enterprise" -#~ msgstr "Enterprise network map" - -#~ msgid "Could not be updated." -#~ msgstr "Could not be updated." - -#~ msgid "Policy: " -#~ msgstr "Policy : " - -#~ msgid "Data: " -#~ msgstr "Data : " - -#~ msgid "Status: " -#~ msgstr "Status : " - -#~ msgid "Succesfully deleted" -#~ msgstr "Successfully deleted" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "No collection assigned to this agent" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Size of network map (Width x Height)" - -#~ msgid "Succesfully updated" -#~ msgstr "Successfully updated" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Successfully duplicated" - -#~ msgid "Could not be duplicated" -#~ msgstr "Could not be duplicated" - -#~ msgid "Method generation networkmap" -#~ msgstr "Method generation of network map" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "The network map has already been generated." - -#~ msgid "Policy outdate" -#~ msgstr "Policy outdated" - -#~ msgid "Details of node:" -#~ msgstr "Details of node :" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "This agent has no assigned policy." - -#~ msgid "Networkmap resized." -#~ msgstr "Network map resized." - -#~ msgid "Error process map" -#~ msgstr "Error in processing map" - -#~ msgid "Update networkmap" -#~ msgstr "Update network map" - -#~ msgid "Save networkmap" -#~ msgstr "Save network map" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "This operation can't be undone because it's on the DB." - -#~ msgid "Resize the networkmap" -#~ msgstr "Resize the networkmap" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Refresh network map state" - -#~ msgid "Relationship" -#~ msgstr "Relationship" - -#~ msgid "Toggle the module table" -#~ msgstr "Toggle the module table" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Un-adopted)" - -#~ msgid "Show Modules" -#~ msgstr "Show Modules" - -#~ msgid "(Adopted)" -#~ msgstr "(Adopted)" - -#~ msgid "Show Alert" -#~ msgstr "Show Alert" - -#~ msgid "Descripttion" -#~ msgstr "Description" - -#~ msgid "Show Collection" -#~ msgstr "Show Collection" - -#~ msgid "Toggle the alert table" -#~ msgstr "Toggle the alert table" - -#~ msgid "Toggle the collection table" -#~ msgstr "Toggle the collection table" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Un-adopted) (Unlinked)" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Adopted) (Unlinked)" - -#~ msgid "Backup" -#~ msgstr "Backup" - -#~ msgid "Export to PDF" -#~ msgstr "Export to PDF" - -#~ msgid "Backups list" -#~ msgstr "Backups list" - -#~ msgid "Create backup" -#~ msgstr "Create backup" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Pandora database backup utility" - -#~ msgid "Lost" -#~ msgstr "Lost" - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Success in adding '%s' agent." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Error in creating '%s' policy." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Success in creating '%s' policy." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Error in adding '%s' agent." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Error. The policy doesn't have a name." - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "Error create '%s' policy, the name exists and there aren't free names." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Warning on creating '%s' policy, the name exists and the policy has the name " -#~ "%s." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Error on adding the module, it doesn't have a type." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Error in adding '%s' collection." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Success in adding '%s' collection." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Success in adding '%s' module." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Error on adding the module, error in tag component." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Error on adding the alert, the module '%s' doesn't exist." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Success in adding '%s' alert." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Error on adding '%s' module." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Error on adding the alert, the template '%s' doesn't exist." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Error on adding '%s' alert." - -#~ msgid "Hourly" -#~ msgstr "Hourly" - -#~ msgid "Save custom report to disk" -#~ msgstr "Save custom report to disk" - -#~ msgid "Send custom report by email" -#~ msgstr "Send custom report by email" - -#~ msgid "Not scheduled" -#~ msgstr "Not scheduled" - -#~ msgid "Backup Pandora database" -#~ msgstr "Backup Pandora database" - -#~ msgid "Send to email" -#~ msgstr "Send to email" - -#~ msgid "Save to disk into path" -#~ msgstr "Save to disk in path" - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Success in adding '%s' action." - -#~ msgid "Report to build" -#~ msgstr "Report to build" - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Error on adding the alert, the action '%s' doesn't exist." - -#~ msgid "Cron jobs" -#~ msgstr "Cron jobs" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Please do not answer or reply to this email" - -#~ msgid "Yearly" -#~ msgstr "Annually" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Open the attached file to view it" - -#~ msgid "This is the automatic generated report" -#~ msgstr "This is the automatically generated report" - -#~ msgid "Cron extension is not running" -#~ msgstr "Cron extension is not running" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Path doesn't exist or is not writable." - -#~ msgid "Add new job" -#~ msgstr "Add new job" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "Cron extension has never run or it's not configured well." - -#~ msgid "Edit job" -#~ msgstr "Edit job" - -#~ msgid "Scheduled jobs" -#~ msgstr "Scheduled jobs" - -#~ msgid "Cron extension is running" -#~ msgstr "Cron extension is running" - -#~ msgid "Last execution" -#~ msgstr "Last execution" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Please add the following line to your crontab file" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service." - -#~ msgid "Scheduled" -#~ msgstr "Scheduled" - -#~ msgid "Task" -#~ msgstr "Task" - -#~ msgid "First_execution" -#~ msgstr "First_execution" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is different." - -#~ msgid "Last run" -#~ msgstr "Last run" - -#~ msgid "Separator" -#~ msgstr "Separator" - -#~ msgid "File processed" -#~ msgstr "File processed" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Created agent %s" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "The CSV file must have the fields in the following order" - -#~ msgid "CSV format" -#~ msgstr "CSV format" - -#~ msgid "Translate string" -#~ msgstr "Translate string" - -#~ msgid "CSV import" -#~ msgstr "CSV import" - -#~ msgid "Force run" -#~ msgstr "Force run" - -#~ msgid "Path" -#~ msgstr "Path" - -#~ msgid "First execution" -#~ msgstr "First execution" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Graph agents(%s) - %s" - -#~ msgid "Upload CSV file" -#~ msgstr "Upload CSV file" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Templates list" -#~ msgstr "Templates list" - -#~ msgid "Advance options" -#~ msgstr "Advanced options" - -#~ msgid "Wizard SLA" -#~ msgstr "SLA-Wizard" - -#~ msgid "Templates Wizard" -#~ msgstr "Templates Wizard" - -#~ msgid "Template editor" -#~ msgstr "Template editor" - -#~ msgid "% Wrong" -#~ msgstr "% Wrong" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "Report type" -#~ msgstr "Report type" - -#~ msgid "Generated" -#~ msgstr "Generated" - -#~ msgid "Simple Graph" -#~ msgstr "Simple Graph" - -#~ msgid "Get PDF file" -#~ msgstr "Get PDF file" - -#~ msgid "% Limit" -#~ msgstr "% Limit" - -#~ msgid "Last 8 hours events" -#~ msgstr "Last 8 hours events" - -#~ msgid "Uknown agents" -#~ msgstr "Unknown agents" - -#~ msgid "MIN Value" -#~ msgstr "MIN Value" - -#~ msgid "MAX Value" -#~ msgstr "MAX Value" - -#~ msgid "Modules under" -#~ msgstr "Modules under" - -#~ msgid "Modules at normal status" -#~ msgstr "Modules at normal status" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Modules at critical or warning status" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "There are no modules over or equal to %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "There are no modules under %s" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "There are no modules under those conditions" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "There are no modules at normal status" - -#~ msgid "Serialized data " -#~ msgstr "Serialized data " - -#~ msgid "There are no data." -#~ msgstr "There are no data." - -#~ msgid "Crit:" -#~ msgstr "Crit:" - -#~ msgid "Ok:" -#~ msgstr "Ok:" - -#~ msgid "Warn:" -#~ msgstr "Warn:" - -#~ msgid "Shape" -#~ msgstr "Shape" - -#~ msgid "Radius" -#~ msgstr "Radius" - -#~ msgid "Add fictional point" -#~ msgstr "Add fictional point" - -#~ msgid "Open Minimap" -#~ msgstr "Open Minimap" - -#~ msgid "Square" -#~ msgstr "Square" - -#~ msgid "Rhombus" -#~ msgstr "Rhomb" - -#~ msgid "Circle" -#~ msgstr "Circle" - -#~ msgid "Network map linked" -#~ msgstr "Network map linked" - -#~ msgid "Show modules:" -#~ msgstr "Show modules:" - -#~ msgid "Copy of " -#~ msgstr "Copy of " - -#~ msgid "Module alert" -#~ msgstr "Module alert" - -#~ msgid "Empty configuration" -#~ msgstr "Empty configuration" - -#~ msgid "Lines" -#~ msgstr "Lines" - -#~ msgid "Empty OS" -#~ msgstr "Empty OS" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsole" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "Automated Pandora FMS report for user defined report" - -#~ msgid "There are no agents with modules." -#~ msgstr "There are no agents with modules." - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "There are no agents / modules defined." - -#~ msgid "Modules over" -#~ msgstr "Modules over" - -#~ msgid "Modules less or equal to" -#~ msgstr "Modules less or equal to" - -#~ msgid "Exception - Equal to" -#~ msgstr "Exception - Equal to" - -#~ msgid "Modules equal to" -#~ msgstr "Modules equal to" - -#~ msgid "Modules less" -#~ msgstr "Modules less" - -#~ msgid "Modules detailed event" -#~ msgstr "Modules detailed event" - -#~ msgid "There are no events for this module." -#~ msgstr "There are no events for this module." - -#~ msgid "There are no events in group." -#~ msgstr "There are no events in group." - -#~ msgid "There are no alerts for this module." -#~ msgstr "There are no alerts for this module." - -#~ msgid "Modules normal status" -#~ msgstr "Modules normal status" - -#~ msgid "Modules not equal to" -#~ msgstr "Modules not equal to" - -#~ msgid "CONTENTS" -#~ msgstr "CONTENTS" - -#~ msgid "Report date: " -#~ msgstr "Report date: " - -#~ msgid "Generated: " -#~ msgstr "Generated: " - -#~ msgid "Untitled" -#~ msgstr "Untitled" - -#~ msgid "There are no Events." -#~ msgstr "There are no events." - -#~ msgid "Agent:" -#~ msgstr "Agent:" - -#~ msgid "Module:" -#~ msgstr "Module:" - -#~ msgid "Restoring a backup" -#~ msgstr "Restoring a backup" - -#~ msgid "No description" -#~ msgstr "No description" - -#~ msgid "There are no modules." -#~ msgstr "There are no modules." - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loss." - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "Restoring the Pandora database backup must be done manually." - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "To restore the selected backup, please follow these steps" - -#~ msgid "Period: " -#~ msgstr "Period: " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Open a root shell in your system located at " - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Please restart the servers and login to the console again." - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "" -#~ "Please find the server configuration file and replace the following lines" - -#~ msgid "Open configuration file" -#~ msgstr "Open configuration file" - -#~ msgid "Find" -#~ msgstr "Find" - -#~ msgid "Restore the backup" -#~ msgstr "Restore the backup" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "Please modify console configuration to use this new database." - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Please connect to MySQL database using the following command" - -#~ msgid "Create a new database" -#~ msgstr "Create a new database" - -#~ msgid "and replace with" -#~ msgstr "and replace it with" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "Modify server configuration to use this new database." - -#~ msgid "Into your destination database." -#~ msgstr "Into your destination database." - -#~ msgid "Run import command using the following command" -#~ msgstr "Please run the import command using the following command" - -#~ msgid "Log collector" -#~ msgstr "Log collector" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Error on connecting to the specified host" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "\"Translate string\" extension is missing in the server. This extension is " -#~ "mandatory to be configured on metaconsole." - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "Connected to host, but cannot find the specified database." - -#~ msgid "Database credentials not found" -#~ msgstr "Database credentials not found" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Server name doesn't match. Check the node server name and configure the same " -#~ "one on metasetup." - -#~ msgid "Last event replication" -#~ msgstr "Last event replication" - -#~ msgid "Get CSV file" -#~ msgstr "Get CSV file" - -#~ msgid "Tree view by tags" -#~ msgstr "Tree view by tags" - -#~ msgid "No changes found" -#~ msgstr "No changes found." - -#~ msgid "Module store the service does not exist." -#~ msgstr "Module for storing the service does not exist." - -#~ msgid "Service does not exist." -#~ msgstr "Service does not exist." - -#~ msgid "Critical (Alert)" -#~ msgstr "Critical (Alert)" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Alert for unknown service does not exist." - -#~ msgid "Unknow" -#~ msgstr "Unknown" - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Automatic module creation for the service %s" - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Agent for storing the service does not exist." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Module for storing SLA service does not exist." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Alert for critical service does not exist." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Alert warning service does not exist." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Alert for critical SLA service does not exist." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Agent to store the SLA service does not exist." - -#~ msgid "There are no service elements defined" -#~ msgstr "There are no service elements defined." - -#~ msgid "Weight Critical" -#~ msgstr "Weight Critical" - -#~ msgid "Weight Ok" -#~ msgstr "Weight Ok" - -#~ msgid "Delete service element" -#~ msgstr "Delete service element" - -#~ msgid "Weight Unknown" -#~ msgstr "Weight Unknown" - -#~ msgid "FAIL" -#~ msgstr "FAIL" - -#~ msgid "Policy linkation" -#~ msgstr "Policy linking" - -#~ msgid "Weight Warning" -#~ msgstr "Weight Warning" - -#~ msgid "Unlink from policy" -#~ msgstr "Unlink from policy" - -#~ msgid "Module linked" -#~ msgstr "Module linked" - -#~ msgid "Relink to policy" -#~ msgstr "Relink to policy" - -#~ msgid "Change" -#~ msgstr "Change" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "User has been blocked. Please try again in " - -#~ msgid "Module pending to unlink" -#~ msgstr "Module pending to unlink" - -#~ msgid "Module pending to link" -#~ msgstr "Module pending to link" - -#~ msgid "You must change password" -#~ msgstr "You have to change the password" - -#~ msgid "Create a new policy map" -#~ msgstr "Create a new policy map" - -#~ msgid "Module unlinked" -#~ msgstr "Module unlinked" - -#~ msgid "CONFIRM: " -#~ msgstr "CONFIRM: " - -#~ msgid "NEW PASS: " -#~ msgstr "NEW PASS: " - -#~ msgid "Password must be different" -#~ msgstr "Password must be different" - -#~ msgid "Password confirm does not match" -#~ msgstr "Password confirm does not match" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Error updating user pass (no change ?)" - -#~ msgid "Password must contain symbols" -#~ msgstr "Password has to contain symbols." - -#~ msgid "User pass successfully updated" -#~ msgstr "User pass successfully updated" - -#~ msgid " previous changes." -#~ msgstr " previous changes." - -#~ msgid "Password too short" -#~ msgstr "Password too short" - -#~ msgid "Password must contain numbers" -#~ msgstr "Password has to contain numbers." - -#~ msgid " minutes" -#~ msgstr " minutes" - -#~ msgid "Password must be different from the " -#~ msgstr "Password must be different from the " - -#~ msgid "Password empty" -#~ msgstr "Password empty" - -#~ msgid "Plannified downtime" -#~ msgstr "Planned downtime" - -#~ msgid "Average" -#~ msgstr "Average" - -#~ msgid "Group configuration: " -#~ msgstr "Group configuration : " - -#~ msgid " MODULES" -#~ msgstr " MODULES" - -#~ msgid "Agent configuration: " -#~ msgstr "Agent configuration : " - -#~ msgid "Dir" -#~ msgstr "Dir" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "Error creating skin" -#~ msgstr "Error on creating skin." - -#~ msgid "Value:" -#~ msgstr "Value :" - -#~ msgid "Could not be operation" -#~ msgstr "Cannot not be an operation." - -#~ msgid "Create a graph for each agent" -#~ msgstr "Create a graph for each agent" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Top N events by module." -#~ msgstr "Top N events by module." - -#~ msgid "There is not data to show." -#~ msgstr "There is not data to show." - -#~ msgid "Show a top n of agents modules." -#~ msgstr "Show a top n of agents modules." - -#~ msgid "Amount to show" -#~ msgstr "Amount to show" - -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." -#~ msgstr "" -#~ "Please could you fill the widget data previous to filling the list items." - -#~ msgid "Top N events by agent." -#~ msgstr "Top N events by agent." - -#~ msgid "Regex for to filter modules" -#~ msgstr "Regex for to filter modules" - -#~ msgid "avg" -#~ msgstr "avg" - -#~ msgid "Selection module one by one" -#~ msgstr "Selection module one by one" - -#~ msgid "Unsuccessful added modules" -#~ msgstr "Unsuccessful added modules" - -#~ msgid "Top N Events by agent." -#~ msgstr "Top N Events by agent." - -#~ msgid "Filter modules" -#~ msgstr "Filter modules" - -#~ msgid "Successful added modules" -#~ msgstr "Successful added modules" - -#~ msgid "Top N Events by module." -#~ msgstr "Top N Events by module." - -#~ msgid "Please select one or more groups." -#~ msgstr "Please select one or more groups." - -#~ msgid "Selection several modules" -#~ msgstr "Selection several modules" - -#~ msgid "Mask format" -#~ msgstr "Mask format" - -#~ msgid "Bit mask" -#~ msgstr "Bit mask" - -#~ msgid "Net mask" -#~ msgstr "Net mask" - -#~ msgid " Inverse interval " -#~ msgstr " Inverse interval " - -#~ msgid "Example:" -#~ msgstr "Example:" - -#~ msgid "Str: " -#~ msgstr "Str: " - -#~ msgid "No associated actions" -#~ msgstr "No associated actions" - -#~ msgid "Broadcast address" -#~ msgstr "Broadcast address" - -#~ msgid "Network wildcard" -#~ msgstr "Network wildcard" - -#~ msgid "Network address" -#~ msgstr "Network address" - -#~ msgid "Incorrect mask format" -#~ msgstr "Incorrect mask format" - -#~ msgid "Network mask" -#~ msgstr "Network mask" - -#~ msgid "Address field is empty" -#~ msgstr "Address field is empty" - -#~ msgid "Calculate" -#~ msgstr "Calculate" - -#~ msgid "Mask" -#~ msgstr "Mask" - -#~ msgid "Mask field is empty" -#~ msgstr "Mask field is empty" - -#~ msgid "Incorrect address format" -#~ msgstr "Incorrect address format" - -#~ msgid "Last valid IP" -#~ msgstr "Last valid IP" - -#~ msgid "First valid IP" -#~ msgstr "First valid IP" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Operating system" -#~ msgstr "Operating system" - -#~ msgid "Generate events" -#~ msgstr "Generate events" - -#~ msgid "This agent has other IPs" -#~ msgstr "This agent has other IPs" - -#~ msgid "Managed" -#~ msgstr "Managed" - -#~ msgid "Edited" -#~ msgstr "Edited" - -#~ msgid "Alive" -#~ msgstr "Alive" - -#~ msgid "For example: Central Data Center" -#~ msgstr "For example: Central Data Centre" - -#~ msgid "Scan interval" -#~ msgstr "Scan interval" - -#~ msgid "0 for manually scan" -#~ msgstr "0 for manually scan" - -#~ msgid "Successfully updated." -#~ msgstr "Successfully updated." - -#~ msgid "Examples" -#~ msgstr "Examples" - -#~ msgid "Format: IP/Mask" -#~ msgstr "Format: IP/Mask" - -#~ msgid "Ping" -#~ msgstr "Ping" - -#~ msgid "Network not found" -#~ msgstr "Network not found" - -#~ msgid "Ping to host" -#~ msgstr "Ping to host" - -#~ msgid "Addresses view" -#~ msgstr "Addresses view" - -#~ msgid "Edit network" -#~ msgstr "Edit network" - -#~ msgid "No networks found" -#~ msgstr "No networks found" - -#~ msgid "IPs" -#~ msgstr "IPs" - -#~ msgid "Manage addresses" -#~ msgstr "Manage addresses" - -#~ msgid "Subnet" -#~ msgstr "Subnet" - -#~ msgid "No addresses found on this network" -#~ msgstr "No addresses found on this network" - -#~ msgid "Export to Excel" -#~ msgstr "Export to Excel" - -#~ msgid "Delete network" -#~ msgstr "Delete network" - -#~ msgid "Exact address match" -#~ msgstr "Exact address match" - -#~ msgid "Big" -#~ msgstr "Big" - -#~ msgid "Last check" -#~ msgstr "Last check" - -#~ msgid "Tiny" -#~ msgstr "Tiny" - -#~ msgid "ASC" -#~ msgstr "ASC" - -#~ msgid "DESC" -#~ msgstr "DESC" - -#~ msgid "Filter options" -#~ msgstr "Filter options" - -#~ msgid "Show not alive hosts" -#~ msgstr "Show not alive hosts" - -#~ msgid "Show only managed addresses" -#~ msgstr "Show only managed addresses" - -#~ msgid "Icons style" -#~ msgstr "Icons style" - -#~ msgid "Change to manual mode" -#~ msgstr "Change to manual mode" - -#~ msgid "This address will not be updated by the server" -#~ msgstr "This address will not be updated by the server" - -#~ msgid "Disabled address" -#~ msgstr "Disabled address" - -#~ msgid "Change to automatic mode" -#~ msgstr "Change to automatic mode" - -#~ msgid "Not alive" -#~ msgstr "Not alive" - -#~ msgid "Subnetworks calculator" -#~ msgstr "Subnetworks calculator" - -#~ msgid "Add comments" -#~ msgstr "Add comments" - -#~ msgid "Please, uncheck auto option to set manual agent." -#~ msgstr "Please, uncheck auto option to set manual agent." - -#~ msgid "Update agent address" -#~ msgstr "Update agent address" - -#~ msgid "IPAM" -#~ msgstr "IPAM" - -#~ msgid "Edit address" -#~ msgstr "Edit address" - -#~ msgid "Hosts/Net" -#~ msgstr "Hosts/Net" - -#~ msgid "Color" -#~ msgstr "Colour" - -#~ msgid "Local module" -#~ msgstr "Local Module" - -#~ msgid "ID Report" -#~ msgstr "Report ID" - -#~ msgid "Error service forced" -#~ msgstr "Error in forcing the service." - -#~ msgid "Service forced successfully" -#~ msgstr "Forcing of the service successful." - -#~ msgid "" -#~ "Left in blank if you want to use default name: Template name - agents (num " -#~ "agents) - Date" -#~ msgstr "" -#~ "Please leave it blank if you intend to use the default name: Template name - " -#~ "agents (num agents) - Date" - -#~ msgid "Successfully duplicate the module." -#~ msgstr "Duplication of the module successful." - -#~ msgid "Remote/Local" -#~ msgstr "Remote / Local" - -#~ msgid "Send to emails (separated by comma)" -#~ msgstr "Send to email addresses (separated by comma)" - -#~ msgid "Set center" -#~ msgstr "Set centre" - -#~ msgid "Show details" -#~ msgstr "Show details" - -#~ msgid "Satellite operations" -#~ msgstr "Satellite Operations" - -#~ msgid "Total IPs" -#~ msgstr "Total IPs" - -#~ msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -#~ msgstr "" -#~ "Display the task which contains the recon script called \"SNMP L2 Recon\" " -#~ "only." - -#~ msgid "" -#~ "It is setted any recon task, the nodes get from the recontask IP mask " -#~ "instead from the group." -#~ msgstr "" -#~ "If any Recon Task is defined, the nodes obtain their IPs from the " -#~ "recontask's IP mask instead from the group." - -#~ msgid "Updated modules on database" -#~ msgstr "Updated modules in the database" - -#~ msgid "Massive Satellite modules edition" -#~ msgstr "Massive Satellite Modules Editing" - -#~ msgid "Agent configuration files updated" -#~ msgstr "Agent configuration files updated." - -#~ msgid "Filter module" -#~ msgstr "Filter Module" - -#~ msgid "Not managed" -#~ msgstr "Unmanaged" - -#~ msgid "SLA Compliance per days" -#~ msgstr "SLA Compliance per days" - -#~ msgid "A -> Z" -#~ msgstr "A -> Z" - -#~ msgid "Z -> A" -#~ msgstr "Z -> A" - -#~ msgid "Newer -> Older" -#~ msgstr "Newer -> Older" - -#~ msgid "Older -> Newer" -#~ msgstr "Older -> Newer" - -#~ msgid "Day" -#~ msgstr "Day" - -#~ msgid "Summary of SLA Fails" -#~ msgstr "Summary of SLA Failures" - -#, php-format -#~ msgid "Edit node %s" -#~ msgstr "Edit node %s" - -#~ msgid "Holding Area" -#~ msgstr "Holding Area" - -#~ msgid "Refresh Holding area" -#~ msgstr "Refresh Holding Area" - -#~ msgid "Add node" -#~ msgstr "Add node" - -#~ msgid "Set parent" -#~ msgstr "Define as parent element" - -#~ msgid "Update fictional node" -#~ msgstr "Update fictional node" - -#~ msgid "Networkmap to link" -#~ msgstr "Networkmap to link" - -#~ msgid "name fictional node" -#~ msgstr "Name fictional node" - -#~ msgid "Edit node" -#~ msgstr "Edit node" - -#~ msgid "Node options" -#~ msgstr "Node Options" - -#~ msgid "Set as children" -#~ msgstr "Define as children element" - -#~ msgid "Interface source" -#~ msgstr "Interface Source" - -#~ msgid "Node source" -#~ msgstr "Node Source" - -#~ msgid "Add agent node (filter by group)" -#~ msgstr "Add Agent Node (filter by group)" - -#~ msgid "Add fictional node" -#~ msgstr "Add Fictional Node" - -#~ msgid "Relations" -#~ msgstr "Relations" - -#~ msgid "Add agent node" -#~ msgstr "Add Agent Node" - -#~ msgid "Node target" -#~ msgstr "Node Target" - -#~ msgid "There are not relations" -#~ msgstr "There are no relations." - -#~ msgid "Interface Target" -#~ msgstr "Interface Target" - -#~ msgid "Block Mode" -#~ msgstr "Block Mode" - -#~ msgid "Source data" -#~ msgstr "Source data" - -#~ msgid "Source from recon task" -#~ msgstr "Source from recon task" - -#~ msgid "CIDR IP mask" -#~ msgstr "CIDR IP mask" - -#~ msgid "Source from CIDR IP mask" -#~ msgstr "Source from CIDR IP mask" - -#~ msgid "Start empty networkmap" -#~ msgstr "Start empty networkmap" - -#~ msgid "Client" -#~ msgstr "Client" - -#, php-format -#~ msgid "There are %s updates, and the first to update is:" -#~ msgstr "There are %s updates, and the first to update is:" - -#~ msgid "Version number:" -#~ msgstr "Version number:" - -#~ msgid "Trial" -#~ msgstr "Trial" - -#~ msgid "Diff view" -#~ msgstr "Diff view" - -#~ msgid "Unsucessful get module inventory data." -#~ msgstr "Getting module inventory data was unsuccessful." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "Licence out of limits

" -#~ "This licence allows %d agents and you have %d agents configured." - -#~ msgid "License Info" -#~ msgstr "Licence Info" - -#~ msgid "License info" -#~ msgstr "Licence info" - -#~ msgid "" -#~ "This license has expired. " -#~ "

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

You cannot get any updates until you've renewed the licence." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid licence :" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "Please contact Artica at info@artica.es to renew the licence." - -#~ msgid "The services list is empty" -#~ msgstr "The services list is empty" - -#~ msgid "Icon preview" -#~ msgstr "Icon preview" diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index f3ba7a66e2736e5238d78e37f2c56aee61df5b4f..7d12e4d2c1be14ee556ef7ab0113c21cebad7b0c 100644 GIT binary patch delta 93040 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�hBR_EtO&nu7s6$u~>TuPC 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⁢b81+Li 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

iCZV4T`4L!#@p|UAah<_m8hDfI7fWPsE zhlugTWDBWK5xxG8!{8;34x_mThPPcP=f+_#vdxFEBnF)cybkAyRXZA8*D}fRk&lFv zBTpeA?FET-Vq6HDQ4tc^jK9UE6Z{ma8HQO|Y~H~6@$Stz0{a8*m7cKC+ugqe3hY2JEaonE@<9Gw?t=*f>Cd|ViyUZi z#l6TESbWocK2q4&`|f&yX%E~vJaPMkcIw@>r>kn0UTu5O&lMKwvAagtFOS`Q0*Rlv z|Mmo;|LyMO3tRBYT_fOo?VcJVZ1HDz{IHXs-TMNIzqns}HqZ4mh!hqpvL|hzS!7R4 zcVI*m&k}DSe+*A;Z(v4jPyghBgxNf`+=1e`J%hY~TlqYv+=1-{JoVgxRE0bqPoP>6 z&jVi|UrA42Z(vIq&qz<8d3n!;NP(VJJ&E0cuxg%ap1|uGo+Q3N(mI|JoT;Jh|M2hZcOdf_&!6sc1#{*r6q2WK zv4RD&=b=Tf5!$m?&iXwassNOV{FkTz{Yx`lS{-L@C|ma$Dp z+4gPOyq;mNAA1u7LeG0Px&wnRdWL%f>92SSxFbi87A;yxNLbUWo(fTVv~Ay^XRjV% zORjo~x;q7KUiD;(7D#g6)5jCI_R#au8~E_lQ`_zC9CoL@FHxZB-<}zsK%$W|+hJ=Q63Jv>u!22o?=aBcAH{d(!eH}S0$r*2^K;JXoQtrUTv)&=T zK*o%P%i_D~2@J~a^F|6x&g0{zTA$xn*&Fy+$hRbV;7eIwp9F!c4SavZ3QTL` ztCuLSbbv3+>j}vbC^y7+(-+olgs)Vf?nvLl$bqO6e7|}F>wodx@q}%g;>#I`In_7X z7j|xz?`g{Y+q;B>w&~oVi?%qlP1hbu&oT{Mne8hVBP{z;U)^{WyL1YrSRs8_LTIZ_ zJfhMp^Bs&7_;\n" +"PO-Revision-Date: 2015-06-30 13:27+0000\n" +"Last-Translator: Carlos Moreno \n" "Language-Team: Español; Castellano <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:56+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: \n" #: ../../godmode/groups/configure_group.php:68 @@ -850,6 +850,8 @@ msgid "" "When you change the Agent position, the agent automatically activates the " "'Ignore new GIS data' option" msgstr "" +"Cuando se cambia la posición de agente, el agente activa automáticamente la " +"opción 'Ignorar nuevos datos GIS '" #: ../../godmode/agentes/agent_conf_gis.php:60 msgid "Agent position" @@ -2654,7 +2656,7 @@ msgstr "metodo de autenticación y privacidad" #: ../../godmode/agentes/planned_downtime.list.php:40 msgid "An error occurred while migrating the malformed planned downtimes" msgstr "" -"Ha ocurrido un error mientras se migrabam paradas planificadas mal formadas" +"Ha ocurrido un error mientras se migraban paradas planificadas mal formadas" #: ../../godmode/agentes/planned_downtime.list.php:41 msgid "Please run the migration again or contact with the administrator" @@ -4139,7 +4141,7 @@ msgstr "No se proporcionó ningún nombre de módulo" #: ../../godmode/agentes/module_manager_editor.php:516 msgid "No target IP provided" -msgstr "No se proporcionó ninguna IP de desino" +msgstr "No se proporcionó ninguna IP de destino" #: ../../godmode/agentes/module_manager_editor.php:517 msgid "No SNMP OID provided" @@ -5732,6 +5734,8 @@ msgid "" "Your PHP environment is setted with %d max_input_vars. Maybe you must not " "set this value with upper values." msgstr "" +"Tu entorno PHP fue establecido con % de max_input_vars. Tal vez no deba " +"establecer este valor con valores superiores" #: ../../godmode/setup/setup_general.php:271 msgid "General options" @@ -6205,7 +6209,7 @@ msgstr "Espesor de la línea predeterminada para el gráfico personalizado." #: ../../godmode/setup/setup_visuals.php:498 #: ../../include/functions_config.php:465 msgid "Render data of module type is proc." -msgstr "" +msgstr "Devuelve datos del módulo tipo proc" #: ../../godmode/setup/setup_visuals.php:690 msgid "Logo preview" @@ -8435,7 +8439,7 @@ msgid "" "Unsucessful delete profile. Because the profile is used by some admin users." msgstr "" "La eliminación del perfil no ha tenido éxito. Porque el perfil está siendo " -"usado por algún administrador de usuarios." +"usado por algunos usuarios administradores." #: ../../godmode/users/profile_list.php:226 msgid "There was a problem updating this profile" @@ -10184,11 +10188,11 @@ msgstr "Mostrar gráfico" #: ../../godmode/reporting/reporting_builder.item_editor.php:1114 msgid "Show address instead module name." -msgstr "" +msgstr "Mostrar la dirección en vez del nombre del módulo" #: ../../godmode/reporting/reporting_builder.item_editor.php:1115 msgid "Show the main address of agent." -msgstr "Muestra la dirección principal del agente" +msgstr "Muestra la dirección principal del agente." #: ../../godmode/reporting/reporting_builder.item_editor.php:1126 msgid "Show resume" @@ -10409,7 +10413,7 @@ msgstr "Puerto del proxy" #: ../../godmode/update_manager/update_manager.setup.php:73 msgid "Proxy user:" -msgstr "usuario de proxy" +msgstr "Usuario del Proxy:" #: ../../godmode/update_manager/update_manager.setup.php:75 msgid "Proxy user" @@ -10758,8 +10762,8 @@ msgid "" "This field contains a substring, could be part of a IP address, a numeric " "OID, or a plain substring" msgstr "" -"Este campo contiene una subcadena , podría ser parte de una dirección IP , " -"un OID numérico o una subcadena simple" +"Este campo contiene una subcadena, que podría ser parte de una dirección IP " +", un OID numérico o una subcadena simple" #: ../../godmode/snmpconsole/snmp_filters.php:117 msgid "There are no SNMP filters" @@ -10919,7 +10923,7 @@ msgstr "Valor único" #: ../../godmode/snmpconsole/snmp_alert.php:732 #: ../../godmode/snmpconsole/snmp_alert.php:740 msgid "Variable bindings/Data" -msgstr "" +msgstr "Variables enlaces/ Datos" #: ../../godmode/snmpconsole/snmp_alert.php:806 msgid "Other value" @@ -10949,7 +10953,7 @@ msgstr "No hay definida ninguna alerta SNMP" #: ../../godmode/snmpconsole/snmp_alert.php:985 msgid "Custom Value/Enterprise String" -msgstr "" +msgstr "Valor personalizado / Cadena Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:990 #: ../../include/functions_reporting_html.php:1977 @@ -12365,7 +12369,7 @@ msgstr "Lista de módulos" #: ../../operation/agentes/status_monitor.php:1411 #: ../../operation/tree.php:348 msgid "Module: " -msgstr "" +msgstr "Módulo: " #: ../../operation/agentes/estado_monitores.php:428 msgid "Status:" @@ -13101,7 +13105,7 @@ msgstr "Nuevo filtro" #: ../../operation/events/events_list.php:237 msgid "Save in Group" -msgstr "" +msgstr "Guardar en el grupo" #: ../../operation/events/events_list.php:256 msgid "Overwrite filter" @@ -13288,7 +13292,7 @@ msgstr "Consola visual" #: ../../operation/menu.php:143 msgid "List of visual console" -msgstr "" +msgstr "Lista de la consola visual" #: ../../operation/menu.php:187 ../../operation/gis_maps/index.php:26 msgid "GIS Maps" @@ -13296,7 +13300,7 @@ msgstr "Mapas GIS" #: ../../operation/menu.php:191 msgid "List of Gis maps" -msgstr "" +msgstr "Lista de mapas Gis" #: ../../operation/menu.php:273 msgid "RSS" @@ -13325,7 +13329,7 @@ msgstr "Chat de la Web" #: ../../operation/menu.php:344 msgid "List of Incidents" -msgstr "" +msgstr "Lista de incidentes" #: ../../operation/menu.php:353 ../../operation/messages/message_edit.php:46 #: ../../operation/messages/message_list.php:43 @@ -13334,7 +13338,7 @@ msgstr "Mensajes" #: ../../operation/menu.php:358 msgid "Messages List" -msgstr "" +msgstr "Lista de mensages" #: ../../operation/menu.php:359 msgid "New message" @@ -13525,7 +13529,7 @@ msgstr "Resolución de dirección IP" #: ../../operation/netflow/nf_live_view.php:321 msgid "Select a filter" -msgstr "" +msgstr "Selecciona un filtro" #: ../../operation/netflow/nf_live_view.php:389 #: ../../include/functions_netflow.php:1632 @@ -13550,7 +13554,7 @@ msgstr "Actualizar filtro actual" #: ../../operation/netflow/nf_live_view.php:419 msgid "No filter selected" -msgstr "" +msgstr "No se ha seleccionado ningún filtro" #: ../../operation/tree.php:80 ../../include/ajax/networkmap.ajax.php:50 msgid "Policies" @@ -14079,6 +14083,8 @@ msgstr "Periodo de elementos antes de" #: ../../operation/reporting/reporting_viewer.php:244 msgid "Invalid date selected. Initial date must be before end date." msgstr "" +"Fecha seleccionada no válida. La fecha inicial debe ser anterior a la fecha " +"de finalización." #: ../../operation/reporting/reporting_viewer.php:352 #: ../../operation/reporting/graph_viewer.php:242 @@ -14225,7 +14231,7 @@ msgstr "Búsqueda por tipo de trap" #: ../../operation/snmpconsole/snmp_view.php:330 msgid "Group by Enterprise String/IP" -msgstr "" +msgstr "Agrupado por cadena Enterprise/IP" #: ../../operation/snmpconsole/snmp_view.php:357 #: ../../operation/snmpconsole/snmp_statistics.php:97 @@ -14242,7 +14248,7 @@ msgstr "Número" #: ../../operation/snmpconsole/snmp_view.php:413 msgid "Trap subtype" -msgstr "" +msgstr "Subtipo trap" #: ../../operation/snmpconsole/snmp_view.php:476 #: ../../operation/snmpconsole/snmp_statistics.php:137 @@ -14259,7 +14265,7 @@ msgstr "Ver más detalles" #: ../../operation/snmpconsole/snmp_view.php:593 msgid "Enterprise String:" -msgstr "" +msgstr "Cadena Enterprise" #: ../../operation/snmpconsole/snmp_view.php:599 msgid "Description:" @@ -14303,11 +14309,11 @@ msgstr "Número" #: ../../operation/snmpconsole/snmp_statistics.php:166 msgid "Traps received by Enterprise String" -msgstr "" +msgstr "Traps recibidos por cadena Enterprise" #: ../../operation/snmpconsole/snmp_statistics.php:179 msgid "Trap Enterprise String" -msgstr "" +msgstr "Traps Enterprise de cadena" #: ../../operation/snmpconsole/snmp_mib_uploader.php:66 msgid "" @@ -15182,9 +15188,9 @@ msgid "" msgstr "" "El acceso a esta página está restringido a usuarios autorizados solamente, " "por favor póngase en contacto con el administrador del sistema si necesita " -"ayuda.


\n" +"\t\t\tPor favor, sepa que todos los intentos de acceso a esta página son " +"guardados en los registros de seguridad de la base de datos de Sistema de " "Pandora" #: ../../general/login_page.php:35 @@ -15197,7 +15203,7 @@ msgstr "Ir a la pantalla de inicio" #: ../../general/login_page.php:125 msgid "pass" -msgstr "" +msgstr "pass" #: ../../general/login_page.php:133 msgid "Logged out" @@ -15490,11 +15496,12 @@ msgstr "El complemento ya está registrado: Abortando." #: ../../extensions/plugin_registration.php:272 msgid "Plug-in Remote Registered unsuccessfull" -msgstr "" +msgstr "Registro del plug-in remoto sin éxito" #: ../../extensions/plugin_registration.php:274 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "" +"Por favor verifique la sintaxis del archivo \"plugin_definition.ini\"" #: ../../extensions/plugin_registration.php:394 msgid "Module plugin registered" @@ -16089,10 +16096,13 @@ msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." msgstr "" +"Esta extensión comprueba que la Base de datos es correcta. Algunas veces la " +"antigua Base de datos al hacer una migración no tiene algunos campos en la " +"tabla o los datos han sido cambiados." #: ../../extensions/db_status.php:58 msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "" +msgstr "Por el momento las verificaciones son para MySQL / MariaDB" #: ../../extensions/db_status.php:63 msgid "DB settings" @@ -16108,58 +16118,64 @@ msgstr "Password BD para este usuario" #: ../../extensions/db_status.php:73 msgid "DB Hostname" -msgstr "" +msgstr "Nombre del host de la base de datos" #: ../../extensions/db_status.php:75 msgid "DB Name (temporal for testing)" -msgstr "" +msgstr "Nombre de la base de datos" #: ../../extensions/db_status.php:83 msgid "Execute Test" -msgstr "" +msgstr "Ejecutar la prueba" #: ../../extensions/db_status.php:110 msgid "Unsuccessful connected to the DB" -msgstr "" +msgstr "Conexión a la base de datos sin éxito" #: ../../extensions/db_status.php:117 msgid "Unsuccessful created the testing DB" -msgstr "" +msgstr "Creación de la BD testeada sin éxito" #: ../../extensions/db_status.php:128 msgid "Unsuccessful installed tables into the testing DB" msgstr "" +"Instalación de las tablas en la base de datos de prueba no ha tenido éxito" #: ../../extensions/db_status.php:139 msgid "Unsuccessful installed enterprise tables into the testing DB" msgstr "" +"Instalación de las tablas enterprise en la base de datos de prueba sin éxito" #: ../../extensions/db_status.php:190 msgid "Successful the DB Pandora has all tables" -msgstr "" +msgstr "La base de datos de Pandora tiene todas las tablas" #: ../../extensions/db_status.php:191 #, php-format msgid "" "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" msgstr "" +"Sin éxito, la base de datos de Pandora no tiene todas las tablas. Las tablas " +"perdidas son (%s)" #: ../../extensions/db_status.php:201 ../../extensions/db_status.php:258 #: ../../extensions/db_status.php:278 ../../extensions/db_status.php:290 #: ../../extensions/db_status.php:298 msgid "You can execute this SQL query for to fix." -msgstr "" +msgstr "Puede ejecutar esta consulta SQL para arreglarlo" #: ../../extensions/db_status.php:255 #, php-format msgid "Unsuccessful the table %s has not the field %s" -msgstr "" +msgstr "Sin éxito, la tabla %s no tiene todos los campos %s" #: ../../extensions/db_status.php:275 #, php-format msgid "" "Unsuccessful the field %s in the table %s must be setted the type with %s." msgstr "" +"Sin éxito, los campos %s de la tabla %s debe tener establecidos el tipo con " +"%s" #: ../../extensions/db_status.php:286 #, php-format @@ -16167,6 +16183,8 @@ msgid "" "Unsuccessful the field %s in the table %s must be setted the null values " "with %s." msgstr "" +"Sin éxito, el campo% s en la tabla % s debe establecer los valores nulos " +"con % s ." #: ../../extensions/db_status.php:308 #, php-format @@ -16174,10 +16192,14 @@ msgid "" "Unsuccessful the field %s in the table %s must be setted the key as defined " "in the SQL file." msgstr "" +"Sin éxito, el campo% s en la tabla % s debe establecer la clave tal como se " +"define en el archivo SQL ." #: ../../extensions/db_status.php:311 msgid "Please check the SQL file for to know the kind of key needed." msgstr "" +"Por favor, consulte el archivo de SQL para conocer el tipo de clave " +"necesaria." #: ../../extensions/db_status.php:315 #, php-format @@ -16185,11 +16207,15 @@ msgid "" "Unsuccessful the field %s in the table %s must be setted the default value " "as %s." msgstr "" +"Sin éxito, el campo% s en la tabla % s debe establecer el valor por defecto " +"como% s ." #: ../../extensions/db_status.php:318 msgid "" "Please check the SQL file for to know the kind of default value needed." msgstr "" +"Por favor, consulte el archivo de SQL para conocer el tipo de valor " +"predeterminado es necesario." #: ../../extensions/db_status.php:322 #, php-format @@ -16197,15 +16223,19 @@ msgid "" "Unsuccessful the field %s in the table %s must be setted as defined in the " "SQL file." msgstr "" +"Sin éxito, el campo% s en la tabla % s debe establecese como se define en el " +"archivo SQL ." #: ../../extensions/db_status.php:325 msgid "" "Please check the SQL file for to know the kind of extra config needed." msgstr "" +"Por favor, comprueba el archivo SQL para conocer el tipo de configuración " +"adicional necesaria." #: ../../extensions/db_status.php:336 msgid "Successful all the tables have the correct fields" -msgstr "" +msgstr "Todas las tablas tienen los campos correctos" #: ../../extensions/agents_modules.php:119 #: ../../include/functions_reports.php:577 @@ -16572,6 +16602,9 @@ msgid "" "This item is affected by a malformed planned downtime. Go to the planned " "downtimes section to solve this." msgstr "" +"Este item se ve afectado por un tiempo de inactividad planificado con " +"formato incorrecto. Ir a la sección de los tiempos de parada planificada " +"para resolver esto." #: ../../include/functions_reporting.php:882 msgid "Top N" @@ -16633,15 +16666,15 @@ msgstr "Valor máximo" #: ../../include/functions_reporting.php:1226 msgid "Event Report Group" -msgstr "" +msgstr "Evento Grupo del Informe" #: ../../include/functions_reporting.php:1402 msgid "Event Report Module" -msgstr "" +msgstr "Evento módulo del Informe" #: ../../include/functions_reporting.php:1445 msgid "Inventory Changes" -msgstr "" +msgstr "Cambios de Inventario" #: ../../include/functions_reporting.php:1476 msgid "No changes found." @@ -16649,7 +16682,7 @@ msgstr "No se han encontrado cambios." #: ../../include/functions_reporting.php:1550 msgid "Agent/Modules" -msgstr "" +msgstr "Agentes / módulos" #: ../../include/functions_reporting.php:1649 #: ../../include/functions_reports.php:574 @@ -16700,41 +16733,41 @@ msgstr "Excepción - Módulos en estado crítico o de advertencia" #: ../../include/functions_reporting.php:1881 msgid "There are no Modules under those conditions." -msgstr "" +msgstr "No hay módulos bajo esas condiciones" #: ../../include/functions_reporting.php:1884 #, php-format msgid "There are no Modules over or equal to %s." -msgstr "" +msgstr "No hay módulos mayores o iguales a %s" #: ../../include/functions_reporting.php:1887 #, php-format msgid "There are no Modules less or equal to %s." -msgstr "" +msgstr "No hay módulos menores o igual a %s" #: ../../include/functions_reporting.php:1890 #, php-format msgid "There are no Modules less %s." -msgstr "" +msgstr "No hay módulos menores %s" #: ../../include/functions_reporting.php:1893 #, php-format msgid "There are no Modules over %s." -msgstr "" +msgstr "No hay módulos mayores %s" #: ../../include/functions_reporting.php:1896 #, php-format msgid "There are no Modules equal to %s" -msgstr "" +msgstr "No hay módules iguales a %s" #: ../../include/functions_reporting.php:1899 #, php-format msgid "There are no Modules not equal to %s" -msgstr "" +msgstr "No hay módulos no iguales a %s" #: ../../include/functions_reporting.php:1902 msgid "There are no Modules normal status" -msgstr "" +msgstr "No hay módulos en estado normal" #: ../../include/functions_reporting.php:1905 msgid "There are no Modules at critial or warning status" @@ -16742,15 +16775,15 @@ msgstr "No hay módulos en estado crítico o de advertencia" #: ../../include/functions_reporting.php:2048 msgid "Group Report" -msgstr "" +msgstr "Informe del grupo" #: ../../include/functions_reporting.php:2100 msgid "Event Report Agent" -msgstr "" +msgstr "Evento Agente de Informe" #: ../../include/functions_reporting.php:2243 msgid "Database Serialized" -msgstr "" +msgstr "Base de datos serializada" #: ../../include/functions_reporting.php:2345 #: ../../include/functions_reports.php:629 @@ -16759,7 +16792,7 @@ msgstr "Configuración del grupo" #: ../../include/functions_reporting.php:2400 msgid "Network interfaces report" -msgstr "" +msgstr "Informe de las interfaces de red" #: ../../include/functions_reporting.php:2419 msgid "" @@ -16768,31 +16801,31 @@ msgstr "El grupo no tiene agentes o los agentes no tienen interfaz de red" #: ../../include/functions_reporting.php:2469 msgid "bytes/s" -msgstr "" +msgstr "bytes/s" #: ../../include/functions_reporting.php:2498 msgid "Alert Report Group" -msgstr "" +msgstr "Grupo de informe de alerta" #: ../../include/functions_reporting.php:2625 msgid "Alert Report Agent" -msgstr "" +msgstr "Agente informe de alerta" #: ../../include/functions_reporting.php:2733 msgid "Alert Report Module" -msgstr "" +msgstr "Módulo informe de alerta" #: ../../include/functions_reporting.php:2851 msgid "SQL Graph Vertical Bars" -msgstr "" +msgstr "Barras de gráficas verticales SQL" #: ../../include/functions_reporting.php:2854 msgid "SQL Graph Horizontal Bars" -msgstr "" +msgstr "Barras de gráficas horizontales SQL" #: ../../include/functions_reporting.php:2857 msgid "SQL Graph Pie" -msgstr "" +msgstr "Gráfica SQL circular" #: ../../include/functions_reporting.php:2904 msgid "Monitor Report" @@ -16800,23 +16833,23 @@ msgstr "Informe de monitores" #: ../../include/functions_reporting.php:2972 msgid "Netflow Area" -msgstr "" +msgstr "Área de netflow" #: ../../include/functions_reporting.php:2975 msgid "Netflow Pie" -msgstr "" +msgstr "Tarta Netflow" #: ../../include/functions_reporting.php:2978 msgid "Netflow Data" -msgstr "" +msgstr "Datos de netflow" #: ../../include/functions_reporting.php:2981 msgid "Netflow Statistics" -msgstr "" +msgstr "Estadísticas de netflow" #: ../../include/functions_reporting.php:2984 msgid "Netflow Summary" -msgstr "" +msgstr "Resumen de netflow" #: ../../include/functions_reporting.php:3047 #: ../../include/functions_reports.php:501 @@ -16825,7 +16858,7 @@ msgstr "Gráfica simple de línea base" #: ../../include/functions_reporting.php:3107 msgid "Prediction Date" -msgstr "" +msgstr "Fecha de predicción." #: ../../include/functions_reporting.php:3148 msgid "Projection Graph" @@ -16876,15 +16909,18 @@ msgid "" "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " "update." msgstr "" +"Consulta ilegal: Debido a restricciones de seguridad, hay algunos símbolos o " +"palabras que usted no puede utilizar: * , delete, drop, alter, modify, " +"union, password, pass, insert o update." #: ../../include/functions_reporting.php:3628 #: ../../include/functions_reports.php:588 msgid "Availability" -msgstr "" +msgstr "Disponibilidad" #: ../../include/functions_reporting.php:3689 msgid "No Address" -msgstr "" +msgstr "Sin dirección" #: ../../include/functions_reporting.php:4056 msgid "Minimal" @@ -17253,7 +17289,7 @@ msgstr "¿Quieres salir de la ayuda guiada?" #: ../../include/help/clippy/server_queued_modules.php:39 msgid "Excesive Queued." -msgstr "" +msgstr "Encolamiento excesivo" #: ../../include/help/clippy/server_queued_modules.php:44 msgid "" @@ -17353,7 +17389,7 @@ msgstr "" #: ../../include/help/clippy/interval_agent_min.php:39 msgid "Interval Agent." -msgstr "" +msgstr "Intervalo de agente" #: ../../include/help/clippy/interval_agent_min.php:44 msgid "" @@ -17364,6 +17400,13 @@ msgid "" "unknown modules is higher, and the impact on the server is higher because it " "requires a shorter response time." msgstr "" +"Por favor, tenga en cuenta que no se recomienda que tengan los agentes con " +"un intervalo de monitorización por debajo de 300 segundos. Esto tendrá un " +"impacto serio en el rendimiento del servidor. Por ejemplo, tener 200 agentes " +"con un intervalo de un minuto, es lo mismo que tener 1.000 agentes con un " +"intervalo de 5 minutos. La probabilidad de obtener módulos desconocidos es " +"más alto, y el impacto en el servidor es mayor, ya que requiere un tiempo de " +"respuesta más corto." #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 msgid "Fill the name of your action." @@ -17512,6 +17555,13 @@ msgid "" "from the agent, this applies for example for crit/warn thresholds, interval, " "module group, min/max value, tags, etc." msgstr "" +"Por favor, tenga en cuenta que la información aquí proporcionada afecta la " +"forma de cómo el agente recoge la información y genera el XML de datos. " +"Cualquier dato / configuración enviado por el agente, a diferencia de los " +"enviados desde datos o descripción que son descartados, y la configuración " +"mostrada en la consola prevalece sobre cualquier configuración procedente " +"del agente, esto se aplica por ejemplo para umbrales críticos / advertencia " +", intervalo , grupo módulo, valor mínimo / máximo, etiquetas , etc." #: ../../include/help/clippy/data_configuration_module.php:50 msgid "" @@ -17519,10 +17569,13 @@ msgid "" "can see in the console, but after the first import, system will ignore any " "update coming from the XML/Agent." msgstr "" +"Información importada la PRIMERA vez desde el XML llenará la información " +"que se puede ver en la consola, pero después de la primera importación , el " +"sistema ignorará cualquier actualización que viene del XML / Agente ." #: ../../include/help/clippy/topology_group.php:39 msgid "Topology Group" -msgstr "" +msgstr "Tipología de grupo" #: ../../include/help/clippy/topology_group.php:44 msgid "" @@ -17530,10 +17583,13 @@ msgid "" "between nodes, it only shows the group parentship and the agent distribution " "inside them. " msgstr "" +"Tenga en cuenta que el grupo mapas de topología no muestran la relación " +"padre entre los nodos , sólo muestra el grupo padre y el agente de " +"distribución dentro de ellos " #: ../../include/help/clippy/servers_down.php:39 msgid "All servers down" -msgstr "" +msgstr "Todo los servidores están caídos" #: ../../include/help/clippy/servers_down.php:44 msgid "" @@ -17541,6 +17597,9 @@ msgid "" "command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " "introduce root pass." msgstr "" +"Usted puede activar todos los servidores. Tiene que ir al terminal de linux " +"y ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server " +"restart\". Es posible que necesite introducir la contraseña de root." #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 msgid "Now you must go to Modules. Don't worry I'll lead you." @@ -18033,12 +18092,15 @@ msgstr "Resumen del mapa" msgid "" "This is the private code that you should use with your authenticator app" msgstr "" +"Este es la clave privada que debería usar con su aplicación de autenticación" #: ../../include/ajax/double_auth.ajax.php:147 #: ../../include/ajax/double_auth.ajax.php:283 msgid "" "You could enter the code manually or use the QR code to add it automatically" msgstr "" +"Puede introducir el código manualmente o usar el código QR para añadirlo " +"automáticamente" #: ../../include/ajax/double_auth.ajax.php:151 #: ../../include/ajax/double_auth.ajax.php:287 @@ -18048,11 +18110,11 @@ msgstr "Código" #: ../../include/ajax/double_auth.ajax.php:153 #: ../../include/ajax/double_auth.ajax.php:289 msgid "QR" -msgstr "" +msgstr "QR" #: ../../include/ajax/double_auth.ajax.php:189 msgid "You are about to activate the double authentication" -msgstr "" +msgstr "Esta a punto de activar la doble autenticación" #: ../../include/ajax/double_auth.ajax.php:190 msgid "" @@ -18060,15 +18122,19 @@ msgid "" "\t\tcause a code generated by other application will be required after the " "login" msgstr "" +"Con esta opción habilitada, su acceso a la cuenta será más seguro,\n" +"\t\t porque el código generado por otra aplicación se generará despues de " +"conectarse" #: ../../include/ajax/double_auth.ajax.php:194 msgid "" "You will need to install the app from the following link before continue" msgstr "" +"Necesitará instalar la aplicación desde el siguiente link antes de continuar" #: ../../include/ajax/double_auth.ajax.php:199 msgid "Download the app" -msgstr "" +msgstr "Descargue la aplicación" #: ../../include/ajax/double_auth.ajax.php:203 #: ../../include/ajax/double_auth.ajax.php:294 @@ -18077,44 +18143,46 @@ msgstr "Continuar" #: ../../include/ajax/double_auth.ajax.php:219 msgid "Are you installed the app yet?" -msgstr "" +msgstr "¿Ya ha instalado la aplicación?" #: ../../include/ajax/double_auth.ajax.php:277 msgid "A private code has been generated" -msgstr "" +msgstr "Un código privado ha sido generado" #: ../../include/ajax/double_auth.ajax.php:282 msgid "" "Before continue, you should create a new entry into the authenticator app" msgstr "" +"Antes de continuar, debería crear una nueva entrada dentro de la aplicación " +"de autenticación" #: ../../include/ajax/double_auth.ajax.php:292 msgid "Refresh code" -msgstr "" +msgstr "Refrescar el código" #: ../../include/ajax/double_auth.ajax.php:358 msgid "Are you introduced the code in the authenticator app yet?" -msgstr "" +msgstr "¿ Ya ha introducido el código en la aplicación de autenticación?" #: ../../include/ajax/double_auth.ajax.php:420 msgid "Introduce a code generated by the app" -msgstr "" +msgstr "Introduce el código generado por la aplicación" #: ../../include/ajax/double_auth.ajax.php:421 msgid "If the code is valid, the double authentication will be activated" -msgstr "" +msgstr "Si el código es válido, la doble autenticación se activará" #: ../../include/ajax/double_auth.ajax.php:430 msgid "Validate code" -msgstr "" +msgstr "Validar código" #: ../../include/ajax/double_auth.ajax.php:481 msgid "The code is valid, you can exit now" -msgstr "" +msgstr "El código es válido, puede salir ahora" #: ../../include/ajax/double_auth.ajax.php:497 msgid "The code is valid, but it was an error saving the data" -msgstr "" +msgstr "El código es válido, pero hubo un error guardando los datos" #: ../../include/ajax/update_manager.ajax.php:73 msgid "There was an error extracting the file '" @@ -18352,7 +18420,7 @@ msgstr "El directorio %s no existe" #: ../../include/functions_filemanager.php:552 msgid "Index of images" -msgstr "" +msgstr "Índice de imágenes" #: ../../include/functions_filemanager.php:590 msgid "Parent directory" @@ -18912,7 +18980,7 @@ msgstr "Identificacion del agente" #: ../../include/functions_events.php:1576 msgid "Module Agent address" -msgstr "" +msgstr "Dirección del módulo de agente" #: ../../include/functions_events.php:1668 msgid "Change owner" @@ -20281,7 +20349,7 @@ msgstr "Puerto de la BD de réplica" #: ../../include/functions_config.php:223 msgid "Metaconsole agent cache" -msgstr "" +msgstr "Cache agente metaconsola" #: ../../include/functions_config.php:225 msgid "Activate Log Collector" @@ -20374,7 +20442,7 @@ msgstr "Servidor de Integria" #: ../../include/functions_config.php:331 msgid "Session timeout" -msgstr "" +msgstr "Sesión expirada" #: ../../include/functions_config.php:413 msgid "Show QR code header" @@ -20622,10 +20690,12 @@ msgid "" "Variable disable_functions containts functions system() or exec(), in PHP " "configuration file (php.ini)" msgstr "" +"La variable disable_functions contiene las funciones system() o exec() en el " +"fichero de configuración de php (php.ini)" #: ../../include/functions_config.php:1511 msgid "Problems with disable functions in PHP.INI" -msgstr "" +msgstr "Problemas para desactivar funciones en PHP.INI" #: ../../include/functions_custom_graphs.php:205 msgid "Empty graph" @@ -20716,7 +20786,7 @@ msgstr "Eventos por agente" #: ../../include/functions_reporting_html.php:570 msgid "Events by user validator" -msgstr "" +msgstr "Eventos por usuario validador" #: ../../include/functions_reporting_html.php:582 #: ../../include/functions_reporting_html.php:1161 @@ -20726,7 +20796,7 @@ msgstr "Eventos por criticidad" #: ../../include/functions_reporting_html.php:594 msgid "Events validated vs unvalidated" -msgstr "" +msgstr "Eventos validados vs no validados" #: ../../include/functions_reporting_html.php:696 msgid "Added" @@ -20735,27 +20805,27 @@ msgstr "Añadido" #: ../../include/functions_reporting_html.php:850 #, php-format msgid "%s in %s : NORMAL" -msgstr "" +msgstr "%s en %s : NORMAL" #: ../../include/functions_reporting_html.php:858 #, php-format msgid "%s in %s : CRITICAL" -msgstr "" +msgstr "%s en %s : CRITICAL" #: ../../include/functions_reporting_html.php:866 #, php-format msgid "%s in %s : WARNING" -msgstr "" +msgstr "%s en %s : WARNING" #: ../../include/functions_reporting_html.php:874 #, php-format msgid "%s in %s : UNKNOWN" -msgstr "" +msgstr "%s en %s : DESCONOCIDO" #: ../../include/functions_reporting_html.php:882 #, php-format msgid "%s in %s : ALERTS FIRED" -msgstr "" +msgstr "%s en %s : ALERTA ENVIADA" #: ../../include/functions_reporting_html.php:1027 #: ../../include/functions_reporting_html.php:2367 @@ -20765,7 +20835,7 @@ msgstr "Monitores" #: ../../include/functions_reporting_html.php:1059 #, php-format msgid "Last %s" -msgstr "" +msgstr "Último %s" #: ../../include/functions_reporting_html.php:1149 msgid "Events validated by user" @@ -20791,35 +20861,35 @@ msgstr "Estado actual" #: ../../include/functions_reporting_html.php:1478 msgid "Empty modules" -msgstr "" +msgstr "Módulos vacíos" #: ../../include/functions_reporting_html.php:1485 msgid "Warning
Critical" -msgstr "" +msgstr "Warning
Critical" #: ../../include/functions_reporting_html.php:1625 msgid "# Checks" -msgstr "" +msgstr "# Chequeos" #: ../../include/functions_reporting_html.php:1626 msgid "# Failed" -msgstr "" +msgstr "# Fallidos" #: ../../include/functions_reporting_html.php:1627 msgid "% Fail" -msgstr "" +msgstr "% Fallo" #: ../../include/functions_reporting_html.php:1628 msgid "Poling time" -msgstr "" +msgstr "tiempo poling" #: ../../include/functions_reporting_html.php:1629 msgid "Time unavailable" -msgstr "" +msgstr "Tiempo indisponible" #: ../../include/functions_reporting_html.php:1630 msgid "% Ok" -msgstr "" +msgstr "% Ok" #: ../../include/functions_reporting_html.php:1976 msgid "Alert description" @@ -20932,5629 +21002,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "El archivo no se encuentra en disco, por favor, contacte con el " "administrador." - -#~ msgid "Module component management" -#~ msgstr "Gestión de componentes de red" - -#~ msgid "TCP port" -#~ msgstr "Puerto TCP" - -#~ msgid "Map builder" -#~ msgstr "Creador de mapas" - -#~ msgid "Two Months" -#~ msgstr "Dos meses" - -#~ msgid "Six Months" -#~ msgstr "Seis meses" - -#~ msgid "Label color" -#~ msgstr "Color de etiqueta" - -#~ msgid "Combined image render" -#~ msgstr "Visualización de imágenes combinadas" - -#~ msgid "Factor" -#~ msgstr "Factor" - -#~ msgid "Render now" -#~ msgstr "Ver ahora" - -#~ msgid "Redraw" -#~ msgstr "Redibujar" - -#~ msgid "Store" -#~ msgstr "Guardar" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Hubo un problema al crear el informe" - -#~ msgid "Custom reporting builder" -#~ msgstr "Creador de informes personalizados" - -#~ msgid "Add item to report" -#~ msgstr "Añadir elemento al informe" - -#~ msgid "Reporting type" -#~ msgstr "Tipo de informe" - -#~ msgid "Up" -#~ msgstr "Activo" - -#~ msgid "User successfully deleted" -#~ msgstr "Usuario eliminado correctamente" - -#~ msgid "Standard user" -#~ msgstr "Usuario estándar" - -#~ msgid "Database Maintenance" -#~ msgstr "Mantenimiento de la Base de Datos" - -#~ msgid "Total data" -#~ msgstr "Datos totales" - -#~ msgid "Event Database cleanup" -#~ msgstr "Limpieza de la Base de Datos de eventos" - -#~ msgid "Database Audit purge" -#~ msgstr "Depuración de la Base de Datos de auditoría" - -#~ msgid "Data from agent " -#~ msgstr "Datos del agente " - -#~ msgid "Database Information" -#~ msgstr "Información de la Base de Datos" - -#~ msgid "Modules per agent" -#~ msgstr "Módulos por agente" - -#~ msgid "Packets per agent" -#~ msgstr "Paquetes por agente" - -#~ msgid "Pandora Setup" -#~ msgstr "Configuración" - -#~ msgid "General configuration" -#~ msgstr "Configuración general" - -#~ msgid "Link successfully created" -#~ msgstr "El enlace se ha creado correctamente" - -#~ msgid "Link successfully updated" -#~ msgstr "Enlace actualizado correctamente" - -#~ msgid "Manage modules" -#~ msgstr "Gestionar módulos" - -#~ msgid "Report builder" -#~ msgstr "Creador de informes" - -#~ msgid "Modules successfully added " -#~ msgstr "Módulos añadidos correctamente " - -#~ msgid "Assigned modules" -#~ msgstr "Módulos asignados" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alerta eliminada correctamente" - -#~ msgid "Alert successfully created" -#~ msgstr "Alerta creada correctamente" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agente actualizado correctamente" - -#~ msgid "There was a problem adding module" -#~ msgstr "Ha habido un problema al añadir el módulo" - -#~ msgid "Alert type" -#~ msgstr "Tipo de alerta" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Campo #1 (Alias, nombre)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Campo #2 (Línea sencilla)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Campo #3 (Texto completo)" - -#~ msgid "Data Copy" -#~ msgstr "Copia de datos" - -#~ msgid "No selected agents to copy" -#~ msgstr "No se han seleccionado agentes destino para la copia" - -#~ msgid "Configuration Management" -#~ msgstr "Gestión de Configuraciones" - -#~ msgid "To Agent(s):" -#~ msgstr "Agente(s) destino" - -#~ msgid "Update agent" -#~ msgstr "Actualizar agente" - -#~ msgid "Network Server" -#~ msgstr "Servidor de red" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Este agente no tiene ningún módulo definido" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Perfil eliminado correctamente" - -#~ msgid "Profile successfully created" -#~ msgstr "Perfil creado correctamente" - -#~ msgid "Profile successfully updated" -#~ msgstr "Perfil actualizado correctamente" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alerta actualizada correctamente" - -#~ msgid "Network profile" -#~ msgstr "Perfil de red" - -#~ msgid "day" -#~ msgstr "día" - -#~ msgid "week" -#~ msgstr "semana" - -#~ msgid "month" -#~ msgstr "mes" - -#~ msgid "Master" -#~ msgstr "Principal" - -#~ msgid "Data Server" -#~ msgstr "Servidor de datos" - -#~ msgid "MD5 Check" -#~ msgstr "Comprobación MD5" - -#~ msgid "Event report" -#~ msgstr "Informe de eventos" - -#~ msgid "Alert report" -#~ msgstr "Informe de alertas" - -#~ msgid "Pandora users" -#~ msgstr "Usuarios de Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Estadísticas de actividad de los usuarios" - -#~ msgid "Event graph by group" -#~ msgstr "Gráfica de eventos por grupo" - -#~ msgid "Validated event" -#~ msgstr "Evento validado" - -#~ msgid "View users" -#~ msgstr "Ver usuarios" - -#~ msgid "Agent general information" -#~ msgstr "Información general del agente" - -#~ msgid "Thurdsday" -#~ msgstr "Jueves" - -#~ msgid "Hr" -#~ msgstr "Hr" - -#~ msgid " from " -#~ msgstr " desde " - -#~ msgid " to " -#~ msgstr " hasta " - -#~ msgid "Download file" -#~ msgstr "Descargar fichero" - -#~ msgid "No module has been selected" -#~ msgstr "No se ha seleccionado ningún módulo" - -#~ msgid "Begin date (*)" -#~ msgstr "Fecha comienzo (*)" - -#~ msgid "End date (*)" -#~ msgstr "Fecha fin (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Formato CSV" - -#~ msgid "Full list of Monitors" -#~ msgstr "Lista completa de monitores" - -#~ msgid "Load" -#~ msgstr "Carga" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Cambia entre los estados verde y rojo" - -#~ msgid "At least one monitor fails" -#~ msgstr "Al menos un monitor falla" - -#~ msgid "Agent without monitors" -#~ msgstr "Agente sin monitores" - -#~ msgid "Agent down" -#~ msgstr "Agente caído" - -#~ msgid "There are no agents included in this group" -#~ msgstr "No hay ningún agente incluido en este grupo" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Contenido de los últimos paquetes enviados por el agente" - -#~ msgid "int" -#~ msgstr "Itv." - -#~ msgid "Raw Data" -#~ msgstr "Datos" - -#~ msgid "Times Fired" -#~ msgstr "Número de veces lanzada" - -#~ msgid "Configuration detail" -#~ msgstr "Detalle de configuración" - -#~ msgid "General information" -#~ msgstr "Información general" - -#~ msgid "You don't have access" -#~ msgstr "No tiene acceso" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "No tiene suficientes permisos para acceder a este recurso" - -#~ msgid "Software agent data" -#~ msgstr "Datos del agente de software" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitores del agente de software" - -#~ msgid "Network agent data" -#~ msgstr "Datos del agente de red" - -#~ msgid "Network agent monitor" -#~ msgstr "Monitores del agente de red" - -#~ msgid "Wrong module type" -#~ msgstr "Tipo módulo" - -#~ msgid "Id" -#~ msgstr "ID" - -#~ msgid "Settings" -#~ msgstr "Ajustes" - -#~ msgid "Update server host" -#~ msgstr "Actualizar servidor" - -#~ msgid "preview" -#~ msgstr "vista previa" - -#~ msgid "Module deleted successfully" -#~ msgstr "Módulo borrado correctamente" - -#~ msgid "Link successfully deleted" -#~ msgstr "Enlace borrado correctamente" - -#~ msgid "WMI Query" -#~ msgstr "Consulta WMI" - -#~ msgid "Module assignment" -#~ msgstr "Asignación de módulos" - -#~ msgid "Global health" -#~ msgstr "Salud global" - -#~ msgid "Map element editor" -#~ msgstr "Editor de elementos" - -#~ msgid "Map element trash" -#~ msgstr "Papelera de elementos" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulario de desconexión planificada" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Crear un nuevo módulo de servidor de predicción" - -#~ msgid "Checking database consistency" -#~ msgstr "Comprobando consistencia de la base de datos" - -#~ msgid "General group report" -#~ msgstr "Informe general del grupo" - -#~ msgid "Port option" -#~ msgstr "Opción de puerto" - -#~ msgid "Agents in group" -#~ msgstr "Agentes en el grupo" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Eliminar ahora módulos no inicializados" - -#~ msgid "Sanitize my database now" -#~ msgstr "Comprobar ahora mi base de datos" - -#~ msgid "Desc" -#~ msgstr "Descripción" - -#~ msgid "Agents down" -#~ msgstr "Agentes caídos" - -#~ msgid "from" -#~ msgstr "desde" - -#~ msgid "SLA view" -#~ msgstr "Vista SLA" - -#~ msgid "Autorefresh" -#~ msgstr "Autorefresco" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "SLA Automáticos para los monitores" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Arrastre un elemento aquí para editar sus propiedades" - -#~ msgid "User option" -#~ msgstr "Opción de usuario" - -#~ msgid "Password option" -#~ msgstr "Opción de contraseña" - -#~ msgid "Logged Out" -#~ msgstr "Desconectado" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Esta es la Consola de administración de Pandora FMS. Desde aquí puede " -#~ "gestionar sus agentes, alertas e incidentes. La sesión permanecerá abierta " -#~ "mientras exista actividad." - -#~ msgid "Authentication Error" -#~ msgstr "Error de autenticación" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Arrastre un elemento aquí para borrarlo del mapa" - -#~ msgid "Last Month" -#~ msgstr "Último mes" - -#~ msgid "Graph builder module list" -#~ msgstr "Lista de módulos del creador de gráficas" - -#~ msgid "Reporting successfully created" -#~ msgstr "Informe se creó correctamente" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA creado correctamente" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Hubo un problema al crear el SLA" - -#~ msgid "Module is not set" -#~ msgstr "El módulo no está establecido" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA borrado correctamente" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Hubo un problema al borrar el SLA" - -#~ msgid "SLAs defined" -#~ msgstr "SLA definidos" - -#~ msgid "SLA report construction" -#~ msgstr "Creador de informes SLA" - -#~ msgid "Custom graph name" -#~ msgstr "Nombre de gráfica personalizada" - -#~ msgid "Duplicate config" -#~ msgstr "Duplicar configuración" - -#~ msgid "Max.Timeout" -#~ msgstr "Máx. tiempo de expiración" - -#~ msgid "Group management" -#~ msgstr "Gestionar grupos" - -#~ msgid "Manage profiles" -#~ msgstr "Gestionar perfiles" - -#~ msgid "DB Maintenance" -#~ msgstr "Mantenimiento BB. DD." - -#~ msgid "DB Information" -#~ msgstr "Información BB. DD." - -#~ msgid "Manage Database" -#~ msgstr "Gestionar la BB. DD." - -#~ msgid "Net. Templates" -#~ msgstr "Plantillas de red" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Hubo un problema al actualizar el agente" - -#~ msgid "There was a problem updating module" -#~ msgstr "Hubo un problema al actualizar el módulo" - -#~ msgid "Source group" -#~ msgstr "Grupo origen" - -#~ msgid "Plugin parameters" -#~ msgstr "Parámetros del complemento" - -#~ msgid "Oper" -#~ msgstr "Operador" - -#~ msgid "Delete agents" -#~ msgstr "Borrar agentes" - -#~ msgid "Plugin Server" -#~ msgstr "Servidor de complementos" - -#~ msgid "WMI Server" -#~ msgstr "Servidor WMI" - -#~ msgid "Prediction Server" -#~ msgstr "Servidor de predicción" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Crear un nuevo módulo de servidor de complementos" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Crear un nuevo módulo de servidor WMI" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "NC.Group" -#~ msgstr "Grupo C.R." - -#~ msgid "WMI component management" -#~ msgstr "Gestionar componentes WMI" - -#~ msgid "Module Interval" -#~ msgstr "Intervalo del módulo" - -#~ msgid "Minimum Data" -#~ msgstr "Datos mín." - -#~ msgid "Maximum Data" -#~ msgstr "Datos máx." - -#~ msgid "Database sanity tool" -#~ msgstr "Herramienta de salud de la BB. DD." - -#~ msgid "Deleting non-init data" -#~ msgstr "Borrando datos no inicializados" - -#~ msgid "Sumatory" -#~ msgstr "Sumatorio" - -#~ msgid "Agents detailed view" -#~ msgstr "Vista detallada de agentes" - -#~ msgid "Unmanaged error" -#~ msgstr "Error no gestionable" - -#~ msgid "Monitor down" -#~ msgstr "Monitor caído" - -#~ msgid "Tt" -#~ msgstr "UT" - -#~ msgid "MinMax.Al" -#~ msgstr "Alertas Mín/Máx" - -#~ msgid "St" -#~ msgstr "Es" - -#~ msgid "Network Map" -#~ msgstr "Mapa de red" - -#~ msgid "Free text" -#~ msgstr "Texto libre" - -#~ msgid "Events generated -by module-" -#~ msgstr "Eventos generados (por módulo)" - -#~ msgid "Database export results" -#~ msgstr "Resultados de la exportación de datos de la BB. DD." - -#~ msgid "Older" -#~ msgstr "Más antiguo" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Sistema de ayuda de Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Consola web de Pandora FMS" - -#~ msgid "Keygen file is not executable" -#~ msgstr "El fichero generador de claves no se puede ejecutar" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "El Update Manager envía información anónima acerca del uso de Pandora FMS " -#~ "(número de agentes y módulos en ejecución). Para desactivarlo, simplemente " -#~ "borre la extensión o quite la dirección del servidor remoto de la " -#~ "configuración del complemento de Update Manager." - -#~ msgid "Your system is up-to-date" -#~ msgstr "Su sistema está actualizado" - -#~ msgid "Server connection failed" -#~ msgstr "Falló la conexión con el servidor" - -#~ msgid "Server authorization rejected" -#~ msgstr "Se rechazó la autorización del servidor" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Existe una nueva actualización para Pandora FMS" - -#~ msgid "Overwrite local changes" -#~ msgstr "Sobreescribir cambios locales" - -#~ msgid "Your system version number is" -#~ msgstr "El número de versión de su sistema es" - -#~ msgid "Update manager settings updated" -#~ msgstr "Ajustes del Update Manager actualizados" - -#~ msgid "Update server path" -#~ msgstr "Actualizar ruta del servidor" - -#~ msgid "Update server port" -#~ msgstr "Actualizar puerto del servidor" - -#~ msgid "Binary input path" -#~ msgstr "Directorio de entrada de binarios" - -#~ msgid "Keygen path" -#~ msgstr "Ruta de generación de clave" - -#~ msgid "Development" -#~ msgstr "Desarrollo" - -#~ msgid "Testing" -#~ msgstr "Pruebas" - -#~ msgid "Code / binary directory" -#~ msgstr "Directorio de código / binario" - -#~ msgid "More info" -#~ msgstr "Más info." - -#~ msgid "Update manager settings" -#~ msgstr "Ajustes del Update Manager" - -#~ msgid "Update layout successful" -#~ msgstr "Diseño actualizado correctamente" - -#~ msgid "Update layout failed" -#~ msgstr "Falló la actualización del diseño" - -#~ msgid "3 hours" -#~ msgstr "3 horas" - -#~ msgid "4 days" -#~ msgstr "días" - -#~ msgid "Read Incidents" -#~ msgstr "Incidentes rechazados" - -#~ msgid "Create Incidents" -#~ msgstr "Crear incidente" - -#~ msgid "Manage Incidents" -#~ msgstr "Gestionar incidentes" - -#~ msgid "Read Agent Information" -#~ msgstr "Configuración de agentes" - -#~ msgid "Manage Agents" -#~ msgstr "Gestionar agentes" - -#~ msgid "Edit Alerts" -#~ msgstr "Editar alertas" - -#~ msgid "Manage User Rights" -#~ msgstr "Gestionar usuarios" - -#~ msgid "Database Management" -#~ msgstr "BB. DD. de eventos" - -#~ msgid "Alerts Management" -#~ msgstr "Gestión de alertas" - -#~ msgid "Pandora System Management" -#~ msgstr "Gestionar Pandora FMS" - -#~ msgid "Del" -#~ msgstr "Borrar" - -#~ msgid "Upd" -#~ msgstr "Activo" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Pulse aquí para ver de la BB. DD. como texto" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Pulse aquí para ver de la BB. DD. como texto" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Tarea de borrado lanzada para el agente" - -#~ msgid "Data older than" -#~ msgstr "Salud de los datos" - -#~ msgid "Deleting records for module" -#~ msgstr "Borrando registros para el módulo" - -#~ msgid "Total Agents" -#~ msgstr "Total agentes" - -#~ msgid "Uninitialized modules" -#~ msgstr "Módulos no inic." - -#~ msgid "" -#~ "The new
Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "El nuevo cliente de Update " -#~ "Manager viene con la nueva versión de Pandora FMS 2.0. Permite que los " -#~ "administradores actualicen sus Pandora FMS automáticamente, ya que el Update " -#~ "Manager obtendrá los módulos complementos y otras características nuevas " -#~ "(incluso migraciones completas de herramientas para futuras versiones) de " -#~ "forma automática." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "El Update Manager es una de las características más avanzadas de Pandora FMS " -#~ "2.0 Enterprise, para obtener más información visite http://pandorafms.com." - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Existe una nueva actualización para Pandora FMS" - -#~ msgid "Error updating export target" -#~ msgstr "Error al actualizar el servidor de exportación" - -#~ msgid "Successfully updated export target" -#~ msgstr "Servidor de exportación actualizado correctamente" - -#~ msgid "Error deleting export target" -#~ msgstr "Error al borrar el servidor de exportación" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Servidor de exportación borrado correctamente" - -#~ msgid "Error creating export target" -#~ msgstr "Error al crear el servidor de exportación" - -#~ msgid "Successfully created export target" -#~ msgstr "Servidor de exportación creado correctamente" - -#~ msgid "export targets" -#~ msgstr "Servidor de exportación" - -#~ msgid "There are no export targets configured" -#~ msgstr "No existe ningún servidor de exportación configurado" - -#~ msgid "Preffix" -#~ msgstr "Prefijo" - -#~ msgid "Transfer Mode" -#~ msgstr "Modo de transferencia" - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Tarea de reconocimiento borrada correctamente>" - -#~ msgid "Recon Server" -#~ msgstr "Servidor de exploración de red" - -#~ msgid "Transfer mode" -#~ msgstr "Modo de transferencia" - -#~ msgid "Target directory" -#~ msgstr "Directorio objetivo" - -#~ msgid "Extra options" -#~ msgstr "Opciones adicionales" - -#~ msgid "Export targets" -#~ msgstr "Servidores de exportación" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Periodo del SLA (segundos)" - -#~ msgid "Automatic update check" -#~ msgstr "Comprobación automática de actualizaciones" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Inicialización de estado incorrecta" - -#~ msgid "Available templates" -#~ msgstr "Plantillas disponibles" - -#~ msgid "Available Agents" -#~ msgstr "Agentes disponibles" - -#~ msgid "Add Modules" -#~ msgstr "Añadir módulos" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Comprobando tabla «tagente_estado»" - -#~ msgid "No layouts found" -#~ msgstr "No se encontraron diseños" - -#~ msgid "Alert trigger" -#~ msgstr "Disparador de alerta" - -#~ msgid "Custom Value" -#~ msgstr "Valor personalizado" - -#~ msgid "Alert Overview" -#~ msgstr "Vista general de alertas" - -#~ msgid "User-defined SLA items" -#~ msgstr "Elementos SLA definidos por el usuario" - -#~ msgid "System Events" -#~ msgstr "Eventos del sistema" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Ha habido un error al cargar la configuración de la alerta" - -#~ msgid "Search text" -#~ msgstr "Buscar texto" - -#~ msgid "SNMP server" -#~ msgstr "Servidor SNMP" - -#~ msgid "Seconds" -#~ msgstr "Segundos" - -#~ msgid "Alerts Fired" -#~ msgstr "Alertas disparadas" - -#~ msgid "Alerts defined" -#~ msgstr "Alertas definidas" - -#~ msgid "You are" -#~ msgstr "Conectado como" - -#~ msgid "MD5 check" -#~ msgstr "Comprobación MD5" - -#~ msgid "Search value" -#~ msgstr "Buscar valor" - -#~ msgid "Pandora Agents" -#~ msgstr "Agentes de Pandora FMS" - -#~ msgid "Flag" -#~ msgstr "Bandera" - -#~ msgid "No news articles at this moment" -#~ msgstr "En estos momentos no hay artículos de noticias" - -#~ msgid "Users defined" -#~ msgstr "Usuarios definidos" - -#~ msgid "Monitor up" -#~ msgstr "Monitor funcionando" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Este agente no tienen ningún monitor activo" - -#~ msgid "Keygen file does not exists" -#~ msgstr "El fichero generador de claves no existe" - -#~ msgid "Your IP" -#~ msgstr "Su IP" - -#~ msgid "Error adding module" -#~ msgstr "Error al añadir el módulo" - -#~ msgid "matches of the alert" -#~ msgstr "coincidencias de la alerta" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Este usuario tiene permisos para gestionar todo. Este es el usuario " -#~ "administrador y sobreescribe todos los permisos otorgados en los " -#~ "perfiles/grupos" - -#~ msgid "Field 1" -#~ msgstr "Campo 1" - -#~ msgid "Field 2" -#~ msgstr "Campo 2" - -#~ msgid "Field 3" -#~ msgstr "Campo 3" - -#~ msgid "Modules critical" -#~ msgstr "Módulos críticos" - -#~ msgid "Modules normal" -#~ msgstr "Módulos normales" - -#~ msgid "Modules warning" -#~ msgstr "Módulos en advertencia" - -#~ msgid "Single alerts" -#~ msgstr "Alertas simples" - -#~ msgid "No simple alerts found" -#~ msgstr "No se encontró ninguna alerta simple" - -#~ msgid "minute" -#~ msgstr "minuto" - -#~ msgid "First name" -#~ msgstr "Nombre" - -#~ msgid "Last name" -#~ msgstr "Apellido" - -#~ msgid "Group name" -#~ msgstr "Nombre del grupo" - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor no coincida con " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor sea " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor no sea " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor esté entre y " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor no esté entre y " - -#~ msgid "Monitors normal" -#~ msgstr "Monitores en normal" - -#~ msgid "Monitors warning" -#~ msgstr "Monitores en advertencia" - -#~ msgid "Monitors critical" -#~ msgstr "Monitores en crítico" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitores en desconocido" - -#~ msgid "Monitors not init" -#~ msgstr "Monitores no inicializados" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor coincida con " - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Monitor keepalive del agente" - -#~ msgid "Compound alerts" -#~ msgstr "Alertas compuestas" - -#~ msgid "Assigned actions" -#~ msgstr "Acciones asignadas" - -#~ msgid "Assigned to" -#~ msgstr "Asignada a" - -#~ msgid "Operator" -#~ msgstr "Operador" - -#~ msgid "Add condition" -#~ msgstr "Añadir condición" - -#~ msgid "No name was given" -#~ msgstr "No se proporcionó ningún nombre" - -#~ msgid "No agent was given" -#~ msgstr "No se proporcionó ningún agente" - -#~ msgid "No conditions were given" -#~ msgstr "No se proporcionó ninguna condición" - -#~ msgid "Last hour" -#~ msgstr "Última hora" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Últimos %s días" - -#~ msgid "No layout with this id found" -#~ msgstr "No se encontró una distribución con este ID" - -#~ msgid "Event not validated" -#~ msgstr "Evento no validado" - -#~ msgid "-Select user-" -#~ msgstr "-Seleccionar usuario-" - -#~ msgid "-Select group-" -#~ msgstr "-Seleccionar grupo-" - -#~ msgid "Read message" -#~ msgstr "Leer mensaje" - -#~ msgid "Visual map wizard" -#~ msgstr "Asistente de mapas visuales" - -#~ msgid "Image range (px)" -#~ msgstr "Rango de la imagen (px)" - -#~ msgid "Image size (px)" -#~ msgstr "Tamaño de la imagen (px)" - -#~ msgid "Correlation" -#~ msgstr "Correlación" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compactar CSS y JS en la cabecera" - -#~ msgid "Deleting file" -#~ msgstr "Borrando fichero" - -#~ msgid "Deleting" -#~ msgstr "Borrando" - -#~ msgid "Alerts disabled" -#~ msgstr "Alertas desactivadas" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "No existen servidores configurados en la base de datos" - -#~ msgid "Go to alert overview" -#~ msgstr "Ir a la vista general de alertas" - -#~ msgid "Create incident from event" -#~ msgstr "Crear incidente desde un evento" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hora" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d horas" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d día" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d días" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d semana" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d semanas" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mes" - -#~ msgid "attach_error" -#~ msgstr "error_de_adjunto" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Directorio %s creado" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "El servidor HTTP no puede escribir el directorio actual" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Compruebe que el servidor HTTP tiene permisos para escribir el directorio " -#~ "actual" - -#~ msgid "Visual configuration" -#~ msgstr "Configuración visual" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Creando una copia del archivo de configuración de" - -#~ msgid "Remote configuration management" -#~ msgstr "Gestión de configuración remota" - -#~ msgid "Edit modules" -#~ msgstr "Editar módulos" - -#~ msgid "Delete modules" -#~ msgstr "Borrar módulos" - -#~ msgid "Delete alerts" -#~ msgstr "Borrar alertas" - -#~ msgid "Massive agent deletion" -#~ msgstr "Borrado masivo de agentes" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "Hubo un error al borrar el agente; se canceló la operación" - -#~ msgid "Could not delete agent" -#~ msgstr "No se pudo borrar el agente" - -#~ msgid "Correlated alerts" -#~ msgstr "Alertas correladas" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configurar alerta correlada" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor esté por debajo de " - -#~ msgid "Agent detailed event" -#~ msgstr "Evento detallado del agente" - -#~ msgid "Agents detailed event" -#~ msgstr "Eventos detallados de agentes" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "No existen módulos en los que evaluar el S.L.A." - -#~ msgid "Module Down" -#~ msgstr "Módulo caído" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Servidor de exportación borrado correctamente" - -#~ msgid "To agent(s):" -#~ msgstr "Agente(s) destino:" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "Hubo un error al borrar las alertas, se canceló la operación" - -#~ msgid "Could not delete alerts" -#~ msgstr "No se pudieron borrar las alertas" - -#~ msgid "Could not delete modules" -#~ msgstr "No se pudieron borrar los módulos" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Plugin component" -#~ msgstr "Componente de complemento" - -#~ msgid "Network component" -#~ msgstr "Componente de red" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "La alerta se disparará cuando el valor esté por encima de " - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Módulos retrasados / Máx. retraso (seg)" - -#~ msgid "Invalid method supplied" -#~ msgstr "Método proporcionado no válido" - -#~ msgid "Module Up" -#~ msgstr "Módulo activo" - -#~ msgid "IP address option" -#~ msgstr "Opción de dirección IP" - -#~ msgid "Read incidents" -#~ msgstr "Leer incidentes" - -#~ msgid "Create incidents" -#~ msgstr "Crear incidentes" - -#~ msgid "Read agent information" -#~ msgstr "Leer configuración de agentes" - -#~ msgid "Manage user rights" -#~ msgstr "Gestionar usuarios" - -#~ msgid "Pandora system management" -#~ msgstr "Gestionar Pandora FMS" - -#~ msgid "Configuration management" -#~ msgstr "Gestión de la configuración" - -#~ msgid "Pandora agents" -#~ msgstr "Agentes de Pandora" - -#~ msgid "Custom graph store" -#~ msgstr "Almacenamiento de la gráfica personalizada" - -#~ msgid "Flash charts" -#~ msgstr "Gráficas en flash" - -#~ msgid "Replicate configuration" -#~ msgstr "Replicar configuración" - -#~ msgid "Timestamp from" -#~ msgstr "Fecha/Hora desde" - -#~ msgid "Timestamp to" -#~ msgstr "Fecha/Hora hasta" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Desconexión planificada presente en los sistemas" - -#~ msgid "Info" -#~ msgstr "Info." - -#~ msgid "E/D" -#~ msgstr "H/D" - -#~ msgid " seconds." -#~ msgstr " segundos." - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "La lista de IPs debe estar separada con retorno de carro." - -#~ msgid "Graphs management" -#~ msgstr "Gestión de gráficas" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "No se ha elegido ningun agente, por favor elija un agente" - -#~ msgid "Event validate" -#~ msgstr "Evento validado" - -#~ msgid "Event not validate" -#~ msgstr "Evento no validado" - -#~ msgid "The colours meaning:" -#~ msgstr "Significado de los colores:" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "None agent in this category" -#~ msgstr "Sin agentes en esta categoría" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Update Manager es una de las características más avanzadas de la versión 3.0 " -#~ "de Pandora FMS Enterprise, para obtener más información, visite http://pandorafms.com ." - -#~ msgid "Local modules rate" -#~ msgstr "Tasa de módulos locales" - -#~ msgid "Remote modules rate" -#~ msgstr "Tasa de módulos remotos" - -#~ msgid "secs." -#~ msgstr "segs." - -#~ msgid "Select an element to delete:" -#~ msgstr "Seleccione un elemento a eliminar" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Por favor, elija una imagen o escriba un nombre para el elemento" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Escriba al menos dos carácteres para buscar" - -#~ msgid "From the last" -#~ msgstr "Desde el último" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "El nuevo cliente de Update " -#~ "Manager se suministra con Pandora FMS 3.0. Ayuda a los administradores " -#~ "para actualizar su sistema de Pandora FMS automáticamente, desde el " -#~ "Administrador de actualización puede conseguir nuevos módulos, complementos " -#~ "y nuevas características (incluso realizar una migracion de futuras " -#~ "versiones) de forma automática." - -#~ 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
P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Esta extensión hace el registro de complementos de servidor más fácil. Puede " -#~ "subir un complemento en el servidor de Pandora FMS 3.x, en formato " -#~ "comprimido (. Pspz). Por favor, consulte la documentación sobre cómo obtener " -#~ "y usar servidor de complementos de Pandora FMS.

Puede obtener más " -#~ "complementos en nuestra " -#~ "Biblioteca Pública " - -#~ msgid "Report name is empty" -#~ msgstr "El nombre del informe está vacío" - -#~ msgid "No items defined" -#~ msgstr "No se han definido elementos" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "celda roja cuando el grupo de módulo y el agente tienen al menos un módulo " -#~ "en estado crítico y el resto en cualquier otro estado" - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "celda amarilla cuando el grupo de modulo y el agente tienen al menos uno en " -#~ "estado de alerta y los otros en estado verde" - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "celda verde cuando el grupo de módulo y el agente tienen todos los módulos " -#~ "en estado OK" - -#~ msgid "Modules groups" -#~ msgstr "grupo de módulos" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "" -#~ "celda gris cuando el grupo de modulo y agente no tienen ningún módulo" - -#~ msgid "hour" -#~ msgstr "hora" - -#~ msgid "Decrease Weight" -#~ msgstr "Reducir el peso" - -#~ msgid "Increase Weight" -#~ msgstr "Incrementar el peso" - -#~ msgid "ALERTS FIRED" -#~ msgstr "Alertas lanzadas" - -#~ msgid "Group detailed event" -#~ msgstr "Evento detallado de grupo" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Atencion: Cuando cambia la posición de un agente, el agente automáticamente " -#~ "activa el modo \"Ignorar nuevos datos GIS\"." - -#~ msgid "Module detailed event" -#~ msgstr "Eventos detallados del módulo." - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Por razones de seguridad, hay algunos token o palabras que no se pueden usar" - -#~ msgid "Illegal query" -#~ msgstr "Consulta ilegal" - -#~ msgid "or" -#~ msgstr "o" - -#~ msgid "User defined graph" -#~ msgstr "Use la gráfica definida" - -#~ msgid "Manage SNMP console" -#~ msgstr "Consola SNMP" - -#~ msgid "On the edge" -#~ msgstr "En el límite" - -#~ msgid "Inside limits" -#~ msgstr "Dentro de los límites" - -#~ msgid "Config" -#~ msgstr "Config" - -#~ msgid "Create networkmap" -#~ msgstr "Crear mapa de red" - -#~ msgid "Modules over or equal to" -#~ msgstr "Módulos sobre o igual a" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Módulos en estado de advertencia o crítico" - -#~ msgid "Modules under those conditions" -#~ msgstr "Módulos bajo esas condiciones" - -#~ msgid "There are no" -#~ msgstr "No hay" - -#~ msgid "Last 8 hours" -#~ msgstr "Últimas 8 horas" - -#~ msgid "Upload file" -#~ msgstr "Subir archivo" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "La herramienta «Pandora FMS sanity» se usa para eliminar la estructura " -#~ "corrupta de la base de datos, los módulos que no tienen estado o módulos que " -#~ "no pueden ser inicializados (y no proveen datos validos) pero siguen " -#~ "requiriendo su intervalo de tiempo. Estos módulos pueden pueden afectar al " -#~ "rendimiento de Pandora FMS. La herramienta de saneamiento de la base de " -#~ "datos esta también implementada en Pandora_db.pl de modo que debería " -#~ "ejecutarla cada día o cada semana. Esta herramienta no COMPACTA O REDUCE su " -#~ "base de datos, solo elimina las estructuras corruptas." - -#~ msgid "Only pending" -#~ msgstr "Solo pendientes" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Este servidor no tiene ninguna tarea de reconocimiento asignada" - -#~ msgid "Tree View" -#~ msgstr "Vista de árbol" - -#~ msgid "License Info" -#~ msgstr "Información sobre la licencia" - -#~ msgid "License info" -#~ msgstr "Información sobre la licencia" - -#~ msgid "Configuration report for group " -#~ msgstr "Informe de configuración por grupo " - -#~ msgid "Configuration report for agent " -#~ msgstr "Informe de configuración por agente " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "Plannified downtime" -#~ msgstr "Tiempo de parada planificado" - -#~ msgid "Average" -#~ msgstr "Medio" - -#~ msgid "Modules over" -#~ msgstr "Módulos por encima" - -#~ msgid "Modules less or equal to" -#~ msgstr "Módulos por debajo o iguales a" - -#~ msgid "Modules not equal to" -#~ msgstr "Modulos no iguales a" - -#~ msgid "Modules equal to" -#~ msgstr "Módulos iguales a" - -#~ msgid "Modules less" -#~ msgstr "Módulos por debajo" - -#~ msgid "Modules normal status" -#~ msgstr "Módulos en estado normal" - -#~ msgid "Group configuration: " -#~ msgstr "Grupo de la configuración: " - -#~ msgid " MODULES" -#~ msgstr " MODULOS" - -#~ msgid "Agent configuration: " -#~ msgstr "Configuración del agente: " - -#~ msgid "Module macros" -#~ msgstr "Macros de módulos" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes " -#~ "(IP) SNMP, Valor único, cada OIDs/Datas personalizado." - -#~ msgid "Policies operations" -#~ msgstr "Operaciones de las políticas" - -#~ msgid "Log Collector" -#~ msgstr "Colector de Logs" - -#~ msgid "Event alerts" -#~ msgstr "Alertas de eventos" - -#~ msgid "Inventory modules" -#~ msgstr "Módulos de inventario" - -#~ msgid "Local components" -#~ msgstr "Componentes locales" - -#~ msgid "SNMP operations" -#~ msgstr "Operaciones SNMP" - -#~ msgid "Collections" -#~ msgstr "Colecciones" - -#~ msgid "Manage policies" -#~ msgstr "Gestionar políticas" - -#~ msgid "Service updated successfully" -#~ msgstr "Servicio actualizado correctamente" - -#~ msgid "Error creating service" -#~ msgstr "Error al crear servicio" - -#~ msgid "Service created successfully" -#~ msgstr "Servicio creado correctamente" - -#~ msgid "Create Service" -#~ msgstr "Crear Servicio" - -#~ msgid "Not found" -#~ msgstr "No encontrado" - -#~ msgid "Error updating service" -#~ msgstr "Error al actualizar el sevicio" - -#~ msgid "New Service" -#~ msgstr "Nuevo servicio" - -#~ msgid "Config Service" -#~ msgstr "Configurar Servicios" - -#~ msgid "Config Elements" -#~ msgstr "Configurar Elementos" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Por favor, introduzca un límite de 0 a 100" - -#~ msgid "View Service" -#~ msgstr "Ver Servicio" - -#~ msgid "Service map" -#~ msgstr "Mapa del Servicio" - -#~ msgid "Agent to store data" -#~ msgstr "Agentes para almacenar datos" - -#~ msgid "S.L.A. interval" -#~ msgstr "Intervalo SLA" - -#~ msgid "S.L.A. limit" -#~ msgstr "Límite SLA" - -#~ msgid "Error creating service element" -#~ msgstr "Error al crear elemento de servicio" - -#~ msgid "Service element created successfully" -#~ msgstr "Elemento del servicio creado correctamente" - -#~ msgid "Error empty module" -#~ msgstr "Error al vaciar los módulos" - -#~ msgid "Edit service elements" -#~ msgstr "Editar elementos del servicio" - -#~ msgid "Error empty service" -#~ msgstr "Error al vaciar el servicio" - -#~ msgid "Error empty agent" -#~ msgstr "Error al vaciar el agente" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Elemento de servicio eliminado correctamente" - -#~ msgid "Error deleting service element" -#~ msgstr "Error al eliminar el elemento de servicio" - -#~ msgid "Service element updated successfully" -#~ msgstr "Elemento de servicio actualizado correctamente" - -#~ msgid "Error updating service element" -#~ msgstr "Error al actualizar el elemento de sevicio" - -#~ msgid "Security check is ok." -#~ msgstr "La comprobación de seguridad está ok" - -#~ msgid "Show extended info" -#~ msgstr "Mostrar más info" - -#~ msgid "Ok weight" -#~ msgstr "Peso correcto" - -#~ msgid "Unknown weight" -#~ msgstr "Peso desconocido" - -#~ msgid "First select an agent" -#~ msgstr "Primero, seleccione un agente" - -#~ msgid "Critical weight" -#~ msgstr "Peso crítico" - -#~ msgid "Edit element service" -#~ msgstr "Editar elemento de servicio" - -#~ msgid "Create element service" -#~ msgstr "Crear elemento de sevicio" - -#~ msgid "Using local component" -#~ msgstr "Usando componente local" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "Los cambios en este campo están unidos con la configuración de datos" - -#~ msgid "Extended info:" -#~ msgstr "Información extendida" - -#~ msgid "Security check is fail." -#~ msgstr "La comprobación de seguridad ha fallado" - -#~ msgid "Hide configuration data" -#~ msgstr "Ocultar datos de configuración" - -#~ msgid "Data configuration" -#~ msgstr "Configuración de datos" - -#~ msgid "Load basic" -#~ msgstr "cargar básicos" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Cargar una estructura básica en la configuración de datos" - -#~ msgid "Check" -#~ msgstr "Comprobar" - -#~ msgid "Show configuration data" -#~ msgstr "Mostrar datos de configuración" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "" -#~ "Error en la sintaxis, compruebe la configuración de datos, por favor." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "La configuración de datos se ha construido correctamente" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "El tipo es incorrecto. Por favor, introduzca un tipo correcto" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Hay una línea con un token desconocido \"token_fail\"." - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Comprobar la estructura correcta de la configuración de datos" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "La primera línea tiene que ser \"module_begin\"" - -#~ msgid "Data configuration is empty" -#~ msgstr "La configuración de datos está vacía" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "La última línea tiene que ser \"module_end\"" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Falta el nombre. Por favor, introduzca una línea con \"module_name " -#~ "yourmodulename\" a la configuración de datos" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Falta el tipo. Por favor, introduzca una línea con \"module_type " -#~ "yourmoduletype\" a la configuración de datos" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plugin añadido correctamente" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "El plugin no se puede añadir" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plugin eliminado correctamente" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "El plugin no se puede eliminar" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "El plugin no puede ser habilitado" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plugin inhabilitado correctamente" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "El plugin no puede ser inhabilitado" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plugin habilitado correctamente" - -#~ msgid "New plug-in" -#~ msgstr "Nuevo plugin" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Módulo del inventario actualizado correctamente" - -#~ msgid "Error updating inventory module" -#~ msgstr "Error al actualizar el módulo del inventario" - -#~ msgid "Inventory module error" -#~ msgstr "Error del módulo del inventario" - -#~ msgid "Target" -#~ msgstr "Target" - -#~ msgid "Error adding inventory module" -#~ msgstr "Error al añadir el módulo al inventario" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Módulo añadido al inventario con éxito" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Erro al eliminar el módulo del inventario" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Módulo del inventario eliminado correctamente" - -#~ msgid "Unable to create the collection" -#~ msgstr "Imposible crear la colección" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Otra colección con el mismo nombre corto" - -#~ msgid "7 days" -#~ msgstr "7 días" - -#~ msgid "Update all" -#~ msgstr "Actualizar todo" - -#~ msgid "Manager configuration > New" -#~ msgstr "Gestionar la configuración > New" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Gestionar la configuración > Edit " - -#~ msgid "Unable to create the collection." -#~ msgstr "Imposible crear la colección" - -#~ msgid "Empty name" -#~ msgstr "Nombre vacío" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Caracteres inválidos en el nombre" - -#~ msgid "Short name:" -#~ msgstr "Nombre corto:" - -#~ msgid "Recreate file" -#~ msgstr "Volver a crear archivo" - -#~ msgid "Unable to edit the collection." -#~ msgstr "Imposible editar colección" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Imposible crear colección. Nombre vacío." - -#~ msgid "Remove selected modules" -#~ msgstr "Eliminar los módulos seleccionados" - -#~ msgid "Fixed value" -#~ msgstr "Valor fijo" - -#~ msgid "Add module to average operation" -#~ msgstr "Añadir módulo al promedio de la operación" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Eliminar los módulos de las operaciones" - -#~ msgid "No module was found" -#~ msgstr "No se encontraron módulos" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "" -#~ "Eliminar los archivos de configuración remota de agentes en Pandora FMS" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "Este agente no se ha configurado remotamente, por favor, configúrelo" - -#~ msgid "Succesful add the collection" -#~ msgstr "Añadido a la colección correctamente" - -#~ msgid "Add module" -#~ msgstr "Añadir módulo" - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Error: En el archivo de configuración no se puede escribir" - -#~ msgid "Netflow filter" -#~ msgstr "Filtro de netflow" - -#~ msgid "Select Service" -#~ msgstr "Seleccionar servicio" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Error: El archivo de configuración no se puede leer" - -#~ msgid "Select filter" -#~ msgstr "Seleccionar filtro" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "No se ha podido añadir a la colección" - -#~ msgid "Short Name" -#~ msgstr "Nombre Corto" - -#~ msgid "Show files" -#~ msgstr "Mostrar archivos" - -#~ msgid "Outdate" -#~ msgstr "Obsoleto" - -#~ msgid "Dir" -#~ msgstr "Dir" - -#~ msgid "Create a new web Server module" -#~ msgstr "Crear un nuevo módulo de servidor web" - -#~ msgid "Correct update file." -#~ msgstr "Actualización correcta del archivo" - -#~ msgid "Compatibility mode" -#~ msgstr "Modo de compatibilidad" - -#~ msgid "Files in " -#~ msgstr "Archivos en " - -#~ msgid "Error copying md5 file " -#~ msgstr "Error al copiar fichero MD5 " - -#~ msgid "No source agent selected" -#~ msgstr "No ha seleccionado ningún agente de origen" - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "Por favor, antes de subir archivos, guarde una nueva colección" - -#~ msgid "Incorrect update file." -#~ msgstr "Archivo NO actualizado correctamente" - -#~ msgid "Copied " -#~ msgstr "Copiado " - -#~ msgid " md5 file" -#~ msgstr " fichero MD5" - -#~ msgid "Web server module" -#~ msgstr "Módulo del servidor web" - -#~ msgid "Web checks" -#~ msgstr "Comprobaciones web" - -#~ msgid "Error copying " -#~ msgstr "Error al copiar " - -#~ msgid " config file" -#~ msgstr " fichero de configuración" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP aut. (servidor)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP aut. (contraseña)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "La primera línea tiene que ser \"task_begin\"" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP aut. (campo)" - -#~ msgid "Proxy URL" -#~ msgstr "Proxy URL" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP aut. (login)" - -#~ msgid "Requests" -#~ msgstr "Peticiones" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Cargar una estructura básica en las comprobaciones web" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Cargar la estructura correcta de las comprobaciones web" - -#~ msgid "Error: recreate file " -#~ msgstr "Error: volver a crear archivo " - -#~ msgid "Manager collection" -#~ msgstr "Gestor de colecciones" - -#~ msgid "Collections Management" -#~ msgstr "Gestión de colecciones" - -#~ msgid "No files in collection" -#~ msgstr "No hay archivos en la colección" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "La última línea tiene que ser \"task_end\"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "La configuración de chequeos web está vacía" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Fallo al crear el directorio: %s" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Los chequeos webs se han construido correctamente" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "El archivo de la colección es mayor que el límite" - -#~ msgid "Apply changes" -#~ msgstr "Aplicar Cambios" - -#~ msgid "Re-Apply changes" -#~ msgstr "Volver a aplicar los cambios" - -#~ msgid "Can not create collection package." -#~ msgstr "No se puede crear paquete de la colección" - -#~ msgid "Successful create collection package." -#~ msgstr "Paquete de la colección creado correctamente" - -#~ msgid "Delete collection" -#~ msgstr "Eliminar colección" - -#~ msgid "Are you sure to delete?" -#~ msgstr "¿Está seguro de que quiere eliminarlo?" - -#~ msgid "List templates" -#~ msgstr "Lista de plantillas" - -#~ msgid "Edit template" -#~ msgstr "Editar plantilla" - -#~ msgid "Create template" -#~ msgstr "Crear plantilla" - -#~ msgid "SLA max value" -#~ msgstr "Valor máximo SLA" - -#~ msgid "SLA min Value" -#~ msgstr "Valor mínimo de SLA" - -#~ msgid "SLA min value" -#~ msgstr "Valor mínimo de SLA" - -#~ msgid "Elements to apply" -#~ msgstr "Elementos para aplicar" - -#~ msgid "Graph template editor" -#~ msgstr "Editor de plantillas gráficas" - -#~ msgid "Exact match" -#~ msgstr "Coincidencia exacta" - -#~ msgid "Sum" -#~ msgstr "Suma" - -#~ msgid "SLA Limit Value" -#~ msgstr "Valor límite SLA" - -#~ msgid "SLA Limit %" -#~ msgstr "Límite % SLA" - -#~ msgid "SLA max Value" -#~ msgstr "Valor máximo SLA" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "Graph template management" -#~ msgstr "Gestión de plantillas gráficas" - -#~ msgid "There are no defined graph templates" -#~ msgstr "No hay plantillas gráficas definidas" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Limpieza correcta" - -#~ msgid "Add agents to template" -#~ msgstr "Añadir agentes a la plantilla" - -#~ msgid "Undo agents to template" -#~ msgstr "Deshacer añadir agentes a la plantilla" - -#~ msgid "Please set template distinct than " -#~ msgstr "Por favor, introduzca una plantilla distinta a " - -#~ msgid "Apply template" -#~ msgstr "Aplicar plantilla" - -#~ msgid "Wizard template" -#~ msgstr "Plantilla de Wizard" - -#~ msgid "Filter agent" -#~ msgstr "Filtrar agente" - -#~ msgid "Agents available" -#~ msgstr "Agentes disponibles" - -#~ msgid "Select all" -#~ msgstr "Seleccionar todo" - -#~ msgid "Successfully operation" -#~ msgstr "Operación realizada con éxito" - -#~ msgid ": Edit: " -#~ msgstr ": Editar: " - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Esta acción eliminará todos los informes creados en aplicaciones anteriores " -#~ "de plantillas. ¿Quiere continuar?" - -#~ msgid "Create custom SQL" -#~ msgstr "Crear SQL personalizado" - -#~ msgid "reports" -#~ msgstr "Informes" - -#~ msgid "items" -#~ msgstr "elementos" - -#~ msgid "Sucessfully applied" -#~ msgstr "Aplicado correctamente" - -#~ msgid "Could not be applied" -#~ msgstr "No se pudo aplicar" - -#~ msgid "Create report per agent" -#~ msgstr "Crear informe por agente" - -#~ msgid "SQL preview" -#~ msgstr "Previsualización del SQL" - -#~ msgid "Query SQL" -#~ msgstr "Consulta SQL" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Texto libre para filtrar los módulos de los agentes cuando se use esta " -#~ "plantilla" - -#~ msgid "Create a graph for each agent" -#~ msgstr "Crear una gráfica por cada agente" - -#~ msgid "Template updated successfully" -#~ msgstr "Plantilla actualizada con éxito" - -#~ msgid "Error updating template" -#~ msgstr "Error al actualizar la plantilla" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "Por favor, guarde la plantilla para empezar a añadir elementos a la lista" - -#~ msgid "Policies Management" -#~ msgstr "Gestión de políticas" - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "Delete all agents" -#~ msgstr "Eliminar todos los agentes" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Todos los agentes de las políticas serán eliminados" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "Una política con agentes no se puede eliminar. Púrguela primero." - -#~ msgid "Deleting all policy agents" -#~ msgstr "Eliminando todas los agentes de las políticas" - -#~ msgid "Policy updated" -#~ msgstr "Política actualizada" - -#~ msgid "Linking" -#~ msgstr "Enlazando" - -#~ msgid "Pending update policy" -#~ msgstr "Pendiente actualizar política" - -#~ msgid "Queue" -#~ msgstr "Cola" - -#~ msgid "External alerts" -#~ msgstr "Alertas externas" - -#~ msgid "Could not be added module." -#~ msgstr "El módulo no se pudo añadir" - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "El módulo no se pudo añadir. Debe seleccionar una política." - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Módulo añadido correctamente (%s/%s) a la política %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "El módulo no se pudo añadir (%s/%s) a la política %s" - -#~ msgid "Successfully added module." -#~ msgstr "Módulo añadido correctamente" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Eliminación revertida correctamente" - -#~ msgid "Could not be reverted" -#~ msgstr "No pudo ser revertido" - -#~ msgid "Local component" -#~ msgstr "Componente local" - -#~ msgid "Undo deletion" -#~ msgstr "Deshacer eliminación" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Copiar módulos seleccionados a la política: " - -#~ msgid "Variable" -#~ msgstr "Variable" - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Correctamente añadido a la lista de eliminación" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Añadido correctamente a los agentes pendientes de eliminación. Será " -#~ "eliminado en la próxima aplicación de políticas." - -#~ msgid "Please select any module to copy" -#~ msgstr "Por favor, seleccione algún modulo para copiar" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "¿Está seguro de que quiere copiar los módulos en la política?\\n" - -#~ msgid "Agents in Policy" -#~ msgstr "Agentes en la política" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "No se pudo añadir a la lista de eliminación" - -#~ msgid "Delete agents from policy" -#~ msgstr "Eliminar agentes de la política" - -#~ msgid "Add agents to policy" -#~ msgstr "Añadir agentes a la política" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Módulos sin enlazar" - -#~ msgid "Applied" -#~ msgstr "Aplicado" - -#~ msgid "Not applied" -#~ msgstr "No aplicado" - -#~ msgid "Applying policy" -#~ msgstr "Aplicando política" - -#~ msgid "Deleting from policy" -#~ msgstr "Eliminando de la política" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Este agente no puede ser configurado remotamente" - -#~ msgid "Add to apply queue" -#~ msgstr "Añadir para aplicar cola" - -#~ msgid "Policy applied" -#~ msgstr "Política aplicada" - -#~ msgid "Add to delete queue" -#~ msgstr "Añadir a la lista de eliminación" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "Última aplicación" - -#~ msgid "Added action successfuly" -#~ msgstr "Acción añadida correctamente" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Correctamente añadido a las alertas pendientes de eliminación. Será " -#~ "eliminado en la próxima aplicación de políticas." - -#~ msgid "Created successfuly" -#~ msgstr "Creado correctamente" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Acción eliminada correctamente" - -#~ msgid "Module is not selected" -#~ msgstr "No ha seleccionado ningún módulo" - -#~ msgid "Policy module" -#~ msgstr "Módulo de la política" - -#~ msgid "Select inventory module" -#~ msgstr "Seleccionar módulo de inventario" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "La operación no puede ser eliminada de la cola" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Operación eliminada correctamente de la cola" - -#~ msgid "Add policy" -#~ msgstr "Añadir política" - -#~ msgid "List of modules unlinked" -#~ msgstr "Lista de módulos sin enlazar" - -#~ msgid "Link pending modules" -#~ msgstr "Enlazar módulos pendientes" - -#~ msgid "Update pending agents" -#~ msgstr "Actualizar agentes pendientes" - -#~ msgid "Update pending" -#~ msgstr "Actualización pendiente" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Las operaciones no pueden ser eliminadas de la cola" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Operaciones eliminadas correctamente de la cola" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Será desenlazado en la siguiente aplicación de políticas" - -#~ msgid "Delete pending" -#~ msgstr "Eliminación pendiente" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Se enlazará en la siguiente aplicación de políticas" - -#~ msgid "Unlink pending modules" -#~ msgstr "Desenlazar módulos pendientes" - -#~ msgid "Delete pending plugins" -#~ msgstr "Eliminar plugins pendientes" - -#~ msgid "Delete pending file collections" -#~ msgstr "Eliminar colecciones de archivos pendientes" - -#~ msgid "Queue summary" -#~ msgstr "Resumen de cola" - -#~ msgid "Advices" -#~ msgstr "Consejos" - -#~ msgid "Delete pending modules" -#~ msgstr "Eliminar módulos pendientes" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Eliminar módulos de inventario pendientes" - -#~ msgid "Delete pending agents" -#~ msgstr "Eliminar agentes pendientes" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Se eliminará en la siguiente aplicación de políticas" - -#~ msgid "Delete pending alerts" -#~ msgstr "Eliminar alertas pendientes" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Eliminar alertas externas pendientes" - -#~ msgid "Delete from queue" -#~ msgstr "Eliminar de la cola" - -#~ msgid "Empty queue" -#~ msgstr "Vaciar cola" - -#~ msgid "Delete all" -#~ msgstr "Eliminar todo" - -#~ msgid "Finished" -#~ msgstr "Terminado" - -#~ msgid "Apply (database and files)" -#~ msgstr "Aplicar (base de datos y archivos)" - -#~ msgid "This operation could take a long time" -#~ msgstr "Esta operación podría tardar bastante tiempo" - -#~ msgid "Complete" -#~ msgstr "Completo" - -#~ msgid "Apply (only database)" -#~ msgstr "Aplicar (sólo en la base de datos)" - -#~ msgid "Queue filter" -#~ msgstr "Filtros de cola" - -#~ msgid "Incomplete" -#~ msgstr "Incompleto" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Operación duplicada o incompatible en la cola" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Correctamente añadido a los plugins pendientes de eliminar. Será eliminado " -#~ "en la próxima aplicación de políticas." - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Operación añadida correctamente a la cola" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "La operación no se puede añadir a la cola" - -#~ msgid "Duplicated alert" -#~ msgstr "Alerta duplicada" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "No se puede añadir a los plugins pendientes de eliminar" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Error validating alert(s)" -#~ msgstr "Error al validar la alerta" - -#~ msgid "Error processing action" -#~ msgstr "Error al procesar la acción" - -#~ msgid "List event alerts" -#~ msgstr "Lista de alertas de eventos" - -#~ msgid "Alert Template" -#~ msgstr "Plantilla de alerta" - -#~ msgid "View associated rules" -#~ msgstr "Ver reglas asociadas" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "No se pudo crear, por favor, introduzca un nombre de alerta" - -#~ msgid "Please Read" -#~ msgstr "Por favor, lea" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Modo de evaluación de reglas" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Este campo será procesado con regexp" - -#~ msgid "User comment" -#~ msgstr "Comentario de usuario" - -#~ msgid "Configure event rule" -#~ msgstr "Configurar regla de evento" - -#~ msgid "List event rules" -#~ msgstr "Lista de reglas de eventos" - -#~ msgid "Configure event alert" -#~ msgstr "Configurar alerta de eventos" - -#~ msgid "Window" -#~ msgstr "ventana" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Operadores actualizados correctamente" - -#~ msgid "Error updating rule operators" -#~ msgstr "Error al actualizar los operadores de reglas" - -#~ msgid "Group by" -#~ msgstr "Agrupar por" - -#~ msgid "Event rules" -#~ msgstr "Reglas de eventos" - -#~ msgid "Error creating rule" -#~ msgstr "Error al crear regla" - -#~ msgid "Successfully created rule" -#~ msgstr "Regla creada correctamente" - -#~ msgid "Error updating rule" -#~ msgstr "Error al actualizar la regla" - -#~ msgid "Successfully updating rule" -#~ msgstr "Regla actualizada correctamente" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Expresión lógica para estas reglas" - -#~ msgid "(Agent)" -#~ msgstr "(Agente)" - -#~ msgid "Success: create the alerts." -#~ msgstr "Alertas creadas exitosamente" - -#~ msgid "Update operators" -#~ msgstr "Actualizar operadores" - -#~ msgid "Synthetic average" -#~ msgstr "Media sintética" - -#~ msgid "Group filter" -#~ msgstr "Filtro de grupo" - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Aritmética sintética" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "" -#~ "Los nombres cortos deben contener sólo caracteres alfanuméricos, - o _." - -#~ msgid "Back to file explorer" -#~ msgstr "Volver al explorador de archivos" - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Añadido correctamente a la cola de módulos pendientes de eliminación, Será " -#~ "eliminado en la próxima aplicación de políticas." - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Si cambia esta descripción, tiene que cambiarla en el texto de la " -#~ "configuración de datos." - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Todos los agentes de las políticas añadidos a la cola de eliminación" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "" -#~ "Los agentes de las políticas no se pudieron añadir a la cola de eliminación" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "No se pudo eliminar de los agentes pendientes de eliminación" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Eliminado correctamente de los agentes pendientes de eliminación" - -#~ msgid "Free text for filter" -#~ msgstr "Texto libre para filtro" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Texto libre para filtro (*)" - -#~ msgid "Custom OID" -#~ msgstr "OID personalizado" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "No se han podido actualizar las alertas (%s / %s)" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "Alertas SNMP para editar" - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Alertas actualizadas correctamente (%s / %s)" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Eliminación masiva de alertas SNMP" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Edición masiva de alertas SNMP" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Borrado masivo de políticas de alertas" - -#~ msgid "Error parsing MIB" -#~ msgstr "Error al analizar MIB" - -#~ msgid "No change in data" -#~ msgstr "No hay cambios en los datos" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Fallo al actualizar %s/%s traps" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Actualizados %s/%s traps" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Error al eliminar valores personalizados trap" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Valores personalizados trap eliminados correctamente" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Error al actualizar los valores personalizados trap" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Los valores personalizados trap se han añadido correctamente" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Error al añadir los valores personalizados trap" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Añadidos correctamente a los valores personalizados trap" - -#~ msgid "Page" -#~ msgstr "Página" - -#~ msgid "Filter by profile" -#~ msgstr "Filtrar por perfil" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Establece la duración máxima de los datos de registro en días" - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Configuración ACL Enterprise" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Añadir nuevo elemento ACL al perfil" - -#~ msgid "Section" -#~ msgstr "Sección" - -#~ msgid "Load MIB" -#~ msgstr "Cargar MIB" - -#~ msgid "Upload MIB" -#~ msgstr "Actualizar MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Directorio de almacenamiento de logs" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Directorio donde los datos de log se almacenarán" - -#~ msgid "Successfully updated skin" -#~ msgstr "Skin actualizada correctamente" - -#~ msgid "Successfully created skin" -#~ msgstr "Skin creado correctamente" - -#~ msgid "Error creating skin" -#~ msgstr "Error al crear skin" - -#~ msgid "Error deleting skin" -#~ msgstr "Error al borrar skin" - -#~ msgid "Skins configuration" -#~ msgstr "Configuración skins" - -#~ msgid "Create skin" -#~ msgstr "Crear skin" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Skin eliminado correctamente" - -#~ msgid "Relative path" -#~ msgstr "Ruta relativa" - -#~ msgid "Error updating skin" -#~ msgstr "Error al actualizar skin" - -#~ msgid "Skin name" -#~ msgstr "Nombre del skin" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token configurado anteriormente en la consola de destino de Pandora FMS con " -#~ "el fin de utilizar autentificación delegada." - -#~ msgid "Auth token" -#~ msgstr "Aut. token" - -#~ msgid "Could not be update" -#~ msgstr "No se pudo actualizar" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Edición de elementos de la metaconsola de Pandora FMS" - -#~ msgid "Metaconsole setup" -#~ msgstr "Configuración de la Metaconsola" - -#~ msgid "Successfully update" -#~ msgstr "Actualizado correctamente" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Archivo zip con subdirectorio skin. El nombre del archivo zip solo puede " -#~ "tener caracteres alfanuméricos." - -#~ msgid "Group/s" -#~ msgstr "Grupo/s" - -#~ msgid "Console URL" -#~ msgstr "Consola URL" - -#~ msgid "DB Host" -#~ msgstr "Host DB" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Número de días antes de que los datos se transfieran a la base de datos " -#~ "histórica." - -#~ msgid "Console User" -#~ msgstr "Usuario de la consola" - -#~ msgid "DB Password" -#~ msgstr "Contraseña BD" - -#~ msgid "DB User" -#~ msgstr "Usuario de base de datos" - -#~ msgid "DB Name" -#~ msgstr "Nombre BD" - -#~ msgid "Compatibility" -#~ msgstr "Compatibilidad" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "DB" -#~ msgstr "BD" - -#~ msgid "Console Password" -#~ msgstr "Contraseña de la consola" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Sacar los módulos seleccionados de la lista negra" - -#~ msgid "Enterprise options" -#~ msgstr "Opciones Enterprise" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Intervalo de tiempo entre transferencias de datos" - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Antes de activar esta opción compruebe su configuración ACL. Puede que " -#~ "pierda el acceso a la consola." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "Only validated events" -#~ msgstr "Sólo eventos validados" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Los módulos de inventario incluidos en la lista negra de cambios no " -#~ "generarán eventos cuando cambien." - -#~ msgid "Out of black list" -#~ msgstr "Fuera de la lista negra" - -#~ msgid "In black list" -#~ msgstr "En la lista negra" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Mover los módulos seleccionados a la lista negra" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Reglas aplicadas a la gestión de contraseñas. Esta política se aplica a " -#~ "todos los usuarios excepto al administrador" - -#~ msgid "Active directory" -#~ msgstr "Directorio activo" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Pandora FMS remota" - -#~ msgid " Days" -#~ msgstr " Días" - -#~ msgid " Minutes" -#~ msgstr " Minutos" - -#~ msgid " Caracters" -#~ msgstr " Caracteres" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Introduzca 0 para que nunca expire" - -#~ msgid "Enterprise password policy" -#~ msgstr "Política de contraseña Enterprise" - -#~ msgid "Two attempts minimum" -#~ msgstr "2 intentos mínimo" - -#~ msgid " Attempts" -#~ msgstr " Intentos" - -#~ msgid "separate fields with " -#~ msgstr "Separar campos con " - -#~ msgid "Error creating inventory module" -#~ msgstr "Error al crear módulo del inventario" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Inventario de módulo creado correctamente" - -#~ msgid "Interpreter" -#~ msgstr "Intérprete" - -#~ msgid "Remote Integria" -#~ msgstr "Integria IMs remoto" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Babel Enterprise remoto" - -#~ msgid "Local component management" -#~ msgstr "Gestión de componentes locales" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Renew" -#~ msgstr "Renovar" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Por favor, configure este widget antes de usarlo" - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "O desactive Pandora FMS Enterprise" - -#~ msgid "" -#~ "This license has expired. " -#~ "

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

No podrá actualizar Pandora FMS hasta que no renueve la licencia." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "License out of limits " -#~ "

Esta licencia es para %d agentes y tiene %d agentes configurados." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Para continuar usando Pandora FMS, por favor, desactive Pandora FMS " -#~ "Enterprise cambiando el nombre de la Enteprise en el directorio de la " -#~ "consola.

o contacte con Ártica ST para obtener una licencia válida " -#~ "(info@artica.es)" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Por favor, contacte con Ártica ST (info@artica.es) para renovar la licencia." - -#~ msgid "Show a map made by user" -#~ msgstr "Mostrar un mapa hecho por el usuario" - -#~ msgid "Map made by user" -#~ msgstr "Mapa hecho por el usuario" - -#~ msgid "Limit" -#~ msgstr "Límite" - -#~ msgid "Latest events list" -#~ msgstr "Última lista de eventos" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Mostrar una gráfica de un módulo de agente" - -#~ msgid "Single graph" -#~ msgstr "Gráfico simple" - -#~ msgid "Show a report made by user" -#~ msgstr "Mostrar un informe hecho por el usuario" - -#~ msgid "Alerts Fired report" -#~ msgstr "Informe de alertas lanzadas" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Altura en px (cero para auto)" - -#~ msgid "Show the URL content" -#~ msgstr "Mostrar el contenido URL" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Para eliminar este mensaje, haga clic sobre el botón de la esquina derecha " -#~ "de este elemento." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Para hacer eso, haga clic en el título, arrastre y suelte el elemento en el " -#~ "lugar que desee." - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Éste es un ejemplo de un widget del dashboard. Un widget puede contener " -#~ "elementos" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Para añadir más elementos, haga clic en \"Add widgets\" en la parte " -#~ "superior de esta página" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Mensaje de bienvenida de Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Bienvenido/a" - -#~ msgid "My URL" -#~ msgstr "Mi URL" - -#~ msgid "Invalid URL" -#~ msgstr "URL no válida" - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Gracias por usar Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Mostrar un mapa de la red monitorizada" - -#~ msgid "Panel with a message" -#~ msgstr "panel con un mensaje" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "No solapar" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Informe rápido y general de los mapas visuales" - -#~ msgid "Maps status" -#~ msgstr "Estado de los mapas" - -#~ msgid "Source user's group" -#~ msgstr "Grupo de usuarios de origen" - -#~ msgid "Destination user's group" -#~ msgstr "Grupo de usuarios de destino" - -#~ msgid "Dashboard replicate" -#~ msgstr "Réplica del dashboard" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "No se ha copiado. Error al copiar datos. Debe seleccionar un dashboard" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "No se ha copiado. Error al copiar datos." - -#~ msgid "Successfully copyed" -#~ msgstr "Copiado correctamente" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Mostrar una gráfica personalizada definida" - -#~ msgid "Groups status" -#~ msgstr "Estado de los grupos" - -#~ msgid "General and quick group status report" -#~ msgstr "Informe general y rápido del estado de los grupos" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Mostrar una lista global de la salud de los monitores" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Dashboard creado correctamente" - -#~ msgid "Could not create dashboard" -#~ msgstr "Dashboard no se pudo crear" - -#~ msgid "Could not update dashboard" -#~ msgstr "El dashboard no se puede actualizar" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "El dashboard se ha actualizado correctamente" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Por favor, configure el widget otra vez para recuperarlo" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "El widget no se puede cargar" - -#~ msgid "Delete widget" -#~ msgstr "Eliminar widget" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Replicar dashboards" - -#~ msgid "Group Dashboards" -#~ msgstr "Agrupar dashboards" - -#~ msgid "Configure widget" -#~ msgstr "Configurar widget" - -#~ msgid "Play" -#~ msgstr "Reproducir" - -#~ msgid "Previous Dashboard" -#~ msgstr "Dashboard anterior" - -#~ msgid "Slides mode" -#~ msgstr "Modo diapositivas" - -#~ msgid "Next Dashboard" -#~ msgstr "Siguiente dashboard" - -#~ msgid "Add dashboard" -#~ msgstr "Añadir dashboard" - -#~ msgid "Add widget" -#~ msgstr "Agregar widget" - -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgid "Next slide in" -#~ msgstr "Siguiente diapositiva" - -#~ msgid "Update dashboard" -#~ msgstr "Actualizar dashboard" - -#~ msgid "Delete dashboard" -#~ msgstr "Eliminar dashboard" - -#~ msgid "Search results for" -#~ msgstr "Buscar resultados para" - -#~ msgid "Create visualmap" -#~ msgstr "Crear mapa visual" - -#~ msgid "Screens" -#~ msgstr "Pantallas" - -#~ msgid "Private dashboard" -#~ msgstr "Dashboard privado" - -#~ msgid "Dashboard options" -#~ msgstr "Opciones del dashboard" - -#~ msgid "Add new widget" -#~ msgstr "Añadir nuevo widget" - -#~ msgid "Add new dashboard view" -#~ msgstr "Añadir nueva vista del dashboard" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "El usuario no se encuentra en ninguno de los grupos con el perfil EW" - -#~ msgid "Succesful updated" -#~ msgstr "Actualizado correctamente" - -#~ msgid "Unsucessful updated" -#~ msgstr "Actualización fallida" - -#~ msgid "Fields" -#~ msgstr "Campos" - -#~ msgid "Tactical View" -#~ msgstr "Vista táctica" - -#~ msgid "Web check" -#~ msgstr "Comprobación web" - -#~ msgid "More events" -#~ msgstr "Más eventos" - -#~ msgid "Module description" -#~ msgstr "Descripción del módulo" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "No se puede conectar a la instancia de Pandora FMS" - -#~ msgid "Create module" -#~ msgstr "Crear módulo" - -#~ msgid "Step by step wizard" -#~ msgstr "Wizard paso a paso" - -#~ msgid "Click Create to continue" -#~ msgstr "haga clic en Crear para continuar" - -#~ msgid "Warning Service alert" -#~ msgstr "Alerta de advertencia del servicio" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "No puede crearse target de exportación: El usuario y la contraseña deben ser " -#~ "completadas con el modo de FTP" - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Estos valores están por defecto porque el servicio está en modo auto-cálculo" - -#~ msgid "Critical Service alert" -#~ msgstr "Alerta crítica del servicio" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Error al forzar un módulo del inventario" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Módulo del inventario forzado correctamente" - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "El nombre corto de la colección es el nombre del directorio en el directorio " -#~ "attachment y la colección de paquetes." - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Añadido correctamente a la colección. Se eliminará en la próxima aplicación " -#~ "de política." - -#~ msgid "Preview" -#~ msgstr "Vista previa" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "La alerta que está intentando añadir está ya en la lista de alertas" - -#~ msgid "Please, select an alert" -#~ msgstr "Por favor, seleccione una alerta" - -#~ msgid "Please, select a module" -#~ msgstr "Por favor, seleccione un módulo" - -#~ msgid "Edit module" -#~ msgstr "Editar módulo" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Ya hay otro agente con ese nombre" - -#~ msgid "Please, select an agent" -#~ msgstr "Por favor, seleccione un agente" - -#~ msgid "String" -#~ msgstr "Cadena" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Seleccionar el agente que quiera editar o eliminar" - -#~ msgid "Please, set an interval" -#~ msgstr "Por favor, introduzca un intervalo" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Por favor, introduzca una dirección IP válida" - -#~ msgid "Edit agent" -#~ msgstr "Editar agente" - -#~ msgid "Please, set a name" -#~ msgstr "Por favor, introduzca un nombre" - -#~ msgid "Advanced configuration" -#~ msgstr "Configuración avanzada" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "No se puede actualizar: error en %s" - -#~ msgid "Customize sections" -#~ msgstr "Personalizar secciones" - -#~ msgid "Groups synchronization" -#~ msgstr "Sincronización de grupos" - -#~ msgid "Alerts synchronization" -#~ msgstr "Sincronización de alertas" - -#~ msgid "Components synchronization" -#~ msgstr "Sincronización de componentes" - -#~ msgid "Tags synchronization" -#~ msgstr "Sincronización de tags" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Seleccione la alerta que quiere editar o eliminar" - -#~ msgid "Group View" -#~ msgstr "Vista de grupo" - -#~ msgid "Synchronizing" -#~ msgstr "Sincronizando" - -#~ msgid "Users synchronization" -#~ msgstr "Sincronización de usuarios" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Usuario actualizado %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Error al crear/actualizar los siguientes elementos grupos/perfiles/usuarios " -#~ "(%d/%d/%d)" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Usuario creado %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Error al crear usuario %s" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Error al actualizar usuario %s" - -#~ msgid "Passwords" -#~ msgstr "Contraseñas" - -#~ msgid "Enabled sections" -#~ msgstr "Activar secciones" - -#~ msgid "Disabled sections" -#~ msgstr "Secciones desactivadas" - -#~ msgid "Copy profile" -#~ msgstr "Copiar perfil" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Comprobar esto para copiar los perfiles originales de los usuarios" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Modo de perfil de sincronización" - -#~ msgid "New profile" -#~ msgstr "Nuevo perfil" - -#~ msgid "This metaconsole" -#~ msgstr "Esta metaconsola" - -#~ msgid "Profile mode" -#~ msgstr "Modo de perfil" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Los perfiles de los siguientes elementos grupos/perfiles/usuarios han sido " -#~ "actualizados correctamente (%d/%d/%d)" - -#~ msgid "Sync" -#~ msgstr "Sincr." - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Error al conectar con %s" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Error al crear %s grupos de componentes " - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Completar ruta a la consola de Pandora FMS sin el último \"/\" carácter. " -#~ "Ejemplo " - -#~ msgid "Could not be delete" -#~ msgstr "No se puede eliminar" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Error al crear/actualizar %s/%s componentes locales " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Creados %s componentes de grupos" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Error al crear/actualizar %s/%s componentes de red " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Creados/actualizados %s/%s componentes locales" - -#~ msgid "Metaconsole elements" -#~ msgstr "Elementos de la Metaconsola" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Creados/actualizados %s/%s componentes de red" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "El número de elementos recuperados para cada instancia en algunas vistas." - -#~ msgid "Visual" -#~ msgstr "visual" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Error al crear/actualizar %s/%s plantillas" - -#~ msgid "Only database" -#~ msgstr "Sólo bases de datos" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Error al crear/actualizar %s/%s tags" - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "No hay servidores añadidos a la metaconsola" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Error al crear/actualizar %s/%s comandos" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Creados/actualizados %s/%s comandos" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Error al crear/actualizar %s/%s acciones" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "Creados/actualizados %s/%s acciones" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Creadas/actualizadas %s/%s plantillas" - -#~ msgid "Propagation" -#~ msgstr "Propagación" - -#~ msgid "General setup" -#~ msgstr "Configuración general" - -#~ msgid "Visual setup" -#~ msgstr "Configuración visual" - -#~ msgid "Passwords setup" -#~ msgstr "Configuración de contraseñas" - -#~ msgid "Original string" -#~ msgstr "Cadena original" - -#~ msgid "Active events history" -#~ msgstr "Historial de eventos activo" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Creados/actualizados %s/%s tags" - -#~ msgid "Consoles Setup" -#~ msgstr "Configuración de consolas" - -#~ msgid "Customize translation" -#~ msgstr "Personalizar traducción" - -#~ msgid "Translation in selected language" -#~ msgstr "Traducción en el idioma seleccionado" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "Acciones de alertas en la BD de destino" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "Alertas de agentes creadas en la BD de destino" - -#~ msgid "Strings translation" -#~ msgstr "Traducción de cadenas" - -#~ msgid "Performance setup" -#~ msgstr "Configuración del rendimiento" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Error al crear/actualizar grupos %s/%s" - -#~ msgid "Consoles setup" -#~ msgstr "Configuración de las consolas" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "Servidor IP redirigido en la configuración a la BD de origen" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Creados/actualizados grupos %s/%s" - -#~ msgid "created agent in destination DB" -#~ msgstr "Agente creado en la BD de destino" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "Módulos de agente creados en la BD de destino" - -#~ msgid "disabled agent in source DB" -#~ msgstr "Agente desactivado en la BD de origen" - -#~ msgid "Add agents to destination server" -#~ msgstr "Añadir agentes al servidor de destino" - -#~ msgid "Move" -#~ msgstr "Mover" - -#~ msgid "Source Server" -#~ msgstr "Servidor de origen" - -#~ msgid "Destination Server" -#~ msgstr "Servidor de destino" - -#~ msgid "Successfully moved" -#~ msgstr "Movido satisfactoriamente" - -#~ msgid "Could not be moved" -#~ msgstr "No se puede mover" - -#~ msgid "Policy Manager" -#~ msgstr "Gestor de políticas" - -#~ msgid "Apply policies" -#~ msgstr "Aplicar políticas" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Creadas %s alertas de políticas" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Eliminadas %s módulos de políticas" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Creadas/actualizadas %s/%s módulos de políticas" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Error al crear/actualizar %s/%s módulos de políticas" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Políticas %s creadas" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Error al crear políticas %s" - -#~ msgid "Policies queue" -#~ msgstr "Cola de políticas" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Error al crear %s alertas de políticas" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Error al eliminar %s módulos de políticas" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Para conseguir la mejor experiencia de usuario con Pandora FMS, le " -#~ "recomendamos encarecidamente
usar" - -#~ msgid "" -#~ "
Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox o Google Chrome browsers." - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Error al eliminar %s alertas de políticas" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Eliminadas %s alertas de políticas" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "La metaconsola necesita una activación previa desde una consola regular, por " -#~ "favor, contacte con su administrador de sistemas si necesita asistencia.
" - -#~ msgid "Network traffic" -#~ msgstr "Tráfico de la red" - -#~ msgid "Create new report" -#~ msgstr "Crear un nuevo informe" - -#~ msgid "Metasetup" -#~ msgstr "Metasetup" - -#~ msgid "Tag management" -#~ msgstr "Gestión de Tags" - -#~ msgid "Alert management" -#~ msgstr "Gestión de alertas" - -#~ msgid "Category management" -#~ msgstr "Gestión de categorías" - -#~ msgid "Policy management" -#~ msgstr "Gestión de políticas" - -#~ msgid "Agent management" -#~ msgstr "Gestión de agentes" - -#~ msgid "Live view" -#~ msgstr "Vista en vivo" - -#~ msgid "Show modulegroup" -#~ msgstr "Mostrar los grupos de módulos" - -#~ msgid "Unnamed " -#~ msgstr "Sin nombre " - -#~ msgid "Agents movement" -#~ msgstr "Movimiento de agentes" - -#~ msgid "Show modules" -#~ msgstr "Mostrar módulos" - -#~ msgid "Filter by agents" -#~ msgstr "Filtrar por agente" - -#~ msgid "Filter by modules" -#~ msgstr "Filtrar por módulo" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Mostrar los hijos de la Metaconsola" - -#~ msgid "Back to login" -#~ msgstr "Volver a identificarse" - -#~ msgid "Undo changes" -#~ msgstr "Deshacer los cambios" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Añadir los módulos seleccionados al agente" - -#~ msgid "Agent modules" -#~ msgstr "Modulos de agentes" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "No se puede conectar a %s Pandora FMS para generar networkmap." - -#~ msgid "String to check" -#~ msgstr "Cadena a comprobar" - -#~ msgid "Check type" -#~ msgstr "Compruebe el tipo" - -#~ msgid "Response" -#~ msgstr "Respuesta" - -#~ msgid "Latency" -#~ msgstr "Latencia" - -#~ msgid "There is no group selected" -#~ msgstr "No ha seleccionado ningún grupo" - -#~ msgid "Add check" -#~ msgstr "Añadir comprobación" - -#~ msgid "Delete check" -#~ msgstr "Eliminar comprobación" - -#~ msgid "Deleted modules" -#~ msgstr "Módulos eliminados" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Error al añadir módulo %s" - -#~ msgid "Various" -#~ msgstr "Varios" - -#~ msgid "Thresholds" -#~ msgstr "Thresholds" - -#~ msgid "Web configuration" -#~ msgstr "Configuración web" - -#~ msgid "Alerts in module" -#~ msgstr "Alertas en el módulo" - -#~ msgid "Checks" -#~ msgstr "Comprobaciones" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Se produjo un error al crear las alertas, la operación ha sido cancelada" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "No se pudieron crear agentes %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agentes añadidos correctamente" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "No se pudo actualizar el agente %s" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s Módulos creados" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Erro al actualizar el módulo %s" - -#~ msgid "Successfully updated module." -#~ msgstr "Módulo actualizado correctamente" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Se produjo un error al actualizar las alertas, la operación ha sido cancelada" - -#~ msgid "No admin user" -#~ msgstr "No hay usuario administrador" - -#~ msgid "Manage agent modules" -#~ msgstr "Gestionar módulos de agentes" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Módulos eliminados" - -#~ msgid "Log viewer" -#~ msgstr "Visor de logs" - -#~ msgid "Delete alert" -#~ msgstr "Eliminar alerta" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Se produjo un problema al cargar tags" - -#~ msgid "Go to Alert detail" -#~ msgstr "Ir a los detalles de la alerta" - -#~ msgid "Plugin management" -#~ msgstr "Gestión de plugins" - -#~ msgid "Edit plugin" -#~ msgstr "Editar plugin" - -#~ msgid "Create plugin" -#~ msgstr "Crear plugin" - -#~ msgid "Copy Dashboard" -#~ msgstr "Copiar Dashboard" - -#~ msgid "Start date" -#~ msgstr "Fecha de inicio" - -#~ msgid "Custom SQL" -#~ msgstr "SQL personalizado" - -#~ msgid "Export this list to CSV" -#~ msgstr "Exportar esta lista a CSV" - -#~ msgid "Could not be updated." -#~ msgstr "No se puede actualizar" - -#~ msgid "Success be updated." -#~ msgstr "Actualizado correctamente" - -#~ msgid "Service Map" -#~ msgstr "Mapa de servicio" - -#~ msgid "List of elements" -#~ msgstr "Lista de elementos" - -#~ msgid "Error deleting service" -#~ msgstr "Error al eliminar el servicio" - -#~ msgid "Service deleted successfully" -#~ msgstr "Servicio eliminado correctamente" - -#~ msgid "Succesfully updated" -#~ msgstr "Actualizado correctamente" - -#~ msgid "Last contact: " -#~ msgstr "Último contacto: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Networkmap enterprise" - -#~ msgid "Not found networkmap." -#~ msgstr "No se encontró ningún networkmap." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Networmap Enterprise - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Creado correctamente" - -#~ msgid "Policy: " -#~ msgstr "Política: " - -#~ msgid "Succesfully duplicate" -#~ msgstr "Duplicado correctamente" - -#~ msgid "Data: " -#~ msgstr "Datos: " - -#~ msgid "Status: " -#~ msgstr "Estado: " - -#~ msgid "Resize the networkmap" -#~ msgstr "Redimensionar el networkmap" - -#~ msgid "Succesfully deleted" -#~ msgstr "Eliminado correctamente" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "No se ha asignado ninguna colección a este agente" - -#~ msgid "Could not be duplicated" -#~ msgstr "No se puede duplicar" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Tamaño del networkmap (ancho x alto)" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "El networkmap ya había sido generado" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Refrescar el estado del networkmap" - -#~ msgid "Descripttion" -#~ msgstr "Descripción" - -#~ msgid "Policy outdate" -#~ msgstr "Política obsoleta" - -#~ msgid "Toggle the collection table" -#~ msgstr "Cambiar la tabla de la colección" - -#~ msgid "Details of node:" -#~ msgstr "Detalles del nodo" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Este agente no tiene ninguna política asignada" - -#~ msgid "Networkmap resized." -#~ msgstr "Networkmap redimensionada" - -#~ msgid "Error process map" -#~ msgstr "Error al procesar mapa" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "Esta operación no se puede deshacer porque está en la BD" - -#~ msgid "Toggle the module table" -#~ msgstr "Cambiar a la tabla de alertas" - -#~ msgid "Show Modules" -#~ msgstr "Mostrar módulos" - -#~ msgid "Toggle the alert table" -#~ msgstr "Cambie a la tabla de alertas" - -#~ msgid "Show Alert" -#~ msgstr "Mostrar alertas" - -#~ msgid "Relationship" -#~ msgstr "Relación" - -#~ msgid "Show Collection" -#~ msgstr "Mostrar colecciones" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Backup" -#~ msgstr "Copia de seguridad" - -#~ msgid "Export to PDF" -#~ msgstr "Exportar a PDF" - -#~ msgid "Create backup" -#~ msgstr "Crear copia de seguridad" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Utilidad de la copia de seguridad de BD de Pandora FMS" - -#~ msgid "Lost" -#~ msgstr "Perdido" - -#~ msgid "Backups list" -#~ msgstr "Lista de copias de seguridad" - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Error al añadir colección '%s'." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Colección '%s' añadida correctamente" - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Error al añadir agente '%s'." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Agente '%s' añadido correctamente" - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Error al crear la política '%s'." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Política '%s' creada correctamente" - -#~ msgid "Error the policy haven't name." -#~ msgstr "Error la política no tiene nombre." - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "Error al crear política '%s', el nombre ya existe. Ese nombre no está libre." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Política de advertencia creada '%s', el nombre existe, la política tiene un " -#~ "nombre %s." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Error al añadir el módulo. No tiene tipo" - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Módulo '%s' añadido correctamente" - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Error al añadir la alerta, el módulo '%s' no existe" - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Alerta '%s' añadida correctamente" - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Error al añadir el módulo '%s'" - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Error al añadir la alerta, la plantilla '%s' no existe" - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Acción añadida correctamente '%s'." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Error al añadir alerta, la acción '%s' no existe." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Error al añadir alerta '%s'." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Error al añadir el módulo, error en el componente tag." - -#~ msgid "Yearly" -#~ msgstr "Anualmente" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Éste es el informe generado automáticamente" - -#~ msgid "Send custom report by email" -#~ msgstr "Enviar un informe personalizado por correo" - -#~ msgid "Backup Pandora database" -#~ msgstr "Copia de seguridad de la BD de Pandora FMS" - -#~ msgid "Hourly" -#~ msgstr "Cada hora" - -#~ msgid "Send to email" -#~ msgstr "Enviar a correo-e" - -#~ msgid "Save to disk into path" -#~ msgstr "Guardar disco en la ruta" - -#~ msgid "Save custom report to disk" -#~ msgstr "Guardar el informe personalizado en el disco" - -#~ msgid "Report to build" -#~ msgstr "Informe a construir" - -#~ msgid "Not scheduled" -#~ msgstr "No programada" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "No responda a este correo-e" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Abra el fichero adjunto para verlo" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "La ruta no existe o no se puede escribir en ella" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Esta extensión se basa en una correcta configuración de cron, el servicio de " -#~ "planificación basado en el tiempo" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Añada la siguiente linea a su archivo crontab" - -#~ msgid "Force run" -#~ msgstr "Forzar ejecución" - -#~ msgid "Scheduled jobs" -#~ msgstr "Tareas programadas" - -#~ msgid "Cron extension is running" -#~ msgstr "La extensión Cron se está ejecutando" - -#~ msgid "Last execution" -#~ msgstr "Última ejecución" - -#~ msgid "Path" -#~ msgstr "Ruta" - -#~ msgid "Task" -#~ msgstr "Tarea" - -#~ msgid "Scheduled" -#~ msgstr "Programado" - -#~ msgid "First_execution" -#~ msgstr "First_execution" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Quizá la primera ejecución no es exactamente igual a este valor porque la " -#~ "configuración de cron es diferente." - -#~ msgid "Last run" -#~ msgstr "Última ejecución" - -#~ msgid "Separator" -#~ msgstr "Separador" - -#~ msgid "Upload CSV file" -#~ msgstr "Subir archivo CSV" - -#~ msgid "Wizard SLA" -#~ msgstr "Wizard SLA" - -#~ msgid "File processed" -#~ msgstr "Archivo procesado" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Agente creado %s" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "El archivo CSV tiene que tener los campos en el siguiente orden" - -#~ msgid "CSV format" -#~ msgstr "Formato CVS" - -#~ msgid "Translate string" -#~ msgstr "Traducir cadena" - -#~ msgid "CSV import" -#~ msgstr "Importar CSV" - -#~ msgid "First execution" -#~ msgstr "Primera ejecución" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Templates list" -#~ msgstr "Lista de Plantillas" - -#~ msgid "Advance options" -#~ msgstr "Opciones avanzadas" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Gráficas de agentes (%s) - %s" - -#~ msgid "Generated" -#~ msgstr "Generado" - -#~ msgid "Template editor" -#~ msgstr "Editor de Plantillas" - -#~ msgid "Get PDF file" -#~ msgstr "Obtener archivo PDF" - -#~ msgid "MIN Value" -#~ msgstr "Valor MIN" - -#~ msgid "MAX Value" -#~ msgstr "Valor MAX" - -#~ msgid "% Wrong" -#~ msgstr "% Incorrecto" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "Report type" -#~ msgstr "Tipo de informe" - -#~ msgid "Simple Graph" -#~ msgstr "Gráfica simple" - -#~ msgid "% Limit" -#~ msgstr "% Límite" - -#~ msgid "Last 8 hours events" -#~ msgstr "Eventos de las últimas 8 horas" - -#~ msgid "Modules under" -#~ msgstr "Módulos bajo" - -#~ msgid "Modules at normal status" -#~ msgstr "Módulos en estado normal" - -#~ msgid "Uknown agents" -#~ msgstr "Agentes desconocidos" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Módulos en estado crítico o de advertencia" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "No hay módulos por encima o igual a %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "No hay módulos por debajo de %s" - -#~ msgid "There are no data." -#~ msgstr "No hay datos" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "No hay módulos en estado normal" - -#~ msgid "Serialized data " -#~ msgstr "Datos serializados " - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "No hay módulos bajo esas condiciones" - -#~ msgid "Crit:" -#~ msgstr "Crit." - -#~ msgid "Warn:" -#~ msgstr "Advert." - -#~ msgid "Ok:" -#~ msgstr "Ok:" - -#~ msgid "Value:" -#~ msgstr "Valor:" - -#~ msgid "Color" -#~ msgstr "Color" - -#~ msgid "Network map linked" -#~ msgstr "Mapa Network enlazado" - -#~ msgid "Shape" -#~ msgstr "Forma" - -#~ msgid "Radius" -#~ msgstr "Radio" - -#~ msgid "Open Minimap" -#~ msgstr "Abrir Minimapa" - -#~ msgid "Square" -#~ msgstr "Cuadrado" - -#~ msgid "Rhombus" -#~ msgstr "Rombo" - -#~ msgid "Circle" -#~ msgstr "Círculo" - -#~ msgid "Show modules:" -#~ msgstr "Mostrar módulos:" - -#~ msgid "Copy of " -#~ msgstr "Copiar de " - -#~ msgid "Module alert" -#~ msgstr "Alerta de módulos" - -#~ msgid "Empty configuration" -#~ msgstr "Configuración vacía" - -#~ msgid "Empty OS" -#~ msgstr "SO vacío" - -#~ msgid "Lines" -#~ msgstr "Líneas" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsola" - -#~ msgid "Period: " -#~ msgstr "Periodo: " - -#~ msgid "There are no agents with modules." -#~ msgstr "No hay agentes con módulos" - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "No hay agentes/módulos definidos." - -#~ msgid "Modules detailed event" -#~ msgstr "Evento detallados de módulos" - -#~ msgid "There are no events for this module." -#~ msgstr "No hay eventos para este módulo" - -#~ msgid "There are no events in group." -#~ msgstr "No hay eventos en este grupo" - -#~ msgid "There are no Events." -#~ msgstr "No hay eventos" - -#~ msgid "There are no alerts for this module." -#~ msgstr "No hay alertas para este módulo" - -#~ msgid "Exception - Equal to" -#~ msgstr "Excepción - Igual a" - -#~ msgid "Restoring a backup" -#~ msgstr "Restaurar una copia de seguridad" - -#~ msgid "No description" -#~ msgstr "Sin descripción" - -#~ msgid "There are no modules." -#~ msgstr "No hay módulos" - -#~ msgid "Untitled" -#~ msgstr "Sin título" - -#~ msgid "CONTENTS" -#~ msgstr "CONTENIDOS" - -#~ msgid "Report date: " -#~ msgstr "Fecha del informe: " - -#~ msgid "Generated: " -#~ msgstr "Generado: " - -#~ msgid "Agent:" -#~ msgstr "Agente:" - -#~ msgid "Module:" -#~ msgstr "Módulo:" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "Esta operación es compleja y necesita intervención humana para evitar fallos " -#~ "en el sistema y pérdida de datos" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Debe restaurar la copia de seguridad de la base de datos de Pandora FMS " -#~ "manualmente." - -#~ msgid "Open configuration file" -#~ msgstr "Abrir el archivo de configuración" - -#~ msgid "Find" -#~ msgstr "Encontrar" - -#~ msgid "Restore the backup" -#~ msgstr "Restaurar la copia de seguridad" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Modifique la configuración de la consola para usar esta nueva base de datos" - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Use el siguiente comando para conectar con la base de datos de MySQL" - -#~ msgid "Create a new database" -#~ msgstr "Crear una nueva base de datos" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "" -#~ "Para restaurar la copia de seguridad seleccionada, por favor, siga los " -#~ "siguientes pasos" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Abra un root shell en su sistema localizado en " - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Reinicie los servidores y vuelva a identificarse en la consola" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "" -#~ "Acceda al archivo de configuración de los servidores y reemplácelo por las " -#~ "siguientes líneas" - -#~ msgid "Into your destination database." -#~ msgstr "En su base de datos de destino" - -#~ msgid "Run import command using the following command" -#~ msgstr "Ejecute el comando de importación mediante el siguiente comando" - -#~ msgid "Log collector" -#~ msgstr "Colector de logs" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Error al conectar con el host especificado" - -#~ msgid "Database credentials not found" -#~ msgstr "Los credenciales de la base de datos no se han encontrado" - -#~ msgid "and replace with" -#~ msgstr "y reemplazar con" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Modifique la configuración de los servidores para usar esta nueva base de " -#~ "datos" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "En el servidor, falta la extensión \"Translate string\". Esta extensión es " -#~ "imprescindible para configurar la metaconsola." - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Conectado al host, pero no se puede encontrar la base de datos especificada" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "El nombre del servidor no coincide. Compruebe el nombre del servidor del " -#~ "nodo y configure el mismo nombre en el metasetup" - -#~ msgid "Last event replication" -#~ msgstr "Replicación del último evento" - -#~ msgid "Tree view by tags" -#~ msgstr "Vista de árbol por tags" - -#~ msgid "No changes found" -#~ msgstr "No se han encontrado cambios" - -#~ msgid "Get CSV file" -#~ msgstr "Obtener archivo CSV" - -#~ msgid "Alert warning service does not exist." -#~ msgstr "El servicio de alerta de advertencia no existe" - -#~ msgid "Agent store the service does not exist." -#~ msgstr "El agente que almacena el servicio no existe" - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "El módulo que almacena el servicio SLA no existe" - -#~ msgid "Module store the service does not exist." -#~ msgstr "El módulo que almacena los servicios no existe" - -#~ msgid "Service does not exist." -#~ msgstr "El servicio no existe" - -#~ msgid "Alert critical service does not exist." -#~ msgstr "El servicio de alertas críticas no existe" - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "El servicio de alerta crítica de SLA no existe" - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "El agente que almacena el sevicio de SLA no existe" - -#~ msgid "There are no service elements defined" -#~ msgstr "No hay servicios de elementos definidos" - -#~ msgid "Weight Critical" -#~ msgstr "Peso crítico" - -#~ msgid "Critical (Alert)" -#~ msgstr "Crítica (Alerta)" - -#~ msgid "Unknow" -#~ msgstr "Desconocido" - -#~ msgid "Weight Ok" -#~ msgstr "Peso Ok" - -#~ msgid "Delete service element" -#~ msgstr "Eliminar elemento de servicio" - -#~ msgid "Weight Warning" -#~ msgstr "Peso de advertencia" - -#~ msgid "Weight Unknown" -#~ msgstr "Peso desconocido" - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Módulo automático creado para el servicio %s" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "El servicio de alertas desconocidas no existe" - -#~ msgid "FAIL" -#~ msgstr "FALLO" - -#~ msgid "Module pending to unlink" -#~ msgstr "Módulo pendiente para desenlazar" - -#~ msgid "Module pending to link" -#~ msgstr "Módulo pendiente para enlazar" - -#~ msgid "You must change password" -#~ msgstr "Tiene que cambiar la contraseña" - -#~ msgid "Create a new policy map" -#~ msgstr "Crear un nuevo mapa de políticas" - -#~ msgid "Unlink from policy" -#~ msgstr "Módulo desenlazado de la política" - -#~ msgid "Module linked" -#~ msgstr "Módulo enlazado" - -#~ msgid "Relink to policy" -#~ msgstr "Volver a unir a la política" - -#~ msgid "Module unlinked" -#~ msgstr "Módulo desenlazado" - -#~ msgid "Password must contain numbers" -#~ msgstr "La contraseña tiene que contener números" - -#~ msgid " previous changes." -#~ msgstr " Cambios anteriores" - -#~ msgid "Password must be different" -#~ msgstr "La contraseña tiene que ser diferente" - -#~ msgid "Password too short" -#~ msgstr "La contraseña es demasiado corta" - -#~ msgid "Change" -#~ msgstr "Cambiar" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "Su usuario ha sido bloqueado. Vuelva a intentarlo en " - -#~ msgid " minutes" -#~ msgstr " minutos" - -#~ msgid "Password must be different from the " -#~ msgstr "La contraseña debe ser diferente de " - -#~ msgid "CONFIRM: " -#~ msgstr "CONFIRMAR: " - -#~ msgid "NEW PASS: " -#~ msgstr "NUEVA CONTRASEÑA: " - -#~ msgid "Password empty" -#~ msgstr "La contraseña está vacía" - -#~ msgid "Password confirm does not match" -#~ msgstr "Las contraseñas no coinciden" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Error al actualizar la contraseña (¿no ha cambiado?)" - -#~ msgid "Password must contain symbols" -#~ msgstr "La contraseña tiene que contener símbolos" - -#~ msgid "User pass successfully updated" -#~ msgstr "La contraseña se ha actualizado correctamente" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Puede que se haya borrado información exntendida, o que la información de " -#~ "auditoría sea previa a la instalación enterprise." - -#~ msgid "SLA critical service alert" -#~ msgstr "Alerta crítica de servicio SLA." - -#~ msgid "Warning weight" -#~ msgstr "Advertencia de peso" - -#~ msgid "Correct create collection" -#~ msgstr "Creado con éxito colección de ficheros." - -#~ msgid "Add module to operations as divide" -#~ msgstr "Añadir módulo a la operacion como divisor" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Déjelo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la " -#~ "colección." - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Añadir módulo a la operacion como resta" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Añadir módulo a la operacion como multiplicador " - -#~ msgid "Add module to operation as add" -#~ msgstr "Añadir módulo a la operación como suma" - -#~ msgid "Clean up template" -#~ msgstr "Vaciar la plantilla" - -#~ msgid "Move down selected modules" -#~ msgstr "Mover hacia abajo los módulos seleccionados" - -#~ msgid "Move up selected modules" -#~ msgstr "Mover hacia arriba los módulos seleccionados" - -#~ msgid "Cleanup error" -#~ msgstr "Error al borrar contenido" - -#~ msgid "Agent browser id" -#~ msgstr "ID del navegador (Agent Browser)" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Seleccione los módulos a comparar cuando cree el informe para cada agente" - -#~ msgid "Modules to match" -#~ msgstr "Módulos a comparar" - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Creador de plantillas personailizadas para MySQL" - -#~ msgid "Module exact match" -#~ msgstr "Coincidencia exacta de modulo" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el " -#~ "módulo. Por ejemplo: si usa este campo con \"Coincidencia exacta de modulo\" " -#~ "activado, entonces este campo tiene que rellenarse con la cadena literal del " -#~ "nombre del modulo, sino, usará una expresion regular, p.e: .*usage.* " -#~ "coincidiría con : cpu_usage, vram usage in machine 1." - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el " -#~ "agente. Por ejemplo: Network.* coincidiría con los siguientes nombres de " -#~ "agentes: network_agent1, NetworK CHECKS" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "" -#~ "Actívela si desea que haya una coincidencia exacta y literal en el nombre " -#~ "del módulo" - -#~ msgid ": Create new custom" -#~ msgstr ": Crear nueva consulta personalizada" - -#~ msgid "Could not be operation" -#~ msgstr "La operación no puedo completarse" - -#~ msgid "Agents to apply" -#~ msgstr "Agentes para aplicar" - -#~ 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, elija uno del combo del " -#~ "formulario." - -#~ 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, elija uno del combo del " -#~ "formulario." - -#~ msgid "Not literally" -#~ msgstr "No literal" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Expresión regular no sensible a mayúsculas. Por ejemplo: Network* hará " -#~ "coincidencia con los siguientes nombres de módulos: network_agent1, NetworK " -#~ "CHECKS" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Modulos a comparar (Texto libre)" - -#~ msgid "" -#~ "If it is checked, the regexp or name of modules match only each to each to " -#~ "agent, instead create a big graph with all modules from all agents." -#~ msgstr "" -#~ "Si se activa, la expresión regular o el nombre de modulo hará coincidencia " -#~ "en cada módulo de cada agente, y creará una gráfica que contenga módulos de " -#~ "todos los agentes." - -#~ msgid "Need apply" -#~ msgstr "Necesita aplicar" - -#~ msgid "Pending update policy only database" -#~ msgstr "" -#~ "Pendiente de actualizar política, sólo para cambios en base de datos." - -#~ msgid "Linking modules" -#~ msgstr "Modulos enlazados" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Debido a que la alerta puede tener múltiples acciones, debe editarlas desde " -#~ "la lista de alertas de eventos." - -#~ msgid "Builder event alert" -#~ msgstr "Creador de alertas de eventos" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Añadir a la cola de aplicación, sólo de cambios de base de datos" - -#~ msgid "Modules in policy agents" -#~ msgstr "Modulos en agentes de política" - -#~ msgid "Move down" -#~ msgstr "Bajar" - -#~ msgid "Move up" -#~ msgstr "Subir" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Error: Actualizando modulos enlazados a la política" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Completado: Actualizando modulos enlazados a la política" - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "Falló: borrado de alertas para estos modulos." - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Adición masiva de alertas a políticas" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Completado: borrado de alertas." - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "Alertas SNMP para añadir" - -#~ msgid "Modules agents in policy" -#~ msgstr "Modulos de agentes en la política" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "" -#~ "Falló: Creación de alertas para estos modulos, compruebe el problema." - -#~ msgid "Fail uploaded file" -#~ msgstr "Fallo al subir el archivo" - -#~ msgid "My Post" -#~ msgstr "Mi página" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "Tamaño del sistema de transferencia de datos (similar al un buffer)" - -#~ msgid "Please search for anything text." -#~ msgstr "Por favor haga una búsqueda de cualquier cadena de texto" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Seleccione el módulo donde se creará la alerta" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Seleccione el módulo para editar o borrar" - -#~ msgid "Create Module" -#~ msgstr "Crear módulo" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Seleccione el agente donde crear el modulo" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Si no establece la IP de la metaconsola en \"Lista de IP's con acceso a la " -#~ "API\", no se podrá conectar" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Desapriete la secciones seleccionadas para desactivarlo" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Apriete las secciones elegidas para activarlo" - -#~ msgid "Policies apply" -#~ msgstr "Aplicar políticas" - -#~ msgid "Go to agent detail" -#~ msgstr "Ir al detalle del agente" - -#~ msgid "Create new module" -#~ msgstr "Crear nuevo módulo" - -#~ msgid "User synchronization" -#~ msgstr "Sincronización de usuarios" - -#~ msgid "Group synchronization" -#~ msgstr "Sincronización de grupos" - -#~ msgid "Go to module detail" -#~ msgstr "Ir al detalle del módulo" - -#~ msgid "Customizable section" -#~ msgstr "Sección personalizable" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Desactivar filtros personalizados en la vista en vivo de netflow" - -#~ msgid "Report templates" -#~ msgstr "Plantillas de informes" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Des-adoptados)" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Des-adoptados)(Desvinculados)" - -#~ msgid "(Adopted)" -#~ msgstr "(Adoptados)" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Adoptados)(Desvinculados)" - -#~ msgid "Stand By" -#~ msgstr "En espera" - -#~ msgid "Create new alert" -#~ msgstr "Crear nueva alerta" - -#~ msgid "Method generation networkmap" -#~ msgstr "Método de generación de mapas de red" - -#~ msgid "Cron jobs" -#~ msgstr "Tareas programadas" - -#~ msgid "Cron extension is not running" -#~ msgstr "La extensión de tareas programadas (cron) no está ejecutándose" - -#~ msgid "Edit job" -#~ msgstr "Editar tarea" - -#~ msgid "Add new job" -#~ msgstr "Añadir nueva tarea" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "" -#~ "La extensión de tareas programadas (cron) no se ha ejecutado nunca o no está " -#~ "configurada correctamente" - -#~ msgid "Add fictional point" -#~ msgstr "Añadir punto ficticio" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "Informe automatizado de Pandora FMS para informes personalizados." - -#~ msgid "Policy linkation" -#~ msgstr "Vinculación de políticas" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Se han encontrado caracteres inválidos en el nombre del módulo" - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Por favor, guarde la plantilla SLA para empezar a añadir elementos a la lista" - -#~ msgid "Form filter" -#~ msgstr "Filtro" - -#~ msgid "Network console" -#~ msgstr "Consola de red" - -#~ msgid "Top N events by module." -#~ msgstr "Top N de eventos por módulo" - -#~ msgid "Top N Events by module." -#~ msgstr "Top N de eventos por módulo" - -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." -#~ msgstr "Por favor, rellene el Widget de datos antes de la lista de items" - -#~ msgid "There is not data to show." -#~ msgstr "No hay datos que mostrar" - -#~ msgid "Please select one or more groups." -#~ msgstr "Por favor, seleccione uno o más grupos" - -#~ msgid "Amount to show" -#~ msgstr "Cantidad a mostrar" - -#~ msgid "Show a top n of agents modules." -#~ msgstr "Mostrar el top N de módulos" - -#~ msgid "Top N events by agent." -#~ msgstr "Top N de eventos por agente" - -#~ msgid "Selection several modules" -#~ msgstr "Selección múltiple de módulos" - -#~ msgid "Regex for to filter modules" -#~ msgstr "Expresión regular para filtrar módulos" - -#~ msgid "avg" -#~ msgstr "media" - -#~ msgid "Selection module one by one" -#~ msgstr "Selección de módulos uno en uno" - -#~ msgid "Unsuccessful added modules" -#~ msgstr "Error añadiendo módulos" - -#~ msgid "Filter modules" -#~ msgstr "Filtrar módulos" - -#~ msgid "Successful added modules" -#~ msgstr "Módulos añadidos con éxito" - -#~ msgid "Top N Events by agent." -#~ msgstr "Top N de eventos por agente" - -#~ msgid "Success: recreate file" -#~ msgstr "Éxito: al volver a crear el archivo" - -#~ msgid "Filter module" -#~ msgstr "Filtro de módulo" - -#~ msgid "No associated actions" -#~ msgstr "No hay acciones asociadas" - -#~ msgid "Satellite operations" -#~ msgstr "Operaciones satélite" - -#~ msgid "Successfully duplicate the module." -#~ msgstr "Módulo duplicado con éxito" - -#~ msgid "Updated modules on database" -#~ msgstr "Módulos actualizados en la base de datos" - -#~ msgid "" -#~ "Left in blank if you want to use default name: Template name - agents (num " -#~ "agents) - Date" -#~ msgstr "" -#~ "Dejar en blanco si quieres usar el nombre por defecto: Nombre plantilla - " -#~ "agentes (num agentes) - Fecha" - -#~ msgid "Massive Satellite modules edition" -#~ msgstr "Edición masiva de módulos satélite" - -#~ msgid "Agent configuration files updated" -#~ msgstr "Actualizado fichero de configuración del agente" - -#~ msgid " Inverse interval " -#~ msgstr " Intervalo inverso " - -#~ msgid "Service forced successfully" -#~ msgstr "Forzado servicio con éxito" - -#~ msgid "Error service forced" -#~ msgstr "Error forzando servicio" - -#~ msgid "Remote/Local" -#~ msgstr "Remoto/Local" - -#~ msgid "Local module" -#~ msgstr "Módulo local" - -#~ msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -#~ msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Recon\"" - -#~ msgid "" -#~ "It is setted any recon task, the nodes get from the recontask IP mask " -#~ "instead from the group." -#~ msgstr "" -#~ "Si está seleccionada alguna tarea recon, los nodos se obtendrán de la " -#~ "máscara IP de la recontask en lugar del grupo" - -#~ msgid "Example:" -#~ msgstr "Ejemplo:" - -#~ msgid "ID Report" -#~ msgstr "ID Informe" - -#~ msgid "Send to emails (separated by comma)" -#~ msgstr "Enviar a emails (separados por comas)" - -#~ msgid "Incorrect mask format" -#~ msgstr "Formato de máscara incorrecto" - -#~ msgid "Network mask" -#~ msgstr "Máscara de red" - -#~ msgid "Calculate" -#~ msgstr "Calcular" - -#~ msgid "Address field is empty" -#~ msgstr "El campo Dirección está vacío" - -#~ msgid "Mask format" -#~ msgstr "Formato de máscara" - -#~ msgid "Mask" -#~ msgstr "Máscara" - -#~ msgid "Bit mask" -#~ msgstr "Bit de máscara" - -#~ msgid "Net mask" -#~ msgstr "Máscara de red" - -#~ msgid "Mask field is empty" -#~ msgstr "El campo Máscara está vacío" - -#~ msgid "Incorrect address format" -#~ msgstr "Formato de dirección incorrecto" - -#~ msgid "Last valid IP" -#~ msgstr "Última IP válida" - -#~ msgid "Hosts/Net" -#~ msgstr "Hosts/Red" - -#~ msgid "Broadcast address" -#~ msgstr "Dirección de difusión" - -#~ msgid "First valid IP" -#~ msgstr "Primera IP válida" - -#~ msgid "Network address" -#~ msgstr "Dirección de red" - -#~ msgid "Operating system" -#~ msgstr "Sistema operativo" - -#~ msgid "Generate events" -#~ msgstr "Generar eventos" - -#~ msgid "This agent has other IPs" -#~ msgstr "Este agente tiene otras IPs" - -#~ msgid "Hostname" -#~ msgstr "Nombre de máquina" - -#~ msgid "For example: Central Data Center" -#~ msgstr "Por ejemplo: Central General de Datos" - -#~ msgid "Examples" -#~ msgstr "Ejemplos" - -#~ msgid "Format: IP/Mask" -#~ msgstr "Formato: IP/Máscara" - -#~ msgid "Managed" -#~ msgstr "Gestionado" - -#~ msgid "Ping" -#~ msgstr "Ping" - -#~ msgid "Edited" -#~ msgstr "Modificado" - -#~ msgid "Network not found" -#~ msgstr "Red no encontrada" - -#~ msgid "Ping to host" -#~ msgstr "Ping a una máquina" - -#~ msgid "Addresses view" -#~ msgstr "Vista de direcciones" - -#~ msgid "Edit network" -#~ msgstr "Modificar red" - -#~ msgid "Alive" -#~ msgstr "Activo" - -#~ msgid "No networks found" -#~ msgstr "No se ha encontrado ninguna red" - -#~ msgid "IPs" -#~ msgstr "IPs" - -#~ msgid "Manage addresses" -#~ msgstr "Administrar direcciones" - -#~ msgid "Successfully updated." -#~ msgstr "Actualizado con éxito." - -#~ msgid "Delete network" -#~ msgstr "Eliminar red" - -#~ msgid "Not managed" -#~ msgstr "No gestionado" - -#~ msgid "Not alive" -#~ msgstr "Inactivo" - -#~ msgid "A -> Z" -#~ msgstr "A -> Z" - -#~ msgid "Z -> A" -#~ msgstr "Z -> A" - -#~ msgid "ASC" -#~ msgstr "ASC" - -#~ msgid "DESC" -#~ msgstr "DESC" - -#~ msgid "Subnet" -#~ msgstr "Subred" - -#~ msgid "No addresses found on this network" -#~ msgstr "No se han encontrado direcciones en esta red" - -#~ msgid "Export to Excel" -#~ msgstr "Exportar a Excel" - -#~ msgid "Exact address match" -#~ msgstr "Coincide la dirección exacta" - -#~ msgid "Big" -#~ msgstr "Grande" - -#~ msgid "Last check" -#~ msgstr "Ultima comprobación" - -#~ msgid "Show not alive hosts" -#~ msgstr "Mostrar máquinas inactivas" - -#~ msgid "Show only managed addresses" -#~ msgstr "Mostrar solo direcciones administradas" - -#~ msgid "Tiny" -#~ msgstr "Pequeño" - -#~ msgid "Icons style" -#~ msgstr "Estilo de iconos" - -#~ msgid "Newer -> Older" -#~ msgstr "Actual -> Antiguo" - -#~ msgid "Older -> Newer" -#~ msgstr "Antiguo -> Actual" - -#~ msgid "Edit address" -#~ msgstr "Modificar dirección" - -#~ msgid "Change to manual mode" -#~ msgstr "Cambiar a modo manual" - -#~ msgid "Subnetworks calculator" -#~ msgstr "Calculadora de subredes" - -#~ msgid "Add comments" -#~ msgstr "Añadir comentarios" - -#~ msgid "Update agent address" -#~ msgstr "Actualizar direción de agente" - -#~ msgid "This address will not be updated by the server" -#~ msgstr "Esta direción no se actualizará por el servidor" - -#~ msgid "Disabled address" -#~ msgstr "Deshabilitar direción" - -#~ msgid "Change to automatic mode" -#~ msgstr "Cambiar a modo automático" - -#~ msgid "SLA Compliance per days" -#~ msgstr "Cumplimiento de SLA por días" - -#~ msgid "IPAM" -#~ msgstr "IPAM" - -#~ msgid "Day" -#~ msgstr "Día" - -#~ msgid "Summary of SLA Fails" -#~ msgstr "Resumen de fallos de SLA" - -#, php-format -#~ msgid "Edit node %s" -#~ msgstr "Modificar nodo %s" - -#~ msgid "Edit node" -#~ msgstr "Modificar nodo" - -#~ msgid "Add node" -#~ msgstr "Añadir nodo" - -#~ msgid "Show details" -#~ msgstr "Ver detalles" - -#~ msgid "Relations" -#~ msgstr "Relaciones" - -#~ msgid "There are not relations" -#~ msgstr "No hay relaciones" - -#~ msgid "Str: " -#~ msgstr "Cadena " - -#~ msgid "Filter options" -#~ msgstr "Opciones de filtro" - -#~ msgid "Set parent" -#~ msgstr "Establecer como padre" - -#~ msgid "Please, uncheck auto option to set manual agent." -#~ msgstr "Desmarcar la opción auto para establecer agente manual" - -#~ msgid "Set as children" -#~ msgstr "Establecer como hijo" - -#~ msgid "Set center" -#~ msgstr "Fijar centro" - -#~ msgid "Update fictional node" -#~ msgstr "Actualizar nodo ficticio" - -#~ msgid "name fictional node" -#~ msgstr "Nombre de nodo ficticio" - -#~ msgid "Node source" -#~ msgstr "Nodo origen" - -#~ msgid "Node options" -#~ msgstr "Opciones de nodo" - -#~ msgid "Add agent node (filter by group)" -#~ msgstr "Añadir nodo de agente (filtro por grupo)" - -#~ msgid "Add agent node" -#~ msgstr "Añadir nodo de agente" - -#~ msgid "Node target" -#~ msgstr "Nodo objetivo" - -#~ msgid "Interface source" -#~ msgstr "Interfaz origen" - -#~ msgid "Interface Target" -#~ msgstr "Interfaz objetivo" - -#~ msgid "Add fictional node" -#~ msgstr "Añadir nodo ficticio" - -#~ msgid "Scan interval" -#~ msgstr "Comprobar intervalo" - -#~ msgid "Total IPs" -#~ msgstr "IPs totales" - -#~ msgid "0 for manually scan" -#~ msgstr "0 para comprobación manual" - -#~ msgid "Source data" -#~ msgstr "Datos de origen" - -#~ msgid "Unsucessful get module inventory data." -#~ msgstr "No se han podido obtener datos del módulo de inventario" - -#~ msgid "Diff view" -#~ msgstr "Vista de diferencia" - -#~ msgid "Start empty networkmap" -#~ msgstr "Networkmap comienza vacío" - -#~ msgid "Client" -#~ msgstr "Cliente" - -#, php-format -#~ msgid "There are %s updates, and the first to update is:" -#~ msgstr "Hay %s actualizaciones y la primera actualización es:" - -#~ msgid "Version number:" -#~ msgstr "Número de versión:" - -#~ msgid "Trial" -#~ msgstr "Prueba" - -#~ msgid "Refresh Holding area" -#~ msgstr "Actualizar buffer de procesamiento" - -#~ msgid "Block Mode" -#~ msgstr "Modo bloqueo" - -#~ msgid "CIDR IP mask" -#~ msgstr "Máscara CIDR" - -#~ msgid "Holding Area" -#~ msgstr "Buffer de procesamiento" - -#~ msgid "Source from CIDR IP mask" -#~ msgstr "Origen de máscara CIDR" - -#~ msgid "Source from recon task" -#~ msgstr "Origen de tarea recon" - -#~ msgid "Network wildcard" -#~ msgstr "Red wildcard" - -#~ msgid "Manage plugins" -#~ msgstr "Gestionar plugins" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Módulos ejecutándose en este servidor / Total módulos de este tipo" - -#~ msgid "Available" -#~ msgstr "Disponible" - -#~ msgid "Selected" -#~ msgstr "Seleccionado" - -#~ msgid "The services list is empty" -#~ msgstr "La lista de servicios esta vacía" - -#~ msgid "Icon preview" -#~ msgstr "Pre visualización del icono" - -#~ msgid "Remove the services from the list" -#~ msgstr "Elimina los servicios de la lista" - -#~ msgid "Pending to generate" -#~ msgstr "Pendiente de generar" - -#~ msgid "No services selected" -#~ msgstr "Ningún servicio seleccionado" - -#, php-format -#~ msgid "There is a error: %s" -#~ msgstr "Hay un error: %s" - -#~ msgid "There was an error retrieving the visual map information" -#~ msgstr "Se ha producido un error al recuperar la información del mapa visual" - -#~ msgid "Abort the action of set relationship" -#~ msgstr "Cancela la acción de relacionar por parentesco" - -#, php-format -#~ msgid "%d services couldn't be added" -#~ msgstr "%d servicios no se han podido añadir" - -#~ msgid "Push the selected services into the list" -#~ msgstr "Añade los servicios seleccionados a la lista" - -#~ msgid "None of the services was added" -#~ msgstr "Ninguno de los servicios se añadió" - -#~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions " -#~ "go to Update Manager for more details." -#~ msgstr "" -#~ "Hay una nueva actualización por favor vaya al menú Administración y en " -#~ "extensiones Administración actualizacionespara mas detalles." - -#~ msgid "" -#~ "MIB files will be loaded and searched for SNMP trap definitions. They will " -#~ "not be installed on the system! You can use the MIB uploader for that " -#~ "purpose." -#~ msgstr "" -#~ "Los ficheros MIB se cargarán y buscaron las definiciones de SNMP trap. ¡No " -#~ "van a ser instalados en el sistema! Puede usar el cargador de MIB para ese " -#~ "propósito." - -#~ msgid "" -#~ "Here are described the alert templates, which will use their default " -#~ "actions.\n" -#~ "\t\tYou can modify the default behaviour editing alerts in the agent who " -#~ "stores data and alert definitions about the service and the SLA status." -#~ msgstr "" -#~ "Aquí se describen las plantillas de alertas, que utilizarán sus acciones por " -#~ "defecto.\n" -#~ "\t\tPuedes modificar el comportambiento de las alertas de edición de " -#~ "comportamiento por defecto en el agente que almacena definiciones de datos y " -#~ "alerta sobre el servicio y el estado de SLA." - -#~ msgid "This SLA has been affected by the following planned downtimes" -#~ msgstr "Las siguientes paradas planificadas han modificado este SLA" - -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" -#~ msgstr "" -#~ "Solo los elementos críticos son relevantes para calcular el estado del " -#~ "servicio" - -#~ msgid "" -#~ "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 "" -#~ "En modo manual, se deben establecer los pesos de forma manual. En modo " -#~ "automático, los pesos tienen un valor por defecto.\n" -#~ "En modo simple, sólo se utilizarán los elementos configurados como " -#~ "'elementos críticos' para calcular el estado del servicio." - -#~ msgid "Are you sure? All the visual map services will be recreated" -#~ msgstr "Está seguro? Todos los mapas visuales serán creados." - -#~ msgid "Error: The main directory of collections does not exist." -#~ msgstr "Error: El directorio principal de las colecciones no existe." - -#~ msgid "Error: The collection directory does not exist." -#~ msgstr "Error: El directorio donde se almacenan las colecciones no existe." - -#~ msgid "The collection directory does not exist." -#~ msgstr "El directorio donde se guardan las colecciones no existe." - -#~ msgid "Reserve this IP now" -#~ msgstr "Reservar esta IP ahora" - -#~ msgid "Manage this IP now" -#~ msgstr "Gestionar esta IP ahora" - -#~ msgid "" -#~ "Destination group is the same than in the original server, if there is not " -#~ "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 "" -#~ "El grupo de destino es el mismo que en el servidor original. Si no hay otro " -#~ "grupo con el mismo nombre, será creado si la casilla está seleccionada. El " -#~ "grupo de destino del filtro es utilizado para comprobrar los agentes de ese " -#~ "grupo." - -#~ msgid "Create group if doesn’t exist in destination" -#~ msgstr "Crear grupo si no existe en el destino" - -#~ msgid "Based on name" -#~ msgstr "Basado en el nombre" - -#~ msgid "SLA graph" -#~ msgstr "Gráfica SLA" - -#~ msgid "Next available IP Address is:" -#~ msgstr "La siguiente IP disponible es:" - -#~ msgid "There is not an available IP." -#~ msgstr "No hay una IP disponible" - -#~ msgid "Assign next free IP" -#~ msgstr "Asignar la siguiente IP libre" - -#~ msgid "Group does not exist. Agent " -#~ msgstr "El grupo no existe. Agente " - -#~ msgid "Unreserved" -#~ msgstr "No reservado" - -#~ msgid "Operator users" -#~ msgstr "Usuarios del operador" - -#~ msgid "Reserved" -#~ msgstr "Reservado" - -#~ msgid "Addresses" -#~ msgstr "Direcciones" - -#~ msgid "" -#~ "The list of users can manage the networks in the IPAM. Only the admin users " -#~ "can manage networks and edit the networks." -#~ msgstr "" -#~ "Los usuarios de la lista pueden gestionar las redes en IPAM. Solo los " -#~ "usuarios administradores pueden gestionar y modificar las redes." - -#~ msgid "Next available IP" -#~ msgstr "Siguiente IP disponible" - -#~ msgid "Reserved addresses" -#~ msgstr "Direcciones reservadas" - -#~ msgid "Not Reserved" -#~ msgstr "No reservado" - -#~ msgid "Group already exists in destination DB" -#~ msgstr "El grupo ya existe en la base de datos destino" - -#~ msgid "Created group in destination DB" -#~ msgstr "Creado el grupo en la base de datos destino" - -#~ msgid "Error creating group. Agent " -#~ msgstr "Error creando grupo. Agente " - -#~ msgid "Send by email" -#~ msgstr "Enviar por correo-e" - -#~ msgid "Send by email " -#~ msgstr "Enviar por correo-e " - -#, php-format -#~ msgid "Group \"%s\"" -#~ msgstr "Grupo \"%s\"" - -#~ msgid "Need to regenerate" -#~ msgstr "Necesita volver a regenerarse" - -#~ msgid "This item is affected by a malformed planned downtime" -#~ msgstr "A este elemento le afecta una parada planificada mal formada" - -#~ msgid "Open for more details in update" -#~ msgstr "Abrir para obtener más detalles de actualización" - -#~ msgid "None update or create group" -#~ msgstr "NInguna actualización o creación de grupo" - -#, php-format -#~ msgid "Error updating %s groups" -#~ msgstr "Error actualizando %s grupos" - -#~ msgid "Open for more details in creation" -#~ msgstr "Abrir para obtener más detalles de creación" - -#~ msgid "Open for more details" -#~ msgstr "Abrir para obtener más detalles" - -#, php-format -#~ msgid "Error creating %s groups" -#~ msgstr "Error creando %s grupos" - -#~ msgid "Mobile" -#~ msgstr "Móvil" - -#, php-format -#~ msgid "(Error Duplicate ID (%d) ) " -#~ msgstr "(Error: ID duplicado (%d)) " - -#~ msgid "Error accesing to API." -#~ msgstr "Error al acceder a la API" - -#~ msgid "Error accesing to API, auth error." -#~ msgstr "Error al acceder a la API. Error de autenticación." - -#~ msgid "Go to the planned downtimes section to solve this" -#~ msgstr "" -#~ "Ir a la sección de paradas planificadas para solucionar este problema" - -#~ msgid "This element should be deleted" -#~ msgstr "Este elemento debería ser borrado" - -#~ msgid "Nonexistent" -#~ msgstr "No existe" - -#~ msgid "Templates Wizard" -#~ msgstr "Asistente de plantillas" - -#~ msgid "Templates wizard" -#~ msgstr "Asistente de plantillas" - -#~ msgid "Monitors view" -#~ msgstr "Vista de monitores" - -#~ msgid "Target group" -#~ msgstr "Grupo de destino" - -#~ msgid "Filter by" -#~ msgstr "Filtrar por" - -#~ msgid "E-mail:" -#~ msgstr "E-mail:" - -#~ msgid "Contact:" -#~ msgstr "Contacto:" - -#~ msgid "Group or Tag" -#~ msgstr "Grupo o Etiqueta" - -#~ msgid "Advance Options" -#~ msgstr "Opciones Avanzadas" - -#~ msgid "Tags used" -#~ msgstr "Etiquetas usadas" - -#~ msgid "Tags unused" -#~ msgstr "Etiquetas sin usar" - -#~ msgid "Create template report wizard" -#~ msgstr "Creación de informe con Asistente de Plantillas" - -#~ msgid "Filter tag" -#~ msgstr "Filtro etiqueta" - -#~ msgid "There are no maps defined." -#~ msgstr "No hay mapas definidos." - -#~ msgid "Report of events (last hour)" -#~ msgstr "Informe de eventos (última hora)" - -#~ msgid "Report of state" -#~ msgstr "Informe de estado" - -#~ msgid "ERROR:" -#~ msgstr "ERROR:" - -#~ msgid "Move Agents" -#~ msgstr "Mover Agentes" - -#~ msgid "Info of state in events (last hour)" -#~ msgstr "Información del estado en los eventos (última hora)" - -#~ msgid "Synchronizing Groups" -#~ msgstr "Sincronizando Grupos" - -#~ msgid "Synchronizing Tags" -#~ msgstr "Sincronizando Etiquetas" - -#~ msgid "Synchronizing Users" -#~ msgstr "Sincronizando Usuarios" - -#~ msgid "Synchronizing Alerts" -#~ msgstr "Sincronizando Alertas" - -#~ msgid "Apply Policies" -#~ msgstr "Aplicar Políticas" - -#~ msgid "Show the tree view" -#~ msgstr "Mostrar la vista de árbol" - -#~ msgid "Advance Reporting" -#~ msgstr "Opciones Avanzadas" - -#~ msgid "Invalid licence." -#~ msgstr "Licencia inválida" - -#~ msgid "Please contact Artica at info@artica.es for a valid licence." -#~ msgstr "" -#~ "Por favor contacte con Ártica en info@artica.es para una licencia válida." - -#~ msgid "There are no defined users" -#~ msgstr "No hay usuarios definidos" - -#~ msgid "ACL users for this agent" -#~ msgstr "Usuarios ACL para este agente" - -#~ msgid "Check ACL" -#~ msgstr "Chequear ACL" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Mapa de red actualizado correctamente" - -#~ msgid "Update networkmap" -#~ msgstr "Actualizar mapa de red" - -#~ msgid "Save networkmap" -#~ msgstr "Guardar mapa de red" - -#~ msgid "Networkmap to link" -#~ msgstr "Enlace a mapa de red" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "El mapa de red no se ha podido actualizar" - -#~ msgid "Successful update the tags" -#~ msgstr "Etiquetas actualizadas correctamente" - -#~ msgid "Unsuccessful update the tags" -#~ msgstr "Las etiquetas no se han actualizado correctamente" - -#~ msgid "Networkmap list" -#~ msgstr "Listado mapas de red" - -#~ msgid "% Monitors OK" -#~ msgstr "% Monitores Ok" - -#~ msgid "% Monitors Critical" -#~ msgstr "% Monitores críticos" - -#~ msgid "% Monitors Warning" -#~ msgstr "% Monitores de advertencia" - -#~ msgid "Summary by status" -#~ msgstr "Resumen por estado" - -#~ msgid "% Agents Unknown" -#~ msgstr "% Agentes Desconocidos" - -#~ msgid "Filter by tag" -#~ msgstr "Filtrar por etiqueta" - -#~ msgid "Modules unused" -#~ msgstr "Módulos sin usar" - -#~ msgid "Modules used" -#~ msgstr "Módulos usados" - -#~ msgid "Masive tags module policy edition" -#~ msgstr "Edición masiva de de módulos por política" - -#~ msgid "Masive modules policy tags edition" -#~ msgstr "Edición masiva de etiquetas por política" - -#~ msgid "This agent has not modules inventory" -#~ msgstr "Este agente no tiene módulos de inventario" - -#~ msgid "The start date cannot be greater than the end date" -#~ msgstr "La fecha de inicio no puede ser posterior a la fecha fin" - -#~ msgid "Password policy" -#~ msgstr "Política de contraseñas" - -#~ msgid "Module successfully added." -#~ msgstr "Módulo añadido con éxito." - -#~ msgid "Only admin users can see this section." -#~ msgstr "Solo los usuarios administradores pueden ver esta sección." - -#~ msgid "" -#~ "Show a resume table with max, min, average of total modules on the report " -#~ "bottom:" -#~ msgstr "" -#~ "Mostrar un resumen de la tabla con máximo, mínimo, media del total de " -#~ "modulos en la parte inferior del informe" - -#~ msgid "Order:" -#~ msgstr "orden" - -#~ msgid "Show address instead module name" -#~ msgstr "Muestra dirección en vez del nombre del módulo" - -#~ msgid "Request new licence" -#~ msgstr "Solicitar una nueva licencia" - -#~ msgid "Last replication at" -#~ msgstr "Última replicación a" - -#~ msgid "Create Local Component" -#~ msgstr "Crear el componente local" - -#~ msgid "Update Local Component" -#~ msgstr "Actualizar el componente local" - -#~ msgid "" -#~ "Here is placed the script for the REMOTE inventory modules Local inventory " -#~ "modules don't use this field" -#~ msgstr "" -#~ "Aquí se coloca el script de los módulos de inventario remoto, los módulos de " -#~ "inventario locales no utilizan este campo." - -#~ msgid "Left blank for the LOCAL inventory modules" -#~ msgstr "Espacio izquierdo Aen blanco para los módulos de inventario LOCALES" - -#~ msgid "Could not be added to deleted all modules." -#~ msgstr "No puede ser añadido a borrar todos los módulos" - -#~ msgid "Enterprise ACL Setup" -#~ msgstr "Configurar ACL Enterprise" - -#~ msgid "Please choose other server." -#~ msgstr "Por favor, elija otro servidor" - -#~ msgid "When connecting to Artica server." -#~ msgstr "Cuando se conecta al servidor de Ártica" - -#~ msgid "Could not be create, duplicated server name." -#~ msgstr "No puede ser creado, el nombre del servidor está duplicado" - -#~ msgid "Online validation" -#~ msgstr "Validación en línea" - -#~ msgid "Synchronizing Components" -#~ msgstr "Componentes de sincronización" - -#, php-format -#~ msgid "" -#~ "You can activate it manually here or " -#~ "automatically filling the form below:" -#~ msgstr "" -#~ "Lo puede activar manualmente aqui u " -#~ "automáticamente rellenando el siguiente formulario:" - -#~ msgid "Auth Key:" -#~ msgstr "Clave de autenticación" - -#~ msgid "Activate licence" -#~ msgstr "Activar la licencia" - -#~ msgid "Your request key is:" -#~ msgstr "Su clave es:" - -#~ msgid "ACL module tags for the modules in this agent" -#~ msgstr "Etiquetas del módulo de ACL para los módulos de este agente" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled ." -#~ msgstr "" -#~ "Ha habido un error creando las alertas, la operación ha sido cancelada." - -#~ msgid "" -#~ "The user doesn't have permission to read agents. Please contact with your " -#~ "pandora administrator." -#~ msgstr "" -#~ "El usuario no tiene permiso para leer los agentes. Por favor contacte con su " -#~ "administrador de Pandora" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index e2cf7262d3189d3c9e27ffb05d2deba4fde7929d..88f77e10c97acb633434714345f65d9b1fc99143 100644 GIT binary patch delta 24051 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

IcyXW=sy>h?;m4^&YYQHo7$5paVaNCV7ITFXH#V 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\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: fr\n" -#: ../../godmode/menu.php:146 ../../operation/events/events.php:396 -#: ../../operation/events/events.php:405 ../../operation/events/events.php:422 -#: ../../operation/menu.php:260 ../../mobile/operation/home.php:42 -#: ../../mobile/operation/events.php:559 -#: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_graph.php:687 -#: ../../include/functions_graph.php:3217 -#: ../../include/functions_graph.php:3836 -#: ../../include/functions_reports.php:609 -#: ../../include/functions_reports.php:611 -#: ../../include/functions_reports.php:613 -#: ../../include/functions_reporting_html.php:1063 -msgid "Events" -msgstr "Événements" - #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 msgid "There was a problem loading group" @@ -4858,6 +4843,21 @@ msgstr "Liste des jours specials" msgid "SNMP alerts" msgstr "Alertes SNMP" +#: ../../godmode/menu.php:146 ../../operation/events/events.php:396 +#: ../../operation/events/events.php:405 ../../operation/events/events.php:422 +#: ../../operation/menu.php:260 ../../mobile/operation/home.php:42 +#: ../../mobile/operation/events.php:559 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_graph.php:687 +#: ../../include/functions_graph.php:3217 +#: ../../include/functions_graph.php:3836 +#: ../../include/functions_reports.php:609 +#: ../../include/functions_reports.php:611 +#: ../../include/functions_reports.php:613 +#: ../../include/functions_reporting_html.php:1063 +msgid "Events" +msgstr "Événements" + #: ../../godmode/menu.php:152 msgid "Event filters" msgstr "Filtres événements" @@ -8798,7 +8798,7 @@ msgstr "Modifier événements" #: ../../godmode/users/configure_profile.php:311 #: ../../general/shortcut_bar.php:217 msgid "View reports" -msgstr "Voir les rapports" +msgstr "Afficher les rapports" #: ../../godmode/users/configure_profile.php:315 msgid "Edit reports" @@ -15009,7 +15009,7 @@ msgstr "Assistant Pandora FMS" #: ../../general/header.php:192 msgid "Configure autorefresh" -msgstr "Configurer autorefresh" +msgstr "configurer autorefresh" #: ../../general/header.php:203 msgid "15 seconds" @@ -15043,7 +15043,7 @@ msgstr "Il n'y a pas des avertissements" #: ../../general/header.php:284 msgid "New chat message" -msgstr "Nouveau message de chat" +msgstr "Nouveau message de discussion" #: ../../general/header.php:293 msgid "Message overview" @@ -15084,7 +15084,7 @@ msgstr "Aide en ligne" #: ../../general/login_help_dialog.php:59 #: ../../general/login_help_dialog.php:61 msgid "Enterprise version" -msgstr "Version Enterprise" +msgstr "La version Enterprise" #: ../../general/login_help_dialog.php:67 #: ../../general/login_help_dialog.php:69 ../../general/login_page.php:83 @@ -15102,7 +15102,7 @@ msgstr "Documentation" #: ../../general/login_help_dialog.php:86 msgid "Click here to don't show again this message" -msgstr "Cliquez ici pour ne pas montrer de nouveau ce message" +msgstr "Cliquez ici pour ne montrent pas de nouveau ce message" #: ../../general/logon_ok.php:31 msgid "Welcome to Pandora FMS Web Console" @@ -15192,7 +15192,7 @@ msgstr "" #: ../../general/login_page.php:35 msgid "Go to Pandora FMS Website" -msgstr "Accédez au site Web Pandora FMS" +msgstr "Aller à Pandora FMS Site" #: ../../general/login_page.php:40 msgid "Go to Login" @@ -15255,13 +15255,13 @@ msgstr "Continuer malgré cet avertissement" #: ../../general/shortcut_bar.php:165 msgid "Press here to activate shortcut bar" -msgstr "Cliquer ici pour activer la barre de raccourci" +msgstr "Presser ici pour activer la barre de raccourci" #: ../../general/shortcut_bar.php:189 ../../general/shortcut_bar.php:191 #: ../../include/functions_reporting_html.php:2678 #: ../../include/functions_reporting_html.php:2695 msgid "Critical events" -msgstr "Événements critiques" +msgstr "Les événements critiques" #: ../../general/shortcut_bar.php:202 ../../general/shortcut_bar.php:204 msgid "Incidents opened" @@ -20889,4808 +20889,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "Le fichier est disparu dans le memoire de disk. Si vous plaît contacter le " "administrateur" - -#~ msgid "NC.Group" -#~ msgstr "Groupe NC" - -#~ msgid "Module component management" -#~ msgstr "Gestion des composantes réseau" - -#~ msgid "Module Interval" -#~ msgstr "Intervale du module" - -#~ msgid "TCP port" -#~ msgstr "Port TCP" - -#~ msgid "Minimum Data" -#~ msgstr "Donnée min." - -#~ msgid "Maximum Data" -#~ msgstr "Donnée max." - -#~ msgid "Map builder" -#~ msgstr "Créateur de cartes" - -#~ msgid "Label color" -#~ msgstr "Couleur de la légende" - -#~ msgid "Graph builder module list" -#~ msgstr "Liste de modules de construction d’un tableau" - -#~ msgid "Combined image render" -#~ msgstr "Résultat de combination d’images" - -#~ msgid "Factor" -#~ msgstr "Facteur" - -#~ msgid "Render now" -#~ msgstr "Produire les resultats maintenant" - -#~ msgid "Redraw" -#~ msgstr "Redessiner" - -#~ msgid "Custom graph store" -#~ msgstr "Sauvegarde personnalisée du tableau" - -#~ msgid "Store" -#~ msgstr "Garder" - -#~ msgid "Reporting successfully created" -#~ msgstr "Rapport créé avec succès" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Pandora a rencontré un problème pendant la creation du rapport" - -#~ msgid "Custom reporting builder" -#~ msgstr "Créateur de rapports personnalisés" - -#~ msgid "Add item to report" -#~ msgstr "Ajouter un élément au rapport" - -#~ msgid "Reporting type" -#~ msgstr "Type de rapport" - -#~ msgid "Custom graph name" -#~ msgstr "Nom de tableau personnalisé" - -#~ msgid "Up" -#~ msgstr "Haut" - -#~ msgid "User successfully deleted" -#~ msgstr "Usager éliminé avec succès" - -#~ msgid "Standard user" -#~ msgstr "Usger standard" - -#~ msgid "Database Maintenance" -#~ msgstr "Maintenance de la Base de Données" - -#~ msgid "Total data" -#~ msgstr "Total des données" - -#~ msgid "Event Database cleanup" -#~ msgstr "Nettoyer la Base de Données des événements" - -#~ msgid "Database Audit purge" -#~ msgstr "Dépuration de la Base de Données Audit" - -#~ msgid "Data from agent " -#~ msgstr "Données de l'agent " - -#~ msgid "Database Information" -#~ msgstr "Information de la Base de Données" - -#~ msgid "Modules per agent" -#~ msgstr "Modules par agent" - -#~ msgid "Packets per agent" -#~ msgstr "Paquets par agent" - -#~ msgid "Pandora Setup" -#~ msgstr "Configuration" - -#~ msgid "General configuration" -#~ msgstr "Configuration générale" - -#~ msgid "Link successfully created" -#~ msgstr "Le lien a été créé" - -#~ msgid "Link successfully updated" -#~ msgstr "Lien actualisé avec succès" - -#~ msgid "Manage modules" -#~ msgstr "Gérer les modules" - -#~ msgid "Report builder" -#~ msgstr "Créateur de rapports" - -#~ msgid "Manage profiles" -#~ msgstr "Gestion de profils" - -#~ msgid "DB Maintenance" -#~ msgstr "Maintenance des bases de données" - -#~ msgid "DB Information" -#~ msgstr "Information Base de Données" - -#~ msgid "Modules successfully added " -#~ msgstr "Les modules ont été ajoutés avec succès " - -#~ msgid "Available templates" -#~ msgstr "Modèles disponibles" - -#~ msgid "Assigned modules" -#~ msgstr "Modules assignés" - -#~ msgid "Net. Templates" -#~ msgstr "Modèles Net." - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alerte eliminée avec succès" - -#~ msgid "Alert successfully created" -#~ msgstr "Alerte créée avec succès" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent actualisé avec succès" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Pandora a rencontré un problème pour actualiser l'agent" - -#~ msgid "There was a problem updating module" -#~ msgstr "Pandora a rencontré un problème pour actualiser le module" - -#~ msgid "There was a problem adding module" -#~ msgstr "Pandora a rencontré un problème pour pour ajouter le module" - -#~ msgid "Alert type" -#~ msgstr "Type d'alerte" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Champ #1 (Alias, nom)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Champ #2 (Ligne simple)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Champ #3 (Texte complet)" - -#~ msgid "Data Copy" -#~ msgstr "Copie de données" - -#~ msgid "No selected agents to copy" -#~ msgstr "Aucun agent destinataire n'a été sélectionné pour être copié" - -#~ msgid "Configuration Management" -#~ msgstr "Gestion de Configurations" - -#~ msgid "To Agent(s):" -#~ msgstr "Agent(s) destinataires" - -#~ msgid "Update agent" -#~ msgstr "Actualiser l'agent" - -#~ msgid "Network Server" -#~ msgstr "Serveur réseau" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Cet agent ne possède pas de module designé" - -#~ msgid "Group management" -#~ msgstr "Gestion de groupes" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profil éliminé avec succès" - -#~ msgid "Profile successfully created" -#~ msgstr "Profil créé avec succès" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profil actualisé avec succès" - -#~ msgid "Manage Database" -#~ msgstr "Gestion de la Base de Données" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alerte actualisée avec succès" - -#~ msgid "Network profile" -#~ msgstr "Profil réseau" - -#~ msgid "Recon Server" -#~ msgstr "Serveur Recon" - -#~ msgid "day" -#~ msgstr "jour" - -#~ msgid "week" -#~ msgstr "semaine" - -#~ msgid "month" -#~ msgstr "mois" - -#~ msgid "Master" -#~ msgstr "Principal" - -#~ msgid "Data Server" -#~ msgstr "Serveur de données" - -#~ msgid "MD5 Check" -#~ msgstr "Vérification MD5" - -#~ msgid "Event report" -#~ msgstr "Rapport d’une commande" - -#~ msgid "Alert report" -#~ msgstr "Rapport d’alerte" - -#~ msgid "Pandora users" -#~ msgstr "Usagers de Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Statistiques de l'activité des usagers" - -#~ msgid "Event graph by group" -#~ msgstr "Tableaux des commandes effectuées par groupe" - -#~ msgid "Validated event" -#~ msgstr "Evénement validé" - -#~ msgid "View users" -#~ msgstr "Voir usagers" - -#~ msgid "Pandora Agents" -#~ msgstr "Agents de Pandora" - -#~ msgid "Agent general information" -#~ msgstr "Information générale agent" - -#~ msgid "Thurdsday" -#~ msgstr "Jeudi" - -#~ msgid "Hr" -#~ msgstr "Hr" - -#~ msgid "Database export results" -#~ msgstr "Resultats du déchargement de données de la Base de Données" - -#~ msgid " from " -#~ msgstr " de " - -#~ msgid " to " -#~ msgstr " au " - -#~ msgid "Download file" -#~ msgstr "Télécharger le fichier" - -#~ msgid "No module has been selected" -#~ msgstr "Aucun module n'a été sélectionné" - -#~ msgid "Begin date (*)" -#~ msgstr "Date début (*)" - -#~ msgid "End date (*)" -#~ msgstr "Date fin (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Format CSV" - -#~ msgid "Full list of Monitors" -#~ msgstr "Liste complète des moniteurs" - -#~ msgid "Load" -#~ msgstr "Ouvrir" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Change entre les états vert et rouge" - -#~ msgid "At least one monitor fails" -#~ msgstr "Au moins un moniteur fonctionne mal" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent sans moniteurs" - -#~ msgid "Agent down" -#~ msgstr "Agent déconnecté" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Aucun agent n'a été mis dans ce groupe" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Contenu des derniers paquets envoyés par l'agent :" - -#~ msgid "int" -#~ msgstr "Intv." - -#~ msgid "Raw Data" -#~ msgstr "Données" - -#~ msgid "Times Fired" -#~ msgstr "Nombre de fois lancée" - -#~ msgid "Configuration detail" -#~ msgstr "Detail de la Configuration" - -#~ msgid "General information" -#~ msgstr "Informations générales" - -#~ msgid "Authentication Error" -#~ msgstr "Erreur d'Authentification" - -#~ msgid "Logged Out" -#~ msgstr "Deconnecté(e)" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Voici la Console de Gestion de Pandora. Elle vous permet de gérer vos " -#~ "agents, vos alertes et vos incidents. La session demeurera ouverte en dehors " -#~ "de toute période d'inactivité prolongée." - -#~ msgid "You don't have access" -#~ msgstr "Vous n'aves pas d'accès" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "" -#~ "Vous n'avez pas des authorisations suffisantes pour accéder à cette " -#~ "ressource" - -#~ msgid "Software agent data" -#~ msgstr "Données de l'agent logiciel" - -#~ msgid "Software agent monitor" -#~ msgstr "Moniteur de l’agent logiciel" - -#~ msgid "Network agent data" -#~ msgstr "Données sur le réseau agent" - -#~ msgid "Network agent monitor" -#~ msgstr "Moniteur du réseau agent" - -#~ msgid "Group name" -#~ msgstr "Nom de groupes" - -#~ msgid "Global health" -#~ msgstr "Santé globale" - -#~ msgid "Map element editor" -#~ msgstr "Editeur d'élément de carte" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Déposez l'élément ici pour le supprimer de la carte" - -#~ msgid "Update layout successful" -#~ msgstr "Mise à jour de la mise en page réussie" - -#~ msgid "Update layout failed" -#~ msgstr "Mise à jour de la mise en page échouée" - -#~ msgid "preview" -#~ msgstr "aperçu" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Déposez l'élément ici pour éditer les propriétés" - -#~ msgid "Port option" -#~ msgstr "Option de port" - -#~ msgid "Module deleted successfully" -#~ msgstr "Module supprimé avec succès" - -#~ msgid "Link successfully deleted" -#~ msgstr "Lien supprimé avec succès" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulaire d'arrêt planifiés" - -#~ msgid "WMI Query" -#~ msgstr "Requête WMI" - -#~ msgid "Delete agents" -#~ msgstr "Agents supprimés" - -#~ msgid "Plugin parameters" -#~ msgstr "Paramètres de plugin" - -#~ msgid "Checking database consistency" -#~ msgstr "Vérification de la cohérence de base de données" - -#~ msgid "General group report" -#~ msgstr "Rapport de groupe général" - -#~ msgid "Agents in group" -#~ msgstr "Agents dans le groupe" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Supprimez les modules non-initialisé maintenant" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "Agents down" -#~ msgstr "Agent éteint" - -#~ msgid "SLA view" -#~ msgstr "Vue SLA" - -#~ msgid "from" -#~ msgstr "de" - -#~ msgid "Older" -#~ msgstr "Ancien" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Système d'Aide de Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Console Web Pandora FMS" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Le générateur de clef (keygen) n'est pas executable" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Le générateur de clef (keygen) n'existe pas" - -#~ msgid "Autorefresh" -#~ msgstr "Raffraichissement automatique" - -#~ msgid "There was a problem loading alert" -#~ msgstr "" -#~ "Pandora a rencontré une erreur lors du chargement de la Configuration de " -#~ "l'alerte" - -#~ msgid "SNMP server" -#~ msgstr "Serveur SNMP" - -#~ msgid "Seconds" -#~ msgstr "Secondes" - -#~ msgid "No news articles at this moment" -#~ msgstr "Pas de nouveaux articles actuellement" - -#~ msgid "You are" -#~ msgstr "Vous êtes" - -#~ msgid "Your system is up-to-date" -#~ msgstr "Votre système est à jour" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Le Gestionnaire de Mise à jour envoie des informations anonymes sur " -#~ "l'utilisation de Pandora FMS (nombres d'agents et de modules en " -#~ "fonctionnement). Pour le désactiver, supprimez simplement l'extension ou " -#~ "supprimez l'adresse du serveur distant dans la configuration du plugin " -#~ "\"Gestionnaire de Mise à jour\"." - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Le nouveau client Gestionnaire de Mise à " -#~ "jour est livré avec Pandora FMS 2.0. Il aide les administrateurs système " -#~ "à mettre à jour automatiquement leur Pandora FMS en récupérant les nouveaux " -#~ "modules, plugins et fonctionnalités (ainsi que les outils de migration vers " -#~ "une nouvelle version) automatiquement." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Le Gestionnaire de Mise à jour est l'une des fonctionnalités les plus " -#~ "avancées de Pandora FMS 2.0 version Entreprise, visitez http://pandorafms.com pour plus " -#~ "d'information." - -#~ msgid "Server connection failed" -#~ msgstr "La connexion au serveur a échoué" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Il y a une nouvelle mise à jour pour Pandora FMS" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Settings" -#~ msgstr "Paramètres" - -#~ msgid "Development" -#~ msgstr "Développement" - -#~ msgid "Testing" -#~ msgstr "Test" - -#~ msgid "Last Month" -#~ msgstr "Le mois dernier" - -#~ msgid "hour" -#~ msgstr "heure" - -#~ msgid "Manage plugins" -#~ msgstr "Gérer les greffons" - -#~ msgid "Manage Incidents" -#~ msgstr "Gérer les incidents" - -#~ msgid "Del" -#~ msgstr "Suppr" - -#~ msgid "Oper" -#~ msgstr "Donner le statut d'opérateur" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "Alerts defined" -#~ msgstr "Alertes définies" - -#~ msgid "Users defined" -#~ msgstr "Utilisateurs définis" - -#~ msgid "Server authorization rejected" -#~ msgstr "Authorisation serveur rejetée" - -#~ msgid "Update server port" -#~ msgstr "Mise à jour du port du serveur" - -#~ msgid "Your system version number is" -#~ msgstr "La version de votre système est" - -#~ msgid "Update manager settings updated" -#~ msgstr "Les paramètres du gestionnaire de mise à jour sont mis à jours" - -#~ msgid "Overwrite local changes" -#~ msgstr "Ecraser localement les changements" - -#~ msgid "Update server host" -#~ msgstr "Mise à jour de l'hote du serveur" - -#~ msgid "Update server path" -#~ msgstr "Mise à jour du chemin du serveur" - -#~ msgid "Update manager settings" -#~ msgstr "Paramètres du gestionnaire de mise à jour" - -#~ msgid "More info" -#~ msgstr "Plus d'information" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Ceci est une nouvelle mise à jour de Pandora" - -#~ msgid "Keygen path" -#~ msgstr "Chemin du générateur de clef" - -#~ msgid "SLA was successfully created" -#~ msgstr "Les SLA ont été créé avec succés" - -#~ msgid "Two Months" -#~ msgstr "Deux mois" - -#~ msgid "Six Months" -#~ msgstr "Six mois" - -#~ msgid "3 hours" -#~ msgstr "3 heures" - -#~ msgid "4 days" -#~ msgstr "4 jours" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Il y a eu un problème lors de la création de SLA" - -#~ msgid "SLAs defined" -#~ msgstr "Les SLA sont définies" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Il y a eu un problème de suppression des SLA" - -#~ msgid "Module is not set" -#~ msgstr "Le module n'est pas paramétré" - -#~ msgid "SLA was successfully delete" -#~ msgstr "Les SLA ont été supprimés avec succès" - -#~ msgid "SLA report construction" -#~ msgstr "Rapport de construction des SLA" - -#~ msgid "Your IP" -#~ msgstr "Votre adresse IP" - -#~ msgid "minute" -#~ msgstr "minute" - -#~ msgid "Transfer Mode" -#~ msgstr "Mode de transfert" - -#~ msgid "Transfer mode" -#~ msgstr "Mode de transfert" - -#~ msgid "Extra options" -#~ msgstr "Options supplémentaires" - -#~ msgid "Target directory" -#~ msgstr "Répertoire cible" - -#~ msgid "User option" -#~ msgstr "Options utilisateur" - -#~ msgid "Password option" -#~ msgstr "Options mot de passe" - -#~ msgid "Max.Timeout" -#~ msgstr "Max. délai d'attente" - -#~ msgid "IP address option" -#~ msgstr "Adresse IP options" - -#~ msgid "Export targets" -#~ msgstr "Exporter la cible" - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA période (secondes)" - -#~ msgid "Automatic update check" -#~ msgstr "Vérifier les mises à jour automatiquement" - -#~ msgid "Last hour" -#~ msgstr "Heure précédente" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "%s derniers jours" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d heure" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d heures" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d semaines" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d semaine" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d jours" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d jour" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mois" - -#~ msgid "Error creating export target" -#~ msgstr "Erreur en creant export target" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Export target eliminé avec succès" - -#~ msgid "Successfully created export target" -#~ msgstr "Export target crée avec succès" - -#~ msgid "Error deleting export target" -#~ msgstr "Erreur en eliminant export target" - -#~ msgid "There are no export targets configured" -#~ msgstr "Il n'y a pas de export targets configurès" - -#~ msgid "Preffix" -#~ msgstr "Préfixe" - -#~ msgid "Monitors critical" -#~ msgstr "Moniteurs en état critique" - -#~ msgid "Monitors normal" -#~ msgstr "Moniteurs en état normal" - -#~ msgid "Monitors warning" -#~ msgstr "Moniteurs en état d'alerte" - -#~ msgid "Monitors unknown" -#~ msgstr "Moniteurs inconnus" - -#~ msgid "Image size (px)" -#~ msgstr "Format d'une image (px)" - -#~ msgid "Report name is empty" -#~ msgstr "Le nom du rapport est vide" - -#~ msgid "No items defined" -#~ msgstr "Aucun élément défini" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Taper au minimum deux charactères pour rechercher" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "La liste de IPs est séparé avec retour de chariot" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Le répertoire %s a été crée" - -#~ msgid "Visual map wizard" -#~ msgstr "Assistant de carte visuelle" - -#~ msgid "No layout with this id found" -#~ msgstr "Aucun Layout avec cet id a été trouvé" - -#~ msgid "Image range (px)" -#~ msgstr "Résolution de l'image (px)" - -#~ msgid "Visual configuration" -#~ msgstr "Configuration visuelle" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compacter CSS et JS dans tête de section" - -#~ msgid "Flash charts" -#~ msgstr "Graphiques flash" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Si vous plaît, verifiez que le repertoire actuel a droits d'ecriture pour le " -#~ "serveur HTTP" - -#~ msgid "Upload file" -#~ msgstr "Charger un fichier" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Cet utilisateur est autorisé pour diriger tous. Cet est l'utilisateur admin " -#~ "et écrase tous les autorisations qui ont ete dones dans profils/groupes" - -#~ msgid "Last name" -#~ msgstr "Nom :" - -#~ msgid "First name" -#~ msgstr "Prénom :" - -#~ msgid "Database sanity tool" -#~ msgstr "Outil de la santé de la base de donnés" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Verification de la table tagente_estado" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "" -#~ "Cliquer ici pour obtenir l'information de la base de données comme graphique" - -#~ msgid "Press here to get database information as text" -#~ msgstr "" -#~ "Cliquer ici pour obtenir l'information de la base de données comme texte" - -#~ msgid "Sanitize my database now" -#~ msgstr "Expurger ma base de donnés tout de suite" - -#~ msgid "Deleting non-init data" -#~ msgstr "Effacer donnés non-init" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Lancement de la tâche de purge pour l'agent" - -#~ msgid "Deleting records for module" -#~ msgstr "En supprimant les entrees pour le module" - -#~ msgid "Data older than" -#~ msgstr "Donnés plus vielles que" - -#~ msgid "Field 1" -#~ msgstr "Champ" - -#~ msgid "Field 2" -#~ msgstr "Champ 2" - -#~ msgid "Field 3" -#~ msgstr "Champ 3" - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "L'alert peut etre lancé quand le valeur ne va pas ensamble avec " - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "L'alert peut etre lancé quand le valeur va ensamble avec " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "L'alert será declenchée quand le valeur ne soit pas " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "L'alert será declenchée quand le valeur soit entre n et " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "L'alert será lancée quand le valeur soit " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "L'alert será declenchée quand le valeur ne soit pas entre n et " - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "L'alert será declenchée quand le valeur soit au- dessus de " - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "L'alert será declenchée quand le valeur soit en dessous de " - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "Correlated alerts" -#~ msgstr "Alertes corrélés" - -#~ msgid "Operator" -#~ msgstr "Opérateur" - -#~ msgid "Assigned to" -#~ msgstr "Assignée à" - -#~ msgid "Assigned actions" -#~ msgstr "Actions assignèes" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configurer l'alert de correlation" - -#~ msgid "No agent was given" -#~ msgstr "Pas d'agent a été donné" - -#~ msgid "Add condition" -#~ msgstr "Ajouter condition" - -#~ msgid "No name was given" -#~ msgstr "Pas de nom a été donné" - -#~ msgid "No conditions were given" -#~ msgstr "Pas de conditions ont été données" - -#~ msgid "Could not delete alerts" -#~ msgstr "Il ne peut pas supprimir les alertes" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Il y avait un erreur en supprimant les alertes. L'operation a été annulée" - -#~ msgid "Error adding module" -#~ msgstr "Erreur en ajoutant le module" - -#~ msgid "Configuration management" -#~ msgstr "Gestion de configuration" - -#~ msgid "Massive agent deletion" -#~ msgstr "Effacement massif de l'agent" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "Il y avait un erreur en supprimant l'agent. L'operation a été supprimé" - -#~ msgid "Could not delete agent" -#~ msgstr "C'est ne pas possible de effacer l'agent" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Moniteur du agent keepalive" - -#~ msgid "Edit modules" -#~ msgstr "Editer les modules" - -#~ msgid "Delete modules" -#~ msgstr "Supprimer les modules" - -#~ msgid "Delete alerts" -#~ msgstr "Supprimer les alertes" - -#~ msgid " seconds." -#~ msgstr " secondes." - -#~ msgid "Module assignment" -#~ msgstr "Distribution de modules" - -#~ msgid "Could not delete modules" -#~ msgstr "Peut etre qu'il ne supprime pas les modules" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Temps d'arrêt planifié présentes dans le sistème" - -#~ msgid "Replicate configuration" -#~ msgstr "Configuration repliquee" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Faire une copie du fichier de configuration pour" - -#~ msgid "Remote configuration management" -#~ msgstr "Gestion de la configuration a distance" - -#~ msgid "To agent(s):" -#~ msgstr "Pour les agent(s)" - -#~ msgid "Source group" -#~ msgstr "Groupe d'origin" - -#~ msgid "Network component" -#~ msgstr "Composant de modèle" - -#~ msgid "Plugin component" -#~ msgstr "Component plugin" - -#~ msgid "WMI component management" -#~ msgstr "Gestion du composant WMI" - -#~ msgid "Custom Value" -#~ msgstr "Valeur personnalisée" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Read agent information" -#~ msgstr "Lire l'information du agent" - -#~ msgid "Create incidents" -#~ msgstr "Créer les incidents" - -#~ msgid "Read incidents" -#~ msgstr "Lire les incidents" - -#~ msgid "MD5 check" -#~ msgstr "Vérification MD5" - -#~ msgid "Sumatory" -#~ msgstr "Somme" - -#~ msgid "Agents detailed view" -#~ msgstr "Vue détaillée des agents" - -#~ msgid "Agents detailed event" -#~ msgstr "Événement détaillé des agents" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "Go to alert overview" -#~ msgstr "Aller a la vue d'ensamble des alertes" - -#~ msgid "Pandora system management" -#~ msgstr "Système de gestion de Pandora" - -#~ msgid "Error updating export target" -#~ msgstr "Erreur d'actualization avec export target" - -#~ msgid "Successfully updated export target" -#~ msgstr "Mis à jour d'export target bien fini" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Export target supprimé avec succès" - -#~ msgid "Manage user rights" -#~ msgstr "Gérer les droits des utilisateurs" - -#~ msgid "Event not validated" -#~ msgstr "Événements non validés" - -#~ msgid "Unmanaged error" -#~ msgstr "Erreur non procesé" - -#~ msgid "Agent detailed event" -#~ msgstr "Évenement d'agent detaillé" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "MinMax.Al" -#~ msgstr "MInMax.Al" - -#~ msgid "Wrong module type" -#~ msgstr "Type de module faux" - -#~ msgid "The colours meaning:" -#~ msgstr "Les couleurs signifient" - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Cellule en vert quand le group de module et d'agent ont tous les modules en " -#~ "état OK" - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Cellule en jaune quand le module et l'agent ont au moins une en état " -#~ "d'alerte et les autres en état vert." - -#~ msgid "Modules groups" -#~ msgstr "Groupes de modules" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "" -#~ "Cellule en gris quand le group de modules et d'agents n'ont pas auncun module" - -#~ msgid "Code / binary directory" -#~ msgstr "répertoire de code/binaire" - -#~ msgid "System Events" -#~ msgstr "Événements du system" - -#~ msgid "-Select group-" -#~ msgstr "-Selectionner groupe-" - -#~ msgid "-Select user-" -#~ msgstr "-Sélectionner l'utilisateur-" - -#~ msgid "Pandora agents" -#~ msgstr "Agents de Pandora" - -#~ msgid "Events generated -by module-" -#~ msgstr "Événements générés -par modules-" - -#~ msgid "Invalid method supplied" -#~ msgstr "Méthode non valid donné" - -#~ msgid "Flag" -#~ msgstr "Drapeau" - -#~ msgid "None agent in this category" -#~ msgstr "Aucun agent en cette categorie" - -#~ msgid "Local modules rate" -#~ msgstr "Taux des modules locaux" - -#~ msgid "Monitors not init" -#~ msgstr "Moniteurs non init" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Il n'a pas de serveurs configurés dans la base de données" - -#~ msgid "Module Down" -#~ msgstr "Module arreté" - -#~ msgid "Module Up" -#~ msgstr "Module levé" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Il n'y a pas de modules pour évaluer le S.L.A." - -#~ msgid "User-defined SLA items" -#~ msgstr "Items SLA definis pour le utilisateur" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "SLA automatique pour les moniteurs" - -#~ msgid "Single alerts" -#~ msgstr "Alertes simples" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Cet agent n'a pas aucun moniteur actif" - -#~ msgid "Compound alerts" -#~ msgstr "Alertes composées" - -#~ msgid "No simple alerts found" -#~ msgstr "Pas d'alertes simples trouvées" - -#~ msgid "secs." -#~ msgstr "Secs." - -#~ msgid "Search value" -#~ msgstr "Chercher le valeur" - -#~ msgid "No layouts found" -#~ msgstr "Pas de layouts trouvés" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Modules retardés/ Max. retard (sec)" - -#~ msgid "Graphs management" -#~ msgstr "Gestion des graphiques" - -#~ msgid "Deleting" -#~ msgstr "En supprimant" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Cèst ne pas possible créer le répertoire actuel avec le serveur HTTP" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "L'util de santé de Pandora FMS est utilisé pour eliminer données de " -#~ "structure de une base de données mauvaise, pour créer modules avec status " -#~ "missing ou modules qui ne pu être innitiés ( et qui ne transmis pas données " -#~ "valides) mais donne chacun leur propes intervalles pour obtenir data. Cette " -#~ "sorte de modules mauvaises peut dégrader le fonctionnement de Pandora FMS. " -#~ "Cet util de santé est aussi implementé dans le pandora_db.plque vous " -#~ "devez initier chaque jour ou semaine. Cette santé de la console NON compacte " -#~ "pas votre base de données, seulement supprime les données mal structurées" - -#~ msgid "Duplicate config" -#~ msgstr "Configuration dupliquée" - -#~ msgid "Correlation" -#~ msgstr "Corrélation" - -#~ msgid "Timestamp to" -#~ msgstr "timestamp à" - -#~ msgid "Timestamp from" -#~ msgstr "timestamp de" - -#~ msgid "Manage SNMP console" -#~ msgstr "Contròler la console SNMP" - -#~ msgid "Only pending" -#~ msgstr "Seulement pendants" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Ce serveur n'a aucune tâche recon assignée" - -#~ msgid "Create incident from event" -#~ msgstr "Créer un incident à partir de l'événement" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Modules actifs sur ce serveur / Total des modules de ce type" - -#~ msgid "Read message" -#~ msgstr "Lire le message" - -#~ msgid "Uninitialized modules" -#~ msgstr "Modules non initialisés" - -#~ msgid "Binary input path" -#~ msgstr "Chemin d'entrée binaire" - -#~ msgid "Select an element to delete:" -#~ msgstr "Sélectionnez un élément à supprimer :" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Veuillez choisir une image ou indiquer un nom pour l'élément." - -#~ msgid "Deleting file" -#~ msgstr "Suppression du fichier" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Aucun agent sélectionné ; veuillez choisir un agent." - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Le nouveau client Gestionnaire de mise à " -#~ "jour (en anglais) est livré avec Pandora FMS 3.0. Il aide les " -#~ "administrateurs à mettre à jour leur installation de Pandora FMS " -#~ "automatiquement en acquérant les nouveaux modules, greffons et " -#~ "fonctionnalités (même des outils complets de migration pour les versions " -#~ "futures) de façon automatisée." - -#~ msgid "Alerts disabled" -#~ msgstr "Alertes désactivées" - -#~ msgid "Group detailed event" -#~ msgstr "Événement du groupe specifié" - -#~ msgid "Remote modules rate" -#~ msgstr "Rythme des modules á distance" - -#~ msgid "From the last" -#~ msgstr "Des derniers" - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Cette extension facilite l'enregistrement de greffons serveur. Vous pouvez " -#~ "téléverser un greffon serveur au format compressé Pandora FMS 3.x (.pspz) " -#~ "ici. Veuillez vous référer à la documentation concernant l'obtention et " -#~ "l'utilisation de greffons serveur Pandora FMS.

Vous pouvez obtenir de " -#~ "nouveaux greffons à partir de notre B" -#~ "ibliothèque de ressources publiques (en anglais)." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Le Gestionnaire de mise à jour est l'une des fonctionnalités les plus " -#~ "avancées de Pandora FMS édition Entreprise. Pour plus d'informations, " -#~ "visitez http://pandorafms.com." - -#~ msgid "Decrease Weight" -#~ msgstr "Diminuer le Poids" - -#~ msgid "Increase Weight" -#~ msgstr "Aumenter le Poids" - -#~ msgid "Module detailed event" -#~ msgstr "Événement détaillé du module" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Alerte: quand vous changez la position de l'Agent, l'agent mets en " -#~ "fonctionnement l'option ' Ignorer les nouveaux données GIS'" - -#~ msgid "ALERTS FIRED" -#~ msgstr "Alertes disparés" - -#~ msgid "Modules critical" -#~ msgstr "Modules critiques" - -#~ msgid "User defined graph" -#~ msgstr "Utiliser graphiques definis" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "En raison de restrictions de securité, il y a des tokens o mots que vous ne " -#~ "pouvez utiliser pas" - -#~ msgid "or" -#~ msgstr "ou" - -#~ msgid "Illegal query" -#~ msgstr "Requête illégale" - -#~ msgid "Map element trash" -#~ msgstr "Carte trash élément." - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "tâche supprimée correctement." - -#~ msgid "Manage User Rights" -#~ msgstr "Gérer les droits d'utilisateur" - -#~ msgid "Edit Alerts" -#~ msgstr "modiffier les alertes" - -#~ msgid "Pandora System Management" -#~ msgstr "Gestion du système Pandora" - -#~ msgid "Alerts Management" -#~ msgstr "Gestion d'alerte" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "créer un nouveau module pour ce serveur" - -#~ msgid "Monitor up" -#~ msgstr "monter le moniteur" - -#~ msgid "Monitor down" -#~ msgstr "descendre le moniteur" - -#~ msgid "Search text" -#~ msgstr "cherche texte" - -#~ msgid "Config" -#~ msgstr "Config" - -#~ msgid "Create networkmap" -#~ msgstr "Creer carte reseau" - -#~ msgid "Modules over or equal to" -#~ msgstr "Modules par dessus or égals a" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Modules dans un status critique ou d'alerte" - -#~ msgid "Modules under those conditions" -#~ msgstr "Modules dans ces conditions" - -#~ msgid "There are no" -#~ msgstr "Il n'ya pas de" - -#~ msgid "Inside limits" -#~ msgstr "Limites intérieurs" - -#~ msgid "Last 8 hours" -#~ msgstr "Dernières 8 heures" - -#~ msgid "On the edge" -#~ msgstr "Dans la limite" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Cellule en rouge quand le groupe de module et d'agent ont au moins un module " -#~ "en état critique et les autres dans n'importe quels états." - -#~ msgid "Event not validate" -#~ msgstr "Événement non validé" - -#~ msgid "Event validate" -#~ msgstr "Événement validé" - -#~ msgid "Modules normal" -#~ msgstr "Modules normaux" - -#~ msgid "matches of the alert" -#~ msgstr "Les alertes coïncides" - -#~ msgid "Modules warning" -#~ msgstr "Alerte modules" - -#~ msgid "Configuration report for group " -#~ msgstr "Rapport de configuration pour le groupe " - -#~ msgid "Configuration report for agent " -#~ msgstr "Rapport de configuration pour l'agent " - -#~ msgid "Tree View" -#~ msgstr "Vue en arbre" - -#~ msgid "Form filter" -#~ msgstr "Filtre de forme" - -#~ msgid "SO" -#~ msgstr "Système d'Exploitation" - -#~ msgid "License Info" -#~ msgstr "Info de la licence" - -#~ msgid "License info" -#~ msgstr "Info de la licence" - -#~ msgid "Module macros" -#~ msgstr "Macros du module" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Recherche par ces champs description, OID, valeur en douane, agent SNMP " -#~ "(IP), la valeur unique, chaque OID personnalisés / Données." - -#~ msgid "Policies operations" -#~ msgstr "opérations Politiques" - -#~ msgid "SNMP operations" -#~ msgstr "Opérations SNMP" - -#~ msgid "Collections" -#~ msgstr "Collections:" - -#~ msgid "Inventory modules" -#~ msgstr "modules d'inventaire" - -#~ msgid "Local components" -#~ msgstr "Des composantes locales" - -#~ msgid "Manage policies" -#~ msgstr "Gérer les politiques" - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "Event alerts" -#~ msgstr "Les alertes d'événements" - -#~ msgid "Log Collector" -#~ msgstr "Log Collector" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "Ne peut pas être créée objectif d'exportation: l'utilisateur et mot de passe " -#~ "doit être rempli avec le mode FTP" - -#~ msgid "Create Service" -#~ msgstr "Créer un service" - -#~ msgid "Service created successfully" -#~ msgstr "Service créé avec succès" - -#~ msgid "Error creating service" -#~ msgstr "Erreur de création de service" - -#~ msgid "Service updated successfully" -#~ msgstr "Service de mise à jour avec succès" - -#~ msgid "Error updating service" -#~ msgstr "Erreur mise à jour de service" - -#~ msgid "Not found" -#~ msgstr "Introuvable" - -#~ msgid "New Service" -#~ msgstr "Nouveau service" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Ces valeurs sont par défaut parce que le service est en mode calculer " -#~ "automobile." - -#~ msgid "Config Service" -#~ msgstr "Service de configuration" - -#~ msgid "Config Elements" -#~ msgstr "Les éléments de configuration" - -#~ msgid "View Service" -#~ msgstr "Voir service" - -#~ msgid "Service map" -#~ msgstr "Map Service" - -#~ msgid "Agent to store data" -#~ msgstr "Agent pour stocker des données" - -#~ msgid "S.L.A. interval" -#~ msgstr "intervalle de SLA" - -#~ msgid "S.L.A. limit" -#~ msgstr "limite de SLA" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "S'il vous plaît définir la limite entre 0 et 100." - -#~ msgid "Warning Service alert" -#~ msgstr "Alerte Service d'alerte" - -#~ msgid "Critical Service alert" -#~ msgstr "Alerte Critical Service" - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA alerte de service critique" - -#~ msgid "Edit service elements" -#~ msgstr "Modifier les éléments de service" - -#~ msgid "Error empty module" -#~ msgstr "Erreur module de vide" - -#~ msgid "Error empty agent" -#~ msgstr "Erreur agent de vide" - -#~ msgid "Error empty service" -#~ msgstr "Service vide d'erreur" - -#~ msgid "Service element created successfully" -#~ msgstr "élément de service créé avec succès" - -#~ msgid "Error creating service element" -#~ msgstr "Erreur de création d'élément de service" - -#~ msgid "Service element updated successfully" -#~ msgstr "élément de service mis à jour avec succès" - -#~ msgid "Error updating service element" -#~ msgstr "Erreur actualisation élément de service" - -#~ msgid "Service element deleted successfully" -#~ msgstr "élément de service supprimé avec succès" - -#~ msgid "Error deleting service element" -#~ msgstr "Erreur de suppression élément de service" - -#~ msgid "Edit element service" -#~ msgstr "Modifier le service de l'élément" - -#~ msgid "Create element service" -#~ msgstr "Créer un service d'élément" - -#~ msgid "First select an agent" -#~ msgstr "Sélectionnez d'abord un agent" - -#~ msgid "Critical weight" -#~ msgstr "Masse critique" - -#~ msgid "Warning weight" -#~ msgstr "poids d'avertissement" - -#~ msgid "Unknown weight" -#~ msgstr "Inconnu poids" - -#~ msgid "Ok weight" -#~ msgstr "Ok poids" - -#~ msgid "Show extended info" -#~ msgstr "Afficher les infos prolongée" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Peut-être supprimer les données étendues ou les données d'audit est " -#~ "antérieure à la table tsession_extended." - -#~ msgid "Security check is ok." -#~ msgstr "Contrôle de sécurité est ok." - -#~ msgid "Security check is fail." -#~ msgstr "Contrôle de sécurité n'est infaillible." - -#~ msgid "Extended info:" -#~ msgstr "Information supplémentaire:" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "" -#~ "Les variations de ce champ sont reliées avec les données de configuration." - -#~ msgid "Using local component" -#~ msgstr "Utiliser le composant locale" - -#~ msgid "Show configuration data" -#~ msgstr "Afficher les données de configuration" - -#~ msgid "Hide configuration data" -#~ msgstr "Cacher les données de configuration" - -#~ msgid "Data configuration" -#~ msgstr "Configuration des données" - -#~ msgid "Load basic" -#~ msgstr "Charge de base" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Chargez une structure de base de données de configuration" - -#~ msgid "Check" -#~ msgstr "Vérifié" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Vérifiez la structure correcte de la configuration des données" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "La première ligne doit être \"module_begin \"" - -#~ msgid "Data configuration is empty" -#~ msgstr "Données de configuration est vide" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Dernière ligne doit être \"module_end \"" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Nom est manquée. S'il vous plaît ajouter une ligne avec \"module_name " -#~ "yourmodulename \" de la configuration des données" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Type est manquée. S'il vous plaît ajouter une ligne avec \"module_type " -#~ "yourmoduletype \" de la configuration des données" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Type est erroné. S'il vous plaît choisir un type correct" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Il ya une ligne avec un jeton inconnu »token_fail»." - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "" -#~ "Erreur dans la syntaxe, merci de vérifier la configuration de données." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "configuration des données sont construites correctement" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plug-in supprimé avec succès" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Plug-in ne peut être supprimé" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plug-in ajouté avec succès" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Plug-in ne peut pas être ajoutée" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plug-in désactivé avec succès" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Plug-in ne peut pas être désactivé" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plug-in activé avec succès" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Plug-in ne peut pas être activé" - -#~ msgid "New plug-in" -#~ msgstr "Nouveau plug-in" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Module d'inventaire ajouté avec succès" - -#~ msgid "Error adding inventory module" -#~ msgstr "Erreur d'ajout de module d'inventaire" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Module d'inventaire avec succès supprimé" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Erreur module d'inventaire suppression" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Module d'inventaire succès forcé" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Erreur module d'inventaire forçant" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Module d'inventaire mis à jour avec succès" - -#~ msgid "Error updating inventory module" -#~ msgstr "Erreur mise à jour de module d'inventaire" - -#~ msgid "Inventory module error" -#~ msgstr "erreur du module d'inventaire" - -#~ msgid "Target" -#~ msgstr "Cible" - -#~ msgid "7 days" -#~ msgstr "7 jours" - -#~ msgid "Update all" -#~ msgstr "Mise à jour tous" - -#~ msgid "Manager configuration > New" -#~ msgstr "Configuration Manager> Nouveau" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Gestionnaire de configuration> Modifier " - -#~ msgid "Unable to create the collection" -#~ msgstr "Impossible de créer la collection" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Une autre collection du même nom court" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Les caractères non valides dans le nom court" - -#~ msgid "Empty name" -#~ msgstr "Nom vide" - -#~ msgid "Unable to create the collection." -#~ msgstr "Impossible de créer la collection." - -#~ msgid "Correct create collection" -#~ msgstr "Corrigez créer collection" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Impossible de modifier la collection, nom vide." - -#~ msgid "Unable to edit the collection." -#~ msgstr "Impossible de modifier la collection." - -#~ msgid "Recreate file" -#~ msgstr "Recréez le fichier" - -#~ msgid "Short name:" -#~ msgstr "Nom court:" - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "Nom court de la collection est le nom du répertoire dans l'attachement dir " -#~ "et la collection de paquetages." - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "Nom court doit contenir que des caractères alphanumériques, - ou _." - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Vide pour le nom court fc_X par défaut où X est l'identifiant de collection." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Arithmétique synthétique" - -#~ msgid "Synthetic average" -#~ msgstr "Moyenne synthétique" - -#~ msgid "Group filter" -#~ msgstr "Filtre groupe" - -#~ msgid "Fixed value" -#~ msgstr "Valeur fixe" - -#~ msgid "Add module to operation as add" -#~ msgstr "Ajouter un module pour ajouter opération comme" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Ajouter un module pour les opérations en déduire" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Ajouter un module pour les opérations que multiplicate " - -#~ msgid "Add module to operations as divide" -#~ msgstr "Ajouter un module pour les opérations qu'une division" - -#~ msgid "Remove selected modules" -#~ msgstr "Retirez les modules sélectionnés" - -#~ msgid "Add module to average operation" -#~ msgstr "Ajouter un module de fonctionnement moyenne" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Retirez les modules sélectionnés à partir de la pile des opérations" - -#~ msgid "Move down selected modules" -#~ msgstr "Descendre modules sélectionnés" - -#~ msgid "Move up selected modules" -#~ msgstr "Monter des modules sélectionnés" - -#~ msgid "Select Service" -#~ msgstr "Sélectionnez un service" - -#~ msgid "Netflow filter" -#~ msgstr "Filtre Netflow" - -#~ msgid "Select filter" -#~ msgstr "Sélectionner Filtre" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Erreur: Le fichier conf de l'agent n'est pas readble." - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Erreur: Le fichier conf de l'agent n'est pas accessible en écriture." - -#~ msgid "Add module" -#~ msgstr "Ajouter le module" - -#~ msgid "No module was found" -#~ msgstr "Aucun module a été trouvé" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Supprimer les fichiers de l'agent de conf à distance dans Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "" -#~ "Cet agent n'ont pas une configuration à distance, s'il vous plaît définir." - -#~ msgid "Succesful add the collection" -#~ msgstr "Succesful ajouter la collection" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Unsuccesful ajouter la collection" - -#~ msgid "Short Name" -#~ msgstr "Nom court" - -#~ msgid "Show files" -#~ msgstr "Afficher les fichiers" - -#~ msgid "Outdate" -#~ msgstr "Outdate" - -#~ msgid "Dir" -#~ msgstr "dir => {" - -#~ msgid "Create a new web Server module" -#~ msgstr "Créer un nouveau module de serveur Web" - -#~ msgid "Files in " -#~ msgstr "Les fichiers dans " - -#~ msgid "Back to file explorer" -#~ msgstr "Back to File Explorer" - -#~ msgid "Compatibility mode" -#~ msgstr "Mode de compatibilité" - -#~ msgid "Correct update file." -#~ msgstr "Corrigez le fichier de mise à jour." - -#~ msgid "Incorrect update file." -#~ msgstr "Fichier de mise à jour incorrecte." - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "S'il vous plaît, d'abord enregistrer une nouvelle collection avant de " -#~ "télécharger des fichiers." - -#~ msgid "No source agent selected" -#~ msgstr "Aucun agent de la source sélectionnée" - -#~ msgid "Error copying md5 file " -#~ msgstr "Erreur de copie du fichier md5 " - -#~ msgid " md5 file" -#~ msgstr " md5" - -#~ msgid "Copied " -#~ msgstr "Copié " - -#~ msgid "Error copying " -#~ msgstr "copie d'erreur " - -#~ msgid " config file" -#~ msgstr " Config_File" - -#~ msgid "Web server module" -#~ msgstr "le module de serveur Web" - -#~ msgid "Web checks" -#~ msgstr "chèques Web" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Chargez une structure de base sur les contrôles Web" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Vérifiez la structure correcte de la WebCheck" - -#~ msgid "Requests" -#~ msgstr "Demandes" - -#~ msgid "Agent browser id" -#~ msgstr "navigateur Agent identifiant" - -#~ msgid "Proxy URL" -#~ msgstr "URL Proxy" - -#~ msgid "HTTP auth (login)" -#~ msgstr "Authentification HTTP (login)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "Authentification HTTP (pass)" - -#~ msgid "HTTP auth (server)" -#~ msgstr "Authentification HTTP (serveur)" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "Authentification HTTP (realm)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "La première ligne doit être \"task_begin \"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "configuration des Webchecks est vide" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Dernière ligne doit être \"task_end \"" - -#~ msgid "Web checks are built correctly" -#~ msgstr "contrôles Web sont construites correctement" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Fail créer le répertoire: %s" - -#~ msgid "No files in collection" -#~ msgstr "Aucun de collection" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Fichier de collecte est supérieure à la limite (" - -#~ msgid "Success: recreate file" -#~ msgstr "fichier de recréer: Success" - -#~ msgid "Error: recreate file " -#~ msgstr "fichier de recréer: Erreur " - -#~ msgid "Collections Management" -#~ msgstr "Gestion des collections" - -#~ msgid "Manager collection" -#~ msgstr "collection Manager" - -#~ msgid "Successful create collection package." -#~ msgstr "Succès Créer un package de collecte." - -#~ msgid "Can not create collection package." -#~ msgstr "Impossible de créer un package de collecte." - -#~ msgid "Are you sure to delete?" -#~ msgstr "Êtes-vous sûr de vouloir supprimer?" - -#~ msgid "Delete collection" -#~ msgstr "Supprimer collection" - -#~ msgid "Re-Apply changes" -#~ msgstr "Ré-Appliquer les modifications" - -#~ msgid "Apply changes" -#~ msgstr "Appliquer les modifications" - -#~ msgid "Edit template" -#~ msgstr "Modifier le modèle" - -#~ msgid "Create template" -#~ msgstr "Créer un modèle" - -#~ msgid "List templates" -#~ msgstr "Les modèles de listes" - -#~ msgid "Graph template editor" -#~ msgstr "éditeur de modèle de graphique" - -#~ msgid "Exact match" -#~ msgstr "Exactement Identique" - -#~ msgid "Elements to apply" -#~ msgstr "Eléments à appliquer" - -#~ msgid "SLA min value" -#~ msgstr "valeur minimale de SLA" - -#~ msgid "SLA min Value" -#~ msgstr "SLA min Valeur" - -#~ msgid "SLA max value" -#~ msgstr "SLA valeur max" - -#~ msgid "SLA max Value" -#~ msgstr "SLA Max Value" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA Limit%" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA Valeur Limite" - -#~ msgid "Sum" -#~ msgstr "Total" - -#~ msgid ">=" -#~ msgstr "> =" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid "Graph template management" -#~ msgstr "gestion de modèle de graphique" - -#~ msgid "There are no defined graph templates" -#~ msgstr "Il n'y a pas de modèles de graphes définis" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Nettoyage avec succès" - -#~ msgid "Cleanup error" -#~ msgstr "Erreur de nettoyage" - -#~ msgid "Wizard template" -#~ msgstr "Modèle Wizard" - -#~ msgid "Clean up template" -#~ msgstr "Nettoyer modèle" - -#~ msgid "Filter agent" -#~ msgstr "Agent de filtrage" - -#~ msgid "Agents available" -#~ msgstr "Agents disponibles" - -#~ msgid "Select all" -#~ msgstr "Tout Sélectionner" - -#~ msgid "Agents to apply" -#~ msgstr "Agents d'appliquer" - -#~ msgid "Add agents to template" -#~ msgstr "Ajouter agents de modèle" - -#~ msgid "Undo agents to template" -#~ msgstr "Annuler agents de modèle" - -#~ msgid "Apply template" -#~ msgstr "Appliquer le modèle" - -#~ msgid "Please set template distinct than " -#~ msgstr "S'il vous plaît configurer modèle distinct de " - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Ce sera supprimer tous les rapports créés dans des applications de modèles " -#~ "précédents. Voulez-vous continuer?" - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Coutume Mysql modèle constructeur" - -#~ msgid "Create custom SQL" -#~ msgstr "Créer coutume SQL" - -#~ msgid ": Create new custom" -#~ msgstr ": Créer un nouveau custom" - -#~ msgid ": Edit: " -#~ msgstr "Modifier... " - -#~ msgid "Successfully operation" -#~ msgstr "Réussir opération" - -#~ msgid "Could not be operation" -#~ msgstr "Ne pouvait pas être fonctionnement" - -#~ msgid "Sucessfully applied" -#~ msgstr "Réussir appliqué" - -#~ msgid "reports" -#~ msgstr "Derniers rapports" - -#~ msgid "items" -#~ msgstr "articles" - -#~ msgid "Could not be applied" -#~ msgstr "Ne pouvait pas être appliqué" - -#~ msgid "Create report per agent" -#~ msgstr "Créer un rapport par agent" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Casse expression régulière pour le nom de l'agent. Par exemple:. Réseau * " -#~ "correspondra avec les noms des agents suivants: network_agent1, les " -#~ "contrôles de réseau" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Case expression régulière insensible ou une chaîne pour le nom du module. " -#~ "Par exemple: si vous utilisez ce champ avec \"correspondance exacte du " -#~ "module \" activée, ce champ doit être remplie avec la chaîne littéralement " -#~ "le nom du module, sinon vous pouvez utiliser une expression régulière. " -#~ "Exemple:.. * Utilisation * correspondra: cpu_usage, l'utilisation VRAM dans " -#~ "matchine 1." - -#~ msgid "Module exact match" -#~ msgstr "Correspondance exacte Module" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "" -#~ "Vérifiez si vous voulez faire correspondre le nom du module littéralement" - -#~ msgid "Query SQL" -#~ msgstr "SQL Query" - -#~ msgid "SQL preview" -#~ msgstr "Aperçu SQL" - -#~ msgid "Modules to match" -#~ msgstr "Modules de match" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Sélectionnez les modules correspondre lors de créer un rapport pour les " -#~ "agents" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Modules de match (texte libre)" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Texte libre de filtrer les modules d'agents quand appliquer ce modèle." - -#~ msgid "Create a graph for each agent" -#~ msgstr "Créer un graphique pour chaque agent" - -#~ msgid "" -#~ "If it is checked, the regexp or name of modules match only each to each to " -#~ "agent, instead create a big graph with all modules from all agents." -#~ msgstr "" -#~ "Si elle est cochée, l'expression rationnelle ou le nom de modules " -#~ "correspondent uniquement chacun à chaque agent d', au lieu de créer un gros " -#~ "graphe avec tous les modules de tous les agents." - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "S'il vous plaît sauvez le modèle de SLA pour commencer à ajouter des " -#~ "éléments dans cette liste." - -#~ msgid "Not literally" -#~ msgstr "Pas littéralement" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Casse expression régulière pour le nom de l'agent. Par exemple: * Réseau " -#~ "correspondra avec les noms des agents suivants: network_agent1, les " -#~ "contrôles de réseau" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "S'il vous plaît sauvez le modèle pour commencer à ajouter des éléments dans " -#~ "la liste." - -#~ msgid "Template updated successfully" -#~ msgstr "Modèle mis à jour avec succès" - -#~ msgid "Error updating template" -#~ msgstr "Erreur mise à jour de modèle" - -#~ msgid "Policies Management" -#~ msgstr "Gestion des Politiques" - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Tous les agents de stratégie ajoutés à supprimer la file d'attente" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "" -#~ "agents de la politique ne peuvent pas être ajoutés à la file d'attente de " -#~ "suppression" - -#~ msgid "a" -#~ msgstr "A." - -#~ msgid "Policy updated" -#~ msgstr "Politique de mise à jour" - -#~ msgid "Pending update policy only database" -#~ msgstr "En attendant jour politique seule base de données" - -#~ msgid "Pending update policy" -#~ msgstr "En attendant politique de mise à jour" - -#~ msgid "Linking" -#~ msgstr "Lier" - -#~ msgid "External alerts" -#~ msgstr "Alertes externes" - -#~ msgid "Queue" -#~ msgstr "Queue" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "" -#~ "Une politique avec des agents ne peut pas être supprimé. Purger le premier" - -#~ msgid "Deleting all policy agents" -#~ msgstr "Suppression de tous les agents de la politique" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Tous les agents de la politique seront supprimés" - -#~ msgid "Delete all agents" -#~ msgstr "Supprimer tous les agents" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Si vous modifiez cette description, vous devez changer dans le texte de " -#~ "configuration de données." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "" -#~ "N'a pas pu être Module (s) ajouté. Vous devez sélectionner une politique" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Module succès ajoutée (s) ( %s / %s ) à la politique %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "Le module n'a pas pu être ajouté (s) ( %s / %s ) à la politique %s" - -#~ msgid "Successfully added module." -#~ msgstr "Module ajoutés avec succès." - -#~ msgid "Could not be added module." -#~ msgstr "Ne pouvait pas être le module supplémentaire." - -#~ 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, prendre de zone " -#~ "de liste déroulante de formulaire." - -#~ 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, prendre du champ " -#~ "de texte de la forme." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Vous avez joint à supprimer des modules en cours. Seront supprimés dans " -#~ "l'application de la politique suivante." - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Suppression succès revenue" - -#~ msgid "Could not be reverted" -#~ msgstr "Ne pouvait pas être revenue" - -#~ msgid "Local component" -#~ msgstr "Composante locale" - -#~ msgid "Undo deletion" -#~ msgstr "Annuler la suppression" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Copiez modules sélectionnés à la politique: " - -#~ msgid "Variable" -#~ msgstr "|Variable|" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Etes-vous sûr de copier modules dans la politique?" - -#~ msgid "Please select any module to copy" -#~ msgstr "S'il vous plaît sélectionner un module à copier" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Vous avez joint à supprimer les agents en attente. Seront supprimés dans " -#~ "l'application de la politique suivante." - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Vous avez joint pour supprimer la file d'attente" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Pas pu être ajouté pour supprimer la file d'attente" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Réussir supprimé de supprimer agents en attente" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "Pas pu être supprimé à partir de supprimer agents en attente" - -#~ msgid "Agents in Policy" -#~ msgstr "Agents de la politique" - -#~ msgid "Add agents to policy" -#~ msgstr "Ajouter agents à la politique" - -#~ msgid "Delete agents from policy" -#~ msgstr "Supprimer les agents de police" - -#~ msgid "Applied" -#~ msgstr "Postulé" - -#~ msgid "Not applied" -#~ msgstr "Non appliqué" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Modules non liés" - -#~ msgid "U." -#~ msgstr "</U>" - -#~ msgid "Last application" -#~ msgstr "Dernière demande" - -#~ msgid "Add to delete queue" -#~ msgstr "Ajouter à supprimer la file d'attente" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Cet agent ne peut pas être configuré à distance" - -#~ msgid "Add to apply queue" -#~ msgstr "Ajouter à appliquer la file d'attente" - -#~ msgid "Policy applied" -#~ msgstr "Politique appliquée" - -#~ msgid "Need apply" -#~ msgstr "Besoin d'appliquer" - -#~ msgid "Applying policy" -#~ msgstr "Application de la politique" - -#~ msgid "Deleting from policy" -#~ msgstr "Suppression de la politique" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Vous avez joint pour supprimer la collection. Seront supprimés dans " -#~ "l'application de la politique suivante." - -#~ msgid "Created successfuly" -#~ msgstr "Créé avec succès" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Vous avez joint à supprimer les alertes en cours. Seront supprimés dans " -#~ "l'application de la politique suivante." - -#~ msgid "Added action successfuly" -#~ msgstr "Ajouté l'action avec succès" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Successfuly d'action supprimé" - -#~ msgid "Policy module" -#~ msgstr "module de stratégie" - -#~ msgid "Module is not selected" -#~ msgstr "Le module n'est pas sélectionné" - -#~ msgid "Select inventory module" -#~ msgstr "Sélectionnez module d'inventaire" - -#~ msgid "Linking modules" -#~ msgstr "Lier modules" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Erreur: Mise à jour des modules de liaison à la politique" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Succès: Mise à jour des modules de liaison à la politique" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Texte libre pour le filtre (*)" - -#~ msgid "Free text for filter" -#~ msgstr "Texte libre pour le filtre" - -#~ msgid "List of modules unlinked" -#~ msgstr "Liste des modules non liés" - -#~ msgid "Add policy" -#~ msgstr "Ajoutez politique" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Opération supprimé avec succès à partir de la file d'attente" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "L'opération ne peut pas être supprimé de la file d'attente" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Opérations supprimés avec succès à partir de la file d'attente" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Les opérations ne peuvent pas être supprimés de la file d'attente" - -#~ msgid "Update pending" -#~ msgstr "Mise à jour en cours" - -#~ msgid "Update pending agents" -#~ msgstr "Mettre à jour les agents en attente" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "" -#~ "Ajouter à appliquer la file d'attente seulement pour les bases de données" - -#~ msgid "Link pending modules" -#~ msgstr "Lien modules en attente" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Sera lié dans l'application des politiques prochaine" - -#~ msgid "Unlink pending modules" -#~ msgstr "Délier modules en attente" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Seront dissociées dans l'application des politiques prochaine" - -#~ msgid "Delete pending" -#~ msgstr "Supprimer attente" - -#~ msgid "Delete pending agents" -#~ msgstr "Supprimer agents en attente" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Seront supprimés dans l'application des politiques prochaine" - -#~ msgid "Delete pending modules" -#~ msgstr "Supprimer des modules en attente" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Supprimer des modules d'inventaire en cours" - -#~ msgid "Delete pending alerts" -#~ msgstr "Supprimer alertes en cours" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Supprimer attente des alertes externes" - -#~ msgid "Delete pending file collections" -#~ msgstr "Supprimer attente collections de fichiers" - -#~ msgid "Delete pending plugins" -#~ msgstr "Supprimer plugins attente" - -#~ msgid "Advices" -#~ msgstr "Conseils" - -#~ msgid "Queue summary" -#~ msgstr "Résumé des files d'attente" - -#~ msgid "This operation could take a long time" -#~ msgstr "Cette opération peut prendre un certain temps" - -#~ msgid "Apply (database and files)" -#~ msgstr "Appliquer (base de données et fichiers)" - -#~ msgid "Apply (only database)" -#~ msgstr "Appliquer (seule base de données)" - -#~ msgid "Complete" -#~ msgstr "Total" - -#~ msgid "Incomplete" -#~ msgstr "|Incomplète|" - -#~ msgid "Queue filter" -#~ msgstr "Filtre Queue" - -#~ msgid "Finished" -#~ msgstr "Fini" - -#~ msgid "Delete from queue" -#~ msgstr "Supprimer de la file d'attente" - -#~ msgid "Empty queue" -#~ msgstr "File d'attente vide" - -#~ msgid "Delete all" -#~ msgstr "Tout supprimer" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Opération ajouté avec succès à la file d'attente" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "L'opération ne peut pas être ajouté à la file d'attente" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Fonctionnement en double ou incompatible dans la file d'attente" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Vous avez joint à supprimer plugins en cours. Seront supprimés dans " -#~ "l'application de la politique suivante." - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Ne peut être ajouté pour supprimer les plugins en cours." - -#~ msgid "Duplicated alert" -#~ msgstr "Alerte dupliqué" - -#~ msgid "Modules in policy agents" -#~ msgstr "Modules en agents de la politique" - -#~ msgid "Alert Template" -#~ msgstr "Alerter Template" - -#~ msgid "List event alerts" -#~ msgstr "Liste des alertes d'événements" - -#~ msgid "Builder event alert" -#~ msgstr "Builder alerte événement" - -#~ msgid "Error processing action" -#~ msgstr "action de traitement d'erreur" - -#~ msgid "Error validating alert(s)" -#~ msgstr "Erreur alerte valider (s)" - -#~ msgid "Ac." -#~ msgstr "Année" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Move up" -#~ msgstr "Déplacer vers le haut" - -#~ msgid "Move down" -#~ msgstr "Déplacer vers le bas" - -#~ msgid "View associated rules" -#~ msgstr "Voir règles associées" - -#~ msgid "List event rules" -#~ msgstr "règles d'événement de la liste" - -#~ msgid "Configure event rule" -#~ msgstr "Configurez la règle d'événement" - -#~ msgid "User comment" -#~ msgstr "commentaire de l'utilisateur" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Ce champ sera traitée avec regexp" - -#~ msgid "Window" -#~ msgstr "Fenêtre" - -#~ msgid "Configure event alert" -#~ msgstr "Configurer alerte d'événement" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Pas pu être créé, s'il vous plaît remplir nom d'alerte" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Mode d'évaluation de la règle" - -#~ msgid "Please Read" -#~ msgstr "Please Read" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Depuis l'alerte peut avoir plusieurs actions. Vous pouvez les modifier à " -#~ "partir de la liste d'alerte des événements." - -#~ msgid "Group by" -#~ msgstr "Grouper par" - -#~ msgid "Event rules" -#~ msgstr "Les règles d'événement" - -#~ msgid "Error creating rule" -#~ msgstr "Erreur de création de règle" - -#~ msgid "Successfully created rule" -#~ msgstr "Règle créé avec succès" - -#~ msgid "Error updating rule" -#~ msgstr "Erreur mise à jour règle" - -#~ msgid "Successfully updating rule" -#~ msgstr "Mise à jour avec succès règle" - -#~ msgid "Error updating rule operators" -#~ msgstr "Erreur mise à jour opérateurs des règles" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Réussir mettre à jour les opérateurs des règles" - -#~ msgid "(Agent)" -#~ msgstr "Agent" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "expression logique de ces règles:" - -#~ msgid "Update operators" -#~ msgstr "Mettre à jour les opérateurs" - -#~ msgid "Success: create the alerts." -#~ msgstr "Succès: créer des alertes." - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Échec: créer des alertes pour ces modules, s'il vous plaît vérifier." - -#~ msgid "Modules agents in policy" -#~ msgstr "agents de modules dans la politique" - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "Alertes SNMP à supprimer" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Succès: supprimer les alertes." - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "" -#~ "Échec: supprimer les alertes pour ces modules, s'il vous plaît vérifier." - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Alertes succès mis à jour ( %s / %s )" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Alertes sans succès mis à jour ( %s / %s )" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "Alertes SNMP à modifier" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Alertes Massive plus de politique" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Alertes Massive suppression de la politique" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Massive suppression SNMP alerte" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Massive alerte SNMP édition" - -#~ msgid "Custom OID" -#~ msgstr "Coutume OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Erreur d'analyse MIB" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Les valeurs de mesure des pièges ajouté avec succès" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Erreur d'ajout de valeurs personnalisées de pièges" - -#~ msgid "No change in data" -#~ msgstr "Aucun changement dans les données" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Les valeurs de mesure des pièges avec succès mis à jour" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Erreur actualisation des valeurs de mesure de pièges" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Les valeurs de mesure des pièges avec succès supprimés" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Erreur de suppression des valeurs de mesure de pièges" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Envoyé %s / %s les pièges" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Fail téléchargé %s / %s les pièges" - -#~ msgid "Fail uploaded file" -#~ msgstr "Fail fichier téléchargé" - -#~ msgid "Load MIB" -#~ msgstr "Chargez MIB" - -#~ msgid "Upload MIB" -#~ msgstr "Upload MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Connexion répertoire de stockage" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Répertoire où les données de log seront stockés." - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "" -#~ "Définit la durée de vie maximale des données de log en quelques jours." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Enterprise ACL configuration" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Ajouter un nouvel élément ACL au profil" - -#~ msgid "Section" -#~ msgstr "SECTION" - -#~ msgid "Page" -#~ msgstr "" - -#~ msgid "Filter by profile" -#~ msgstr "Filtrer par profil" - -#~ msgid "Skins configuration" -#~ msgstr "configuration des Skins" - -#~ msgid "Error deleting skin" -#~ msgstr "Erreur peau suppression" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Peau avec succès supprimé" - -#~ msgid "Create skin" -#~ msgstr "Créer peau" - -#~ msgid "Skin name" -#~ msgstr "Nom de la peau" - -#~ msgid "Relative path" -#~ msgstr "Chemin relatif" - -#~ msgid "Successfully updated skin" -#~ msgstr "Peau avec succès mis à jour" - -#~ msgid "Error updating skin" -#~ msgstr "Erreur peau mise à jour" - -#~ msgid "Error creating skin" -#~ msgstr "Erreur de création peau" - -#~ msgid "Successfully created skin" -#~ msgstr "Peau créé avec succès" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "fichier Zip avec la peau répertoire. Le nom du fichier zip ne peut avoir que " -#~ "des caractères alphanumériques." - -#~ msgid "Group/s" -#~ msgstr "Groupe / s" - -#~ msgid "Metaconsole setup" -#~ msgstr "configuration de Metaconsole" - -#~ msgid "Successfully update" -#~ msgstr "Réussir à jour" - -#~ msgid "Could not be update" -#~ msgstr "Ne pouvait pas être mise à jour" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Édition d'élément de Metaconsole FMS Pandora" - -#~ msgid "Auth token" -#~ msgstr "Auth jeton" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token précédemment configuré sur la console Pandora de destination afin " -#~ "d'utiliser l'authentification déléguée." - -#~ msgid "Console URL" -#~ msgstr "URL de la console" - -#~ msgid "DB Host" -#~ msgstr "DB Host" - -#~ msgid "DB Name" -#~ msgstr "DB Nom" - -#~ msgid "DB User" -#~ msgstr "DB utilisateur" - -#~ msgid "DB Password" -#~ msgstr "DB Mot de passe" - -#~ msgid "Console User" -#~ msgstr "Console utilisateur" - -#~ msgid "Console Password" -#~ msgstr "Mot de passe Console" - -#~ msgid "DB" -#~ msgstr "[dB]" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "Compatibility" -#~ msgstr "Compatibilité" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Nombre de jours avant que des données est transféré à la base de l'histoire." - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "La taille des données du mécanisme utilisé pour transférer des données " -#~ "(semblable à un tampon de données.)" - -#~ msgid "Time interval between data transfer." -#~ msgstr "L'intervalle de temps entre le transfert de données." - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Avant d'activer cette option vérifier votre configuration ACL. Vous risquez " -#~ "de perdre l'accès à la console." - -#~ msgid " Bytes" -#~ msgstr " (en octets)" - -#~ msgid "Only validated events" -#~ msgstr "Événements seulement validés" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Les modules d'inventaire figurant dans la liste noire des changements ne " -#~ "seront pas générer des événements lors de changer." - -#~ msgid "Out of black list" -#~ msgstr "Sur liste noire" - -#~ msgid "In black list" -#~ msgstr "Dans la liste noire" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Poussez modules sélectionnés en liste noire" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Modules sélectionnés sauter hors de la liste noire" - -#~ msgid "Enterprise options" -#~ msgstr "Options d'entreprise" - -#~ msgid " Caracters" -#~ msgstr " Caractères" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Réglez 0 si jamais expirer." - -#~ msgid " Days" -#~ msgstr " Jours" - -#~ msgid " Minutes" -#~ msgstr " minutes" - -#~ msgid "Two attempts minimum" -#~ msgstr "Deux tentatives minimum" - -#~ msgid " Attempts" -#~ msgstr " Les tentatives" - -#~ msgid "Enterprise password policy" -#~ msgstr "Politique de mot de passe Enterprise" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Les règles appliquées à la gestion des mots de passe. Cette politique " -#~ "s'applique à tous les utilisateurs sauf l'administrateur." - -#~ msgid "Active directory" -#~ msgstr "Active directory" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Télécommande Pandora FMS" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Télécommande Babel Enterprise" - -#~ msgid "Remote Integria" -#~ msgstr "Télécommande Integria" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Local component management" -#~ msgstr "La gestion de la composante locale" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Module d'inventaire créé avec succès" - -#~ msgid "Error creating inventory module" -#~ msgstr "Erreur de création de module d'inventaire" - -#~ msgid "Interpreter" -#~ msgstr "Interprète" - -#~ msgid "separate fields with " -#~ msgstr "des champs séparés avec " - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Ou désactiver Pandora FMS entreprise" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ " Cette licence a expiré.
" -#~ "Vous ne pouvez pas obtenir les mises à jour jusqu'à ce que vous renouvelez " -#~ "la licence." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ " hors des limites
" -#~ "Cette licence autorise %d agents et vous avez %d agents configurés." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Pour continuer à utiliser Pandora FMS, veuillez désactiver entreprise en " -#~ "renommant le répertoire des entreprises dans la console
Ou contactez " -#~ "Artica à info@artica.es pour une licence valide.:" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "S'il vous plaît contacter Artica à info@artica.es de renouveler la licence." - -#~ msgid "Renew" -#~ msgstr "Renouveler" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "S'il vous plaît, configurer ce widget avant de l'utiliser" - -#~ msgid "Latest events list" -#~ msgstr "Dernière liste des événements" - -#~ msgid "Limit" -#~ msgstr "Limiter" - -#~ msgid "Map made by user" -#~ msgstr "Carte faite par l'utilisateur" - -#~ msgid "Show a map made by user" -#~ msgstr "Voir une carte faite par l'utilisateur" - -#~ msgid "Alerts Fired" -#~ msgstr "Alertes Effectués" - -#~ msgid "Alerts Fired report" -#~ msgstr "Alertes Effectués rapport" - -#~ msgid "Show a report made by user" -#~ msgstr "Afficher un rapport fait par l'utilisateur" - -#~ msgid "Single graph" -#~ msgstr "Graph" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Une représentation graphique d'un module d'agent de" - -#~ msgid "Show the URL content" -#~ msgstr "Afficher le contenu d'URL" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Hauteur en px (zéro pour l'auto)" - -#~ msgid "My URL" -#~ msgstr "Mon URL" - -#~ msgid "Invalid URL" -#~ msgstr "URL invalide" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Bienvenue message à Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Accueil" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Ceci est un exemple d'un widget Dashboard. Un widget peut contenir des " -#~ "éléments" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Pour ajouter d'autres éléments, cliquez sur \"Ajouter des widgets \" en haut de cette page." - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Pour effacer ce message, cliquez sur le bouton Supprimer en haut à droite de " -#~ "cet élément." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Pour ce faire, il suffit de cliquer sur le titre et faites-la glisser à " -#~ "l'endroit désiré." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Merci d'utiliser Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Afficher une carte du réseau surveillé" - -#~ msgid "No overlap" -#~ msgstr "Pas de chevauchement" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "Maps status" -#~ msgstr "Statut cartes" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Général et rapport rapide des cartes visuelles" - -#~ msgid "Panel with a message" -#~ msgstr "Panneau avec un message" - -#~ msgid "My Post" -#~ msgstr "Mes offres d'emp" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Afficher un graphique personnalisé défini" - -#~ msgid "Groups status" -#~ msgstr "statut Groupes" - -#~ msgid "General and quick group status report" -#~ msgstr "Rapport sur l'état général du groupe et rapide" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Afficher une liste de santé de surveillance mondiale" - -#~ msgid "Dashboard replicate" -#~ msgstr "réplique du tableau de bord" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "Non copyed. Erreur de copie de données. Vous devez sélectionner un tableau " -#~ "de bord" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Non copyed. Copie de données d'erreur" - -#~ msgid "Successfully copyed" -#~ msgstr "Réussir copyed" - -#~ msgid "Source user's group" -#~ msgstr "Le groupe des utilisateurs de source" - -#~ msgid "Destination user's group" -#~ msgstr "Le groupe de l'utilisateur de destination" - -#~ msgid "Group Dashboards" -#~ msgstr "Les tableaux de bord du Groupe" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Répliquer Dashboard" - -#~ msgid "Configure widget" -#~ msgstr "Configurer les widgets" - -#~ msgid "Delete widget" -#~ msgstr "Supprimer widget" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Widget peut pas être chargé" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Veuillez reconfigurer le widget à récupérer" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Tableau de bord mis à jour avec succès" - -#~ msgid "Could not update dashboard" -#~ msgstr "Impossible de mettre à jour tableau de bord" - -#~ msgid "Could not create dashboard" -#~ msgstr "Impossible de créer un tableau de bord" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Tableau de bord avec succès créé" - -#~ msgid "Slides mode" -#~ msgstr "Mode Diapositives" - -#~ msgid "Next Dashboard" -#~ msgstr "Dashboard Suivant" - -#~ msgid "Play" -#~ msgstr "Entre en jeu." - -#~ msgid "Previous Dashboard" -#~ msgstr "Dashboard précédente" - -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgid "Next slide in" -#~ msgstr "Diapositive suivante" - -#~ msgid "Add dashboard" -#~ msgstr "Ajoutez tableau de bord" - -#~ msgid "Add widget" -#~ msgstr "Ajouter un widget." - -#~ msgid "Update dashboard" -#~ msgstr "Mise à jour tableau de bord" - -#~ msgid "Delete dashboard" -#~ msgstr "Supprimer tableau de bord" - -#~ msgid "Dashboard options" -#~ msgstr "Options du tableau de bord" - -#~ msgid "Private dashboard" -#~ msgstr "Tableau de bord privé" - -#~ msgid "Add new dashboard view" -#~ msgstr "Ajouter une nouvelle vue du tableau de bord" - -#~ msgid "Add new widget" -#~ msgstr "Ajouter nouveau widget" - -#~ msgid "Search results for" -#~ msgstr "Résultats de recherche pour" - -#~ msgid "Screens" -#~ msgstr "Screens" - -#~ msgid "Create visualmap" -#~ msgstr "Créer visualmap" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "" -#~ "L'utilisateur n'est pas dans aucun des deux groupes avec un profil EW" - -#~ msgid "Succesful updated" -#~ msgstr "Succesful mise à jour" - -#~ msgid "Unsucessful updated" -#~ msgstr "Unsucessful mise à jour" - -#~ msgid "Fields" -#~ msgstr "Champs" - -#~ msgid "Tactical View" -#~ msgstr "Tactical Voir" - -#~ msgid "More events" -#~ msgstr "Plus d'événements" - -#~ msgid "Create module" -#~ msgstr "Créer un module" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Impossible de se connecter à l'instance FMS Pandora" - -#~ msgid "Web check" -#~ msgstr "Enregistrement en ligne" - -#~ msgid "Module description" -#~ msgstr "Description du module" - -#~ msgid "Step by step wizard" -#~ msgstr "Assistant étape par étape" - -#~ msgid "Click Create to continue" -#~ msgstr "Cliquez sur Créer pour continuer" - -#~ msgid "Please, select a module" -#~ msgstr "S'il vous plaît, choisissez un module" - -#~ msgid "Edit module" -#~ msgstr "Modifier le module" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "L'alerte vous essayez d'ajouter est déjà dans la liste des alertes" - -#~ msgid "Please, select an alert" -#~ msgstr "S'il vous plaît, sélectionnez une alerte" - -#~ msgid "Please, select an agent" -#~ msgstr "S'il vous plaît, choisissez un agent" - -#~ msgid "String" -#~ msgstr "Chaîne" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Un autre agent existe déjà avec le même nom" - -#~ msgid "Preview" -#~ msgstr "Prévisualisation" - -#~ msgid "Edit agent" -#~ msgstr "Modifier l'agent" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "S'il vous plaît, définir une adresse IP valide" - -#~ msgid "Advanced configuration" -#~ msgstr "Configuration avancée" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Les caractères non valides fondée en nom du module" - -#~ msgid "Please, set a name" -#~ msgstr "S'il vous plaît, mettre un nom" - -#~ msgid "Please, set an interval" -#~ msgstr "S'il vous plaît, définir un intervalle" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Sélectionnez l'agent à être modifiées ou supprimées" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Sélectionnez l'agent où le module sera créé" - -#~ msgid "Create Module" -#~ msgstr "Créer un module" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Sélectionnez le module à être modifiées ou supprimées" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Sélectionnez le module où l'alerte sera créé" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Sélectionnez l'alerte pour être modifiées ou supprimées" - -#~ msgid "Group View" -#~ msgstr "Vue du groupe" - -#~ msgid "Synchronizing" -#~ msgstr "Synchronisation en cours" - -#~ msgid "Users synchronization" -#~ msgstr "la synchronisation des utilisateurs" - -#~ msgid "Groups synchronization" -#~ msgstr "la synchronisation des groupes" - -#~ msgid "Alerts synchronization" -#~ msgstr "la synchronisation des Alertes" - -#~ msgid "Components synchronization" -#~ msgstr "Synchronisation des composants" - -#~ msgid "Tags synchronization" -#~ msgstr "la synchronisation des mots clés" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Ne pouvait pas être mise à jour: Erreur dans %s" - -#~ msgid "Customize sections" -#~ msgstr "Adaptez sections" - -#~ msgid "Disabled sections" -#~ msgstr "Sections mobilité" - -#~ msgid "Enabled sections" -#~ msgstr "Sections compatibles" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Appuyez sur certaines sections afin de lui permettre" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Sections choisies Pop pour la désactiver" - -#~ msgid "Passwords" -#~ msgstr "Mots de passe" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Erreur mise à jour utilisateur %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Mise à jour utilisateur %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Erreur de création de l'utilisateur %s" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Créé par l'utilisateur %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Erreur de création / mise à jour des éléments des groupes followings / " -#~ "profiles / profils d'utilisateurs ( %d / %d / %d )" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Les suivants éléments des groupes / profiles / profils d'utilisateurs ont " -#~ "été créés / mis à jour avec succès ( %d / %d / %d )" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Erreur de connexion à %s" - -#~ msgid "This metaconsole" -#~ msgstr "Cette metaconsole" - -#~ msgid "Profile mode" -#~ msgstr "mode profil" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Profil de mode de synchronisation." - -#~ msgid "New profile" -#~ msgstr "Nouveau profil" - -#~ msgid "Copy profile" -#~ msgstr "Copier le profil" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Cochez cette case pour copier des profils originaux des utilisateurs" - -#~ msgid "Sync" -#~ msgstr "Synchronis" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Erreur de création %s des composants des groupes " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Créé %s groupes de composants" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Erreur de création / mise à jour %s / %s composantes locales " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Création / Mise à jour %s / %s composantes locales" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Erreur de création / mise à jour %s / %s éléments du réseau " - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Création / Mise à jour %s / %s éléments du réseau" - -#~ msgid "Metaconsole elements" -#~ msgstr "éléments de Metaconsole" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "Le nombre d'éléments récupérés pour chaque instance dans certains points de " -#~ "vue." - -#~ msgid "Visual" -#~ msgstr "Visuel" - -#~ msgid "Could not be delete" -#~ msgstr "N'a pas pu être supprimer" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Chemin d'accès complet à la console Pandora sans dernier caractère \"/ \". " -#~ "Exemple " - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "Il n'y a pas serveur ajouté à metaconsole" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Erreur de création / mise à jour %s / %s comamnds" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Créé / modifié %s / %s commandes" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Erreur de création / mise à jour %s / %s actions" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "/ Créé Mis à jour %s / %s actions" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Erreur de création / mise à jour %s / %s modèles" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Création / Mise à jour %s / %s modèles" - -#~ msgid "Propagation" -#~ msgstr "Propagation" - -#~ msgid "Only database" -#~ msgstr "Seulement base de données" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Erreur de création / mise à jour %s / %s balises" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Création / Mise à jour %s / %s balises" - -#~ msgid "Active events history" -#~ msgstr "Actif histoire des événements" - -#~ msgid "Please search for anything text." -#~ msgstr "S'il vous plaît recherche de texte de n'importe quoi." - -#~ msgid "Original string" -#~ msgstr "Chaîne d'origine" - -#~ msgid "Translation in selected language" -#~ msgstr "La traduction dans la langue sélectionnée" - -#~ msgid "Customize translation" -#~ msgstr "Adaptez traduction" - -#~ msgid "Consoles Setup" -#~ msgstr "Consoles Setup" - -#~ msgid "General setup" -#~ msgstr "Configuration générale" - -#~ msgid "Passwords setup" -#~ msgstr "configuration des mots de passe" - -#~ msgid "Visual setup" -#~ msgstr "Installation de Visual" - -#~ msgid "Performance setup" -#~ msgstr "configuration de la performance" - -#~ msgid "Strings translation" -#~ msgstr "traduction Strings" - -#~ msgid "Consoles setup" -#~ msgstr "configuration des consoles" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Erreur de création / mise à jour %s / %s groupes" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Création / Mise à jour %s / %s groupes" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "IP du serveur redirigé dans conf dans DB source" - -#~ msgid "created agent in destination DB" -#~ msgstr "agent créé à destination DB" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "créé des modules de l'agent en destination DB" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "créé des alertes de l'agent en destination DB" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "alertes créées actions à destination DB" - -#~ msgid "disabled agent in source DB" -#~ msgstr "Agent désactivé sur DB source" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Non défini metaconsole IP dans le \"liste d'adresses IP avec accès API \" " -#~ "conjecture Pandora Console." - -#~ msgid "Successfully moved" -#~ msgstr "Réussir déplacé" - -#~ msgid "Could not be moved" -#~ msgstr "Je n'aurais pas pu être déplacé" - -#~ msgid "Source Server" -#~ msgstr "Source Serveur" - -#~ msgid "Destination Server" -#~ msgstr "Serveur de destination" - -#~ msgid "Add agents to destination server" -#~ msgstr "Ajouter agents de serveur de destination" - -#~ msgid "Move" -#~ msgstr "Coup" - -#~ msgid "Policy Manager" -#~ msgstr "Policy Manager" - -#~ msgid "Apply policies" -#~ msgstr "Appliquer des politiques" - -#~ msgid "Policies queue" -#~ msgstr "file d'attente des Politiques" - -#~ msgid "Policies apply" -#~ msgstr "Politiques s'appliquent" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Erreur de création %s la politique" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Créé %s la politique" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Erreur de création / mise à jour %s / %s modules de politique" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Création / Mise à jour %s / %s modules de politique" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Erreur de suppression %s les modules de politique" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Supprimé %s modules de politique" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Erreur de création %s des alertes de politique" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Création %s des alertes de politique" - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Erreur de suppression %s les alertes de politique" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Supprimé %s des alertes de politique" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Metaconsole doit activation précédente de console régulière, veuillez " -#~ "contacter l'administrateur système si vous avez besoin d'aide.
" - -#~ msgid "Network traffic" -#~ msgstr "Trafic réseau" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Afin d'avoir la meilleure expérience utilisateur avec Pandora FMS, nous " -#~ "recommandons fortement à utiliser" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ " Mozilla Firefox Google Chrome navigateurs." - -#~ msgid "Monitors view" -#~ msgstr "Moniteurs voir" - -#~ msgid "Create new report" -#~ msgstr "Créer un nouveau rapport" - -#~ msgid "Report templates" -#~ msgstr "Les modèles de rapport" - -#~ msgid "Templates wizard" -#~ msgstr "Assistant Modèles" - -#~ msgid "Live view" -#~ msgstr "Vue temps réel" - -#~ msgid "Agent management" -#~ msgstr "Agent Management" - -#~ msgid "Alert management" -#~ msgstr "La gestion des alertes" - -#~ msgid "Tag management" -#~ msgstr "gestion de Tag" - -#~ msgid "Policy management" -#~ msgstr "gestion de la politique" - -#~ msgid "Category management" -#~ msgstr "Gestionnaire de catégorie" - -#~ msgid "Metasetup" -#~ msgstr "Metasetup" - -#~ msgid "Back to login" -#~ msgstr "Retour à la connexion" - -#~ msgid "Agents movement" -#~ msgstr "mouvement des agents" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Mise à jour réussie de la networkmap." - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Échec de mettre à jour le networkmap." - -#~ msgid "Unnamed " -#~ msgstr "Sans nom " - -#~ msgid "Filter by agents" -#~ msgstr "Filtrer par agents" - -#~ msgid "Filter by modules" -#~ msgstr "Filtrer par modules" - -#~ msgid "Show modules" -#~ msgstr "Afficher modules" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Montrez aux enfants Metaconsole" - -#~ msgid "Show modulegroup" -#~ msgstr "Afficher ModuleGroup" - -#~ msgid "There is no group selected" -#~ msgstr "Il n'existe aucun groupe sélectionné" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Impossible de se connecter à %s Pandora pour générer networkmap." - -#~ msgid "Agent modules" -#~ msgstr "modules de l'agent" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Ajouter modules sélectionnés à l'agent" - -#~ msgid "Undo changes" -#~ msgstr "Annuler les modifications" - -#~ msgid "Latency" -#~ msgstr "Latence" - -#~ msgid "Response" -#~ msgstr "Réponse" - -#~ msgid "Check type" -#~ msgstr "Vérifiez le type" - -#~ msgid "String to check" -#~ msgstr "Chaîne à vérifier" - -#~ msgid "Add check" -#~ msgstr "Ajouter vérifier" - -#~ msgid "Delete check" -#~ msgstr "Supprimer vérifier" - -#~ msgid "Various" -#~ msgstr "diverses" - -#~ msgid "Thresholds" -#~ msgstr "Seuils" - -#~ msgid "Web configuration" -#~ msgstr "Configuration Web" - -#~ msgid "Alerts in module" -#~ msgstr "Alerte dans le module" - -#~ msgid "Checks" -#~ msgstr "Chèques" - -#~ msgid "Deleted modules" -#~ msgstr "Modules supprimés" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Erreur en ajoutant le module %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Il y avait une erreur en créant les alertes, l'opération a été annulée" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Impossible de créer un agent %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agent ajouté avec succès" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s des modules créés" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Impossible de mettre à jour l'agent %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s des modules supprimés" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Erreur mise à jour le module %s" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Il y avait une erreur mise à jour des alertes, l'opération a été annulée" - -#~ msgid "Successfully updated module." -#~ msgstr "Mise à jour réussie module." - -#~ msgid "Manage agent modules" -#~ msgstr "Gérer les modules d'agent" - -#~ msgid "No admin user" -#~ msgstr "Aucun utilisateur admin" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow désactiver filtres d'affichage en direct personnalisées" - -#~ msgid "Customizable section" -#~ msgstr "Section personnalisable" - -#~ msgid "User synchronization" -#~ msgstr "synchronisation de l'utilisateur" - -#~ msgid "Group synchronization" -#~ msgstr "Synchronisation Groupe" - -#~ msgid "Go to agent detail" -#~ msgstr "Accédez au détail d'agent" - -#~ msgid "Create new module" -#~ msgstr "Créer un nouveau module" - -#~ msgid "Go to module detail" -#~ msgstr "Accédez au détail du module" - -#~ msgid "Create new alert" -#~ msgstr "Créez une nouvelle alerte" - -#~ msgid "Stand By" -#~ msgstr "Attente." - -#~ msgid "Go to Alert detail" -#~ msgstr "Aller à Alert détail" - -#~ msgid "Delete alert" -#~ msgstr "Supprimer une alerte" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Il y avait une balise de chargement de problème" - -#~ msgid "Plugin management" -#~ msgstr "Gestion des plugins" - -#~ msgid "Create plugin" -#~ msgstr "Créer un plug-in" - -#~ msgid "Edit plugin" -#~ msgstr "Modifier plug-in" - -#~ msgid "Log viewer" -#~ msgstr "Log Viewer" - -#~ msgid "Start date" -#~ msgstr "Date du démarrage" - -#~ msgid "Copy Dashboard" -#~ msgstr "Copier Dashboard" - -#~ msgid "Network console" -#~ msgstr "Console réseau" - -#~ msgid "Custom SQL" -#~ msgstr "SQL personnalisé" - -#~ msgid "Export this list to CSV" -#~ msgstr "Exporter cette liste au format CSV" - -#~ msgid "List of elements" -#~ msgstr "Liste des éléments" - -#~ msgid "Service Map" -#~ msgstr "Map Service" - -#~ msgid "Service deleted successfully" -#~ msgstr "Service supprimé avec succès" - -#~ msgid "Error deleting service" -#~ msgstr "Service suppression d'erreur" - -#~ msgid "Success be updated." -#~ msgstr "Succès être mis à jour." - -#~ msgid "Could not be updated." -#~ msgstr "Ne pouvait pas être mis à jour." - -#~ msgid "Policy: " -#~ msgstr "poli " - -#~ msgid "Status: " -#~ msgstr "Statut: " - -#~ msgid "Data: " -#~ msgstr "données " - -#~ msgid "Last contact: " -#~ msgstr "Dernier contact " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Networkmap entreprise" - -#~ msgid "Not found networkmap." -#~ msgstr "Pas trouvé networkmap." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Networkmap entreprise - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Succès créé" - -#~ msgid "Succesfully updated" -#~ msgstr "Mise à jour avec succès" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Reproduire avec succès" - -#~ msgid "Could not be duplicated" -#~ msgstr "Ne pouvait pas être dupliqué" - -#~ msgid "Succesfully deleted" -#~ msgstr "Avec succès supprimé" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Pas de collection attribué à cet agent" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "Le networkmap a déjà été générée." - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Taille de networkmap (Largeur x Hauteur)" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Method generation networkmap" -#~ msgstr "Méthode génération networkmap" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Actualiser état networkmap" - -#~ msgid "Resize the networkmap" -#~ msgstr "Redimensionner le networkmap" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "Cette opération ne peut être annulée, parce que c'est le DB." - -#~ msgid "Save networkmap" -#~ msgstr "Enregistrer networkmap" - -#~ msgid "Update networkmap" -#~ msgstr "Mise à jour networkmap" - -#~ msgid "Networkmap resized." -#~ msgstr "Networkmap redimensionnée." - -#~ msgid "Error process map" -#~ msgstr "Erreur dans le plan de traitement" - -#~ msgid "Details of node:" -#~ msgstr "Détails du nœud:" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Cet agent n'a pas de politique attribué" - -#~ msgid "Policy outdate" -#~ msgstr "Politique outdate" - -#~ msgid "Toggle the collection table" -#~ msgstr "Basculer la table de la collection" - -#~ msgid "Descripttion" -#~ msgstr "Descripttion" - -#~ msgid "Show Collection" -#~ msgstr "Voir collection" - -#~ msgid "Toggle the alert table" -#~ msgstr "Basculer la table alerte" - -#~ msgid "Show Alert" -#~ msgstr "Afficher Alerter" - -#~ msgid "Toggle the module table" -#~ msgstr "Basculer la table du module" - -#~ msgid "Relationship" -#~ msgstr "liens de parenté" - -#~ msgid "Show Modules" -#~ msgstr "Afficher Modules" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Un-adoptés)" - -#~ msgid "(Adopted)" -#~ msgstr "(Adopté)" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Un-adoptés) (non lié)" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Adopté) (non lié)" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Export to PDF" -#~ msgstr "Exporter au format PDF" - -#~ msgid "Backup" -#~ msgstr "Sauvegarder" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Utilitaire de sauvegarde de base de données Pandora" - -#~ msgid "Lost" -#~ msgstr "Perdu" - -#~ msgid "Backups list" -#~ msgstr "liste des sauvegardes" - -#~ msgid "Create backup" -#~ msgstr "Créer une sauvegarde" - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "'Erreur create %s 'politique, le nom existe et il ya pas de nom gratuit." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "'Attention create %s 'politique, le nom, c'est la politique de nom %s ." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Erreur de la politique n'ont pas nommer." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "«Succès create %s 'politique." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "'Erreur create %s 'politique." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "«Success Ajouter %s 'agents." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "'Erreur ajouter %s 'agents." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Succès ajouter '%s' de la collection." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Erreur ajouter '%s' collection." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Erreur ajouter le module, n'ont pas taper." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Erreur ajouter le module, erreur dans le composant de tags." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "«Success Ajouter %s 'module." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "'Erreur ajouter %s 'module." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Erreur Ajouter l'alerte, le modèle ' %s 'n'existe pas." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Erreur Ajouter l'alerte, le module ' %s 'n'existe pas." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "«Success Ajouter %s 'alerte." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "'Erreur ajouter %s 'alerte." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Erreur Ajouter l'alerte, l'action ' %s 'n'existe pas." - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Succès ajouter '%s' l'action." - -#~ msgid "Report to build" -#~ msgstr "Rapport de construire" - -#~ msgid "Send to email" -#~ msgstr "Envoyer à cet email" - -#~ msgid "Save to disk into path" -#~ msgstr "Enregistrer sur le disque en chemin" - -#~ msgid "Send custom report by email" -#~ msgstr "Envoyer un rapport personnalisé par email" - -#~ msgid "Save custom report to disk" -#~ msgstr "Enregistrer rapport personnalisé sur le disque" - -#~ msgid "Backup Pandora database" -#~ msgstr "Sauvegarde base de données Pandora" - -#~ msgid "Not scheduled" -#~ msgstr "Non prévu" - -#~ msgid "Hourly" -#~ msgstr "Horaire" - -#~ msgid "Yearly" -#~ msgstr "annuelle" - -#~ msgid "This is the automatic generated report" -#~ msgstr "C'est le rapport généré automatique" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Ouvrez le fichier joint pour le voir" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "S'il vous plaît ne pas répondre ou répondre à cet e-mail" - -#~ msgid "Cron jobs" -#~ msgstr "Cron projets" - -#~ msgid "Add new job" -#~ msgstr "Ajouter une nouvelle offre" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Chemin n'existe ou n'est pas accessible en écriture" - -#~ msgid "Edit job" -#~ msgstr "Éditer l'offre" - -#~ msgid "Cron extension is not running" -#~ msgstr "extension de Cron ne fonctionne pas" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "extension de Cron n'a jamais couru ou ce n'est pas bien configuré" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Cette extension s'appuie sur une bonne configuration de cron, le service de " -#~ "planification basé sur le temps" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "S'il vous plaît, ajoutez la ligne suivante à votre fichier crontab" - -#~ msgid "Last execution" -#~ msgstr "Dernière mise à exécution" - -#~ msgid "Cron extension is running" -#~ msgstr "extension de cron tourne" - -#~ msgid "Scheduled jobs" -#~ msgstr "Les travaux programmés" - -#~ msgid "Task" -#~ msgstr "Tâche" - -#~ msgid "Scheduled" -#~ msgstr "Programmé" - -#~ msgid "First_execution" -#~ msgstr "First_execution" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Peut-être que la première manche n'est pas exactement égale à cette valeur " -#~ "car la configuration de cron est diferent." - -#~ msgid "Last run" -#~ msgstr "Dernière exécution" - -#~ msgid "Force run" -#~ msgstr "Course de la Force" - -#~ msgid "Path" -#~ msgstr "Chemin" - -#~ msgid "First execution" -#~ msgstr "Première exécution" - -#~ msgid "Translate string" -#~ msgstr "Traduire chaîne" - -#~ msgid "CSV import" -#~ msgstr "CSV importation" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Créé l'agent %s" - -#~ msgid "File processed" -#~ msgstr "Fichier traité" - -#~ msgid "CSV format" -#~ msgstr "Format CSV" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "Le fichier CSV doit avoir les champs dans l'ordre suivant" - -#~ msgid "Separator" -#~ msgstr "Separator" - -#~ msgid "Upload CSV file" -#~ msgstr "Télécharger un fichier CSV" - -#~ msgid "Wizard SLA" -#~ msgstr "SLA Assistant" - -#~ msgid "Global" -#~ msgstr "Mondial" - -#~ msgid "Advance options" -#~ msgstr "Options avancées" - -#~ msgid "Templates list" -#~ msgstr "liste Modèles" - -#~ msgid "Templates Wizard" -#~ msgstr "Assistant Modèles" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "agents de graphes ( %s ) - %s" - -#~ msgid "Template editor" -#~ msgstr "éditeur de Template" - -#~ msgid "Get PDF file" -#~ msgstr "Voir en PDF" - -#~ msgid "Generated" -#~ msgstr "Généré" - -#~ msgid "Simple Graph" -#~ msgstr "Graphique simple" - -#~ msgid "% Limit" -#~ msgstr "Limite:" - -#~ msgid "Report type" -#~ msgstr "Type de rapport" - -#~ msgid "% OK" -#~ msgstr "OK" - -#~ msgid "% Wrong" -#~ msgstr "Faux" - -#~ msgid "MAX Value" -#~ msgstr "Valeur max" - -#~ msgid "MIN Value" -#~ msgstr "Valeur MIN" - -#~ msgid "Uknown agents" -#~ msgstr "Agents Uknown" - -#~ msgid "Last 8 hours events" -#~ msgstr "8 heures d'événements" - -#~ msgid "Modules under" -#~ msgstr "Modules sous" - -#~ msgid "Modules at normal status" -#~ msgstr "Modules à l'état normal" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Modules à l'état critique ou d'avertissement" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "Il n'y a pas de modules supérieur ou égal à %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "Il n'y a aucune Modules sous %s" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "Il n'y a pas de modules à l'état normal" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "Il n'y a pas de modules dans ces conditions" - -#~ msgid "Serialized data " -#~ msgstr "Données sérialisées " - -#~ msgid "There are no data." -#~ msgstr "Il n'y a pas de données." - -#~ msgid "Crit:" -#~ msgstr "Critique:" - -#~ msgid "Warn:" -#~ msgstr "Avertir" - -#~ msgid "Ok:" -#~ msgstr "Ok" - -#~ msgid "Value:" -#~ msgstr "Valeur:" - -#~ msgid "Add fictional point" -#~ msgstr "Ajouter un point fictif" - -#~ msgid "Shape" -#~ msgstr "Forme" - -#~ msgid "Radius" -#~ msgstr "Radius" - -#~ msgid "Color" -#~ msgstr "Couleur" - -#~ msgid "Network map linked" -#~ msgstr "Carte réseau reliée" - -#~ msgid "Square" -#~ msgstr "Place" - -#~ msgid "Rhombus" -#~ msgstr "Rhombus" - -#~ msgid "Open Minimap" -#~ msgstr "Ouvert minicarte" - -#~ msgid "Show modules:" -#~ msgstr "Afficher les modules:" - -#~ msgid "Copy of " -#~ msgstr "Copie de " - -#~ msgid "Module alert" -#~ msgstr "Module alerte" - -#~ msgid "Empty configuration" -#~ msgstr "Configuration vide" - -#~ msgid "Empty OS" -#~ msgstr "Vider OS" - -#~ msgid "Lines" -#~ msgstr "Filets" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsole" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "Automated rapport FMS Pandora pour l'utilisateur rapport défini" - -#~ msgid "There are no agents with modules." -#~ msgstr "Il n'y a pas d'agents avec des modules." - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "Il n'y a aucune Agent / Modules définis." - -#~ msgid "Exception - Equal to" -#~ msgstr "Exception - Égal à" - -#~ msgid "Modules less or equal to" -#~ msgstr "Modules inférieure ou égale à" - -#~ msgid "Modules less" -#~ msgstr "Modules moins" - -#~ msgid "Modules over" -#~ msgstr "Modules plus" - -#~ msgid "Modules equal to" -#~ msgstr "Modules égal à" - -#~ msgid "Modules not equal to" -#~ msgstr "Modules pas égal à" - -#~ msgid "Modules normal status" -#~ msgstr "Modules état normal" - -#~ msgid "There are no alerts for this module." -#~ msgstr "Il n'y a aucune alerte pour ce module." - -#~ msgid "Modules detailed event" -#~ msgstr "Modules événement détaillé" - -#~ msgid "There are no events for this module." -#~ msgstr "Il n'y a pas d'événement pour ce module." - -#~ msgid "There are no events in group." -#~ msgstr "Il n'y a aucun événement en groupe." - -#~ msgid "There are no Events." -#~ msgstr "Il n'y a pas Events." - -#~ msgid "Agent:" -#~ msgstr "Agent" - -#~ msgid "Module:" -#~ msgstr "Module" - -#~ msgid "Generated: " -#~ msgstr "Généré: " - -#~ msgid "Report date: " -#~ msgstr "Rapporté Date " - -#~ msgid "CONTENTS" -#~ msgstr "SOMMAIRE" - -#~ msgid "Untitled" -#~ msgstr "Sans titre" - -#~ msgid "Period: " -#~ msgstr "Période: " - -#~ msgid "There are no modules." -#~ msgstr "Il n'y a pas de modules." - -#~ msgid "No description" -#~ msgstr "Aucune description" - -#~ msgid "Restoring a backup" -#~ msgstr "Restauration d'une sauvegarde" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Restauration d'une sauvegarde de base de données Pandora doit être effectuée " -#~ "manuellement" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "C'est une opération complexe qui doit intervention des humains pour éviter " -#~ "les défaillances du système et des données qui perdent" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "" -#~ "Pour restaurer la sauvegarde sélectionnée, s'il vous plaît suivez ces étapes" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Ouvrez un shell root sur votre système situé à " - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Connecter à la base MySQL en utilisant la commande suivante" - -#~ msgid "Create a new database" -#~ msgstr "Créer une nouvelle base de données" - -#~ msgid "Restore the backup" -#~ msgstr "Restaurez la sauvegarde" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Modifier la configuration de la console pour utiliser cette nouvelle base de " -#~ "données" - -#~ msgid "Open configuration file" -#~ msgstr "Fichier de configuration ouverte" - -#~ msgid "Find" -#~ msgstr "t" - -#~ msgid "and replace with" -#~ msgstr "et les remplacer par" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Modifier la configuration des serveurs à utiliser cette nouvelle base de " -#~ "données" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "" -#~ "Trouver le fichier de configuration des serveurs et remplacer les lignes " -#~ "suivantes" - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Redémarrez les serveurs et connectez-vous à nouveau dans la console" - -#~ msgid "Run import command using the following command" -#~ msgstr "Exécutez la commande d'importation en utilisant la commande suivante" - -#~ msgid "Into your destination database." -#~ msgstr "Dans votre base de données de destination." - -#~ msgid "Log collector" -#~ msgstr "Log Collector" - -#~ msgid "Database credentials not found" -#~ msgstr "les données d'identification introuvables" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Erreur de connexion à l'hôte spécifié" - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Connecté à l'hôte, mais ne peut pas trouver la base de données spécifiée" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "\"Traduire chaîne \" extension est manquée dans le serveur. Cette extension " -#~ "est obligatoire d'être configuré sur metaconsole." - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Nom du serveur ne correspond pas. Vérifiez le nom du nœud de serveur et de " -#~ "configurer le même sur metasetup" - -#~ msgid "Last event replication" -#~ msgstr "Mise à la réplication de l'événement" - -#~ msgid "Tree view by tags" -#~ msgstr "Arborescence par les balises" - -#~ msgid "No changes found" -#~ msgstr "Aucun changement trouvés" - -#~ msgid "Get CSV file" -#~ msgstr "Obtenez fichier CSV" - -#~ msgid "Service does not exist." -#~ msgstr "Le service n'existe pas." - -#~ msgid "Module store the service does not exist." -#~ msgstr "magasin de module le service n'existe pas." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "service SLA magasin de module n'existe pas." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "magasin de l'agent du service n'existe pas." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "service SLA du magasin de l'agent n'existe pas." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Service SLA critique alerte n'existe pas." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Service d'alerte d'alerte n'existe pas." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Service essentiel alerte n'existe pas." - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Service inconnu Alert n'existe pas." - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Module automatique créer pour le service %s" - -#~ msgid "Critical (Alert)" -#~ msgstr "Critique (Alert)" - -#~ msgid "Unknow" -#~ msgstr "Unknow" - -#~ msgid "There are no service elements defined" -#~ msgstr "Il n'y a pas d'éléments de service définis" - -#~ msgid "Weight Critical" -#~ msgstr "Poids critique" - -#~ msgid "Weight Warning" -#~ msgstr "Poids Avertissement" - -#~ msgid "Weight Unknown" -#~ msgstr "Poids Unknown" - -#~ msgid "Weight Ok" -#~ msgstr "Ok de poids" - -#~ msgid "Delete service element" -#~ msgstr "Supprimer élément de service" - -#~ msgid "FAIL" -#~ msgstr "Échec" - -#~ msgid "Policy linkation" -#~ msgstr "linkation de la politique" - -#~ msgid "Module linked" -#~ msgstr "Module liée" - -#~ msgid "Unlink from policy" -#~ msgstr "Dissocier de la politique" - -#~ msgid "Module unlinked" -#~ msgstr "Module sans lien" - -#~ msgid "Relink to policy" -#~ msgstr "Relier à la politique" - -#~ msgid "Module pending to link" -#~ msgstr "Module attente de lier" - -#~ msgid "Module pending to unlink" -#~ msgstr "Module attente de dissocier" - -#~ msgid "Create a new policy map" -#~ msgstr "Créer une nouvelle carte politique" - -#~ msgid "You must change password" -#~ msgstr "Vous devez changer votre mot de passe" - -#~ msgid "NEW PASS: " -#~ msgstr "NEW PASS: " - -#~ msgid "CONFIRM: " -#~ msgstr "Confirmer " - -#~ msgid "Change" -#~ msgstr "Changer" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "L'utilisateur a été bloqué. Essayez à nouveau en " - -#~ msgid " minutes" -#~ msgstr " minutes" - -#~ msgid "Password must be different from the " -#~ msgstr "Mot de passe doit être différent de l' " - -#~ msgid " previous changes." -#~ msgstr " les modifications précédentes." - -#~ msgid "Password must be different" -#~ msgstr "Mot de passe doit être différent" - -#~ msgid "Password too short" -#~ msgstr "Mot de passe trop court" - -#~ msgid "Password must contain numbers" -#~ msgstr "Mot de passe doit contenir que des chiffres" - -#~ msgid "Password must contain symbols" -#~ msgstr "Mot de passe doit contenir des symboles" - -#~ msgid "User pass successfully updated" -#~ msgstr "User Pass correctement mis à jour" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Erreur mise à jour de passe de l'utilisateur (pas de changement?)" - -#~ msgid "Password confirm does not match" -#~ msgstr "Mot de passe Confirmez ne correspond pas" - -#~ msgid "Password empty" -#~ msgstr "Mot de passe vide" - -#~ msgid "Plannified downtime" -#~ msgstr "Temps d'arrêt Plannified" - -#~ msgid "Average" -#~ msgstr "Moyen" - -#~ msgid "Agent configuration: " -#~ msgstr "configuration de l'agent: " - -#~ msgid " MODULES" -#~ msgstr " MODULES" - -#~ msgid "Group configuration: " -#~ msgstr "configuration de groupe: " - -#~ msgid "Circle" -#~ msgstr "Cercle" - -#~ msgid "Available" -#~ msgstr "Disponibles" - -#~ msgid "Selected" -#~ msgstr "Sélectionnés" - -#~ msgid "Filter by" -#~ msgstr "Filtrer par" - -#~ msgid "Send by email" -#~ msgstr "Envoyer par courriel" - -#~ msgid "Contact:" -#~ msgstr "Contact :" - -#~ msgid "E-mail:" -#~ msgstr "Courriel :" - -#~ msgid "ERROR:" -#~ msgstr "ERREUR :" - -#~ msgid "Version number:" -#~ msgstr "Numéro de version :" - -#~ msgid "Show details" -#~ msgstr "Afficher les détails" - -#~ msgid "Client" -#~ msgstr "Client" - -#~ msgid "Day" -#~ msgstr "Jour" - -#~ msgid "Trial" -#~ msgstr "Essai" - -#~ msgid "Add node" -#~ msgstr "Ajouter un nœud" - -#~ msgid "Set center" -#~ msgstr "Définir le centre" - -#~ msgid "Relations" -#~ msgstr "Relations" - -#~ msgid "Hostname" -#~ msgstr "Nom d'hôte" - -#~ msgid "Operating system" -#~ msgstr "Système d'exploitation" - -#~ msgid "Subnet" -#~ msgstr "Sous-réseau" - -#~ msgid "Ping" -#~ msgstr "Ping" - -#~ msgid "Addresses" -#~ msgstr "Adresses" - -#~ msgid "Last check" -#~ msgstr "Dernière vérification" - -#~ msgid "A -> Z" -#~ msgstr "A -> Z" - -#~ msgid "Z -> A" -#~ msgstr "Z -> A" - -#~ msgid "Edit address" -#~ msgstr "Modifier l'adresse" - -#~ msgid "Icons style" -#~ msgstr "Style des icônes" - -#~ msgid "No networks found" -#~ msgstr "Aucun réseau trouvé" - -#~ msgid "Manage Agents" -#~ msgstr "Géres les agents" - -#~ msgid "Read Agent Information" -#~ msgstr "Lire l'information de l'agent" - -#~ msgid "Create Incidents" -#~ msgstr "Créer des incidents" - -#~ msgid "Read Incidents" -#~ msgstr "Lire les incidents" - -#~ msgid "export targets" -#~ msgstr "Objectifs d'exportation" - -#~ msgid "Database Management" -#~ msgstr "Gestion de base de données" - -#~ msgid "Available Agents" -#~ msgstr "Agents disponibles" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Statut d'initialisation infructueuse" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Créer un nouveau module de serveur WMI" - -#~ msgid "Prediction Server" -#~ msgstr "Prédiction du serveur" - -#~ msgid "WMI Server" -#~ msgstr "Serveur WMI" - -#~ msgid "Plugin Server" -#~ msgstr "Plugin du serveur" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Créer un nouveau module du Serveur de prédiction" diff --git a/pandora_console/include/languages/it.mo b/pandora_console/include/languages/it.mo index 8f73dd48cc234d57f00e6e761e6862f37da9317c..b7f51d02711852de6165c4d6722cccdd01e198c2 100644 GIT binary patch delta 9173 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 OWiD*LXu>;{hyOoLv+lM4 delta 9151 zcmXZgdA!e6{=o6?*LGdoweMYD*S_4WR|qYdLQ-b5DMczxbWIea?bB30+T>9(lbYh! z=4ObxEpmm%lE_4sN=XzFsR&sz^LpKL`saDx=W{-1d7pDW-hRJB+NYb?Nq876|K<@&WiCxXa`rI85k9x7h+4|`>+nag0?F`C-yPA;vHB8_hT#k z4V_5lozP$BghE3qdY}Uj!8Uj!I-w`94nB`rSRCt1&=ssj-`jz<`w5$3`FB&PTG$F5 z@NBgGCFn$NKqs1vr;tlwGB&|i(1xq9F>XT}9z$QOv?vVN2(5324X_V7!K=`A!=txH zA3*z^j&5}kGO;A}I)%DaEJt7b4C~|fF;2f1>T9AaY=*9^2fFf0;`3oxmADYys(a8w z`5?L#Q?VS*jP);I7UQRiDCF~CA$G>Eu@lx<96Icay@>~-6Ptz(P=vm>0G-%&G$V)6 zl~yPrTi6Ia11-^vc0u3246_(NbtMH4)Ai_!lhM6@4x8g#^o38*6mP|{_%(X!ccGcv zk8a^9w4cUHLIyga{hy6y>;~+D<1lf?uTpTP@1X;&L?^HgyW=)=;9Bp8!_)|k^U(XY#rjLo6%R!-QiyKRM6{m--GZsu8=pZlo@}My2Vyriz+-3%Yy3OxVQV!06FR`H zXzK1mPyOG~10ViNLd<5-i zIl9u#XllQU9zZAlD|*_?t_l;VkH&3q0`@`Qe;YHn3R^RNY7Yem&RHF7gpG(>p?lUB z-TOgkhu5GJ`U_UThp;?8hUM@{H06KC3OF0h=p1wc3(*WM$HWddQZNI1Fc*Kv3fTC= zRBC;ilZ|%p%bHMs0v#~@QOHCVI$#dkUjy{eor!ta3w{53wBK9M@59)S$bUYCXQ}9c zYw$`evo`!(4#fiE2e2zH!uI$h+P>ks@P!?muA*o1?d+Bbw2EF&>2; z(gdsFlNQ{Q+2{ZZ(LH<@E8`OMu&u!=xB*S&cJvJFiO)~O=Vd+#9p|98B^SL#UD5WJ zU?m)ZWiS~-A)CTjbWbOt119JTQ_z8*i*XU2N4x~hz-jcbW;TSC^}?#egV27jMHhB+ ze12Peo*)xUQd23Ix|h(EuRvG02JL8LbO+kuk7x>yp)1SY7$%&DZbjP|pM&j)FT!d# z9^H}$&;5T%@tWU$%WYAQ$M+ZI&&D21&-PM?b zO&2SDjV*J#)Sh3d%;>w%Cidvyt&;jkRZ}i&eomidvC(uJS3v1%iSicc7 z#JjKsmfalsZG&z}CroNk=uW|v4nTi)Z$dkK5M9BG=$UvEeQ`0`{sVN&zKYLxqGxCy z+Rsnu1gmZd8OV+1p_y*Eh5TD+LxrhpkEW&v+R-rdXLlsJMfan(;t{NkGoo|REn9~E zh;2nP_A}PO?5*K>6Lg$z*c$t8CI8(hjG@AgUy3e3_q+t%>TcepOK(}H*tiLAKC$~_r<9pF-_!!p0f1wjvhNf^ex{|NZt@#dZ_X9f6 zX|!GCFTwGMIe&~d*LdH!}w^4BBccTMLi4CTq9lVSV_!_2h0h;1B(5+dF zE?^b9C7aL*9YoumL?=*gTgX6dG;V>lz5fLi@~9YqruMejAc;;xCpHTmXbw7|x6v

DA@2JG^H=1hvOY|;N|F{S%YoxGjzh~ zuR`XUV*}!j=&2rnPHa4SMrNSz&qw=Pf?n^Hn7EQ}DLCLhY=nnngPiT*XYx#JNBy;E zN*_kg#*=79p27O~YOG%tU5$;YUymN@AJBo*Uxx{0z9#>srUMo3$+_rRxD0*qT69Y$ zVJ<#~9@4q!iq@j-zd+mXMkiKgNBH|88~yZlLRVf8?TwE2haE{MTuz0b&YRHF`ByZh zQ_(G%gRZayozP}<;5{)ugl3}LH(_Em(Frw04{;x~ecu>gicV}uLcy6`g?2m~ePJBB zB@@vX|AubWRCMOk(RMGP6E8w1P=aRWBlJ3cjt+DXtv`e=D7`cElhmPL%37d%-yZ!W z_d^fQ#nF-I0C%GuJ%YLT44SET(E&HccrSVw)4Rg8Y>S@yKcM}N#*Fv>K?)v@m*ayH zY)QNcozMwvf_1+Qr@tFIk>S__3(<@eVID5RhWI5qv7^`=tA7{zDZmWz<(TLFpFqKe zGo!`m%GQ@QNTm*77vh}V@&EDAiH$2H$2W*L#VN;wKof+#((A%&J&BzgSYt#Ee`$p(i z_D0Xh?fb~ThwE`Fp2vCE8VCFkuE}^b6H_o7XJSQs2_0x&jF+M9)?fy=VJkd|4%BQv ze{y3VG@gz2SCUXLm8;Neu@$rMAUe=dbfEv@Fsyli|0Bk~;89!=`6 zM`8)_pV2LD@pH&fXY|%wfV`iihJ`|E6gs2Z(bUaA@ALcUo_~X8ChM2*Yng+#&&TRG z7#-*awB1`Sf#u#5^1-xhS>Z_$DGM}I~4?ss&c ztYaaijnQ^((C3}ej(f%UI;=;03wk*3N5`3reqWwGM*e;94=P;Y^XTCy!W#H)^rKk+ zC6=T92ds=g#rl)z9#{G;OsF0jXVCugW84c}K!0>1*CiC3`IzVg^u_zpOiV@ha0Z&f znX!I$vYb(0;#1zkr9(vs2}G*uw5;=8}FCd~q;3z?FCgUWaDj9(2#2 zK)31z^cK8@w%>$KbQ{{wE-W25K0kzJ;5fSCiYLOrb&*4uq?%B0fR3RebuM~H2BTYY zJ38}w&;g6knJ+-MU=jNMO00>SWBp#NOMDoeK&6x6y#{FeywaHc?;I=6Mz6)iXvf#0 zE4l?uX<>{XMB6=ruKd~Pi`a^IE@tpkG?RzX%+)v*p0~ml#Ft`i#!uZzp%y-h4e$l* zgNtl{$FLq&`90Vidl2_RJDPwU@t^4X>(Q0(#fEqq{gO5~9X`Fi(EcvR#13wwa6V2) zXSx+l@d5Pk9f|RAbj4-<8~$Lagl7=?wk`lr=o%n<(zJK@LZ zLQY5Pl~0#upd&V-z8{*o8xsotZT0}Vf;rd(SEGBsC)S@tJ8oDZUHWS{5WN-Su`|w! zeu`%im(NO<{>y1^^!a$q$5*i@ZjSXyPQ`TTzkHsLzIZnlU@x-Ei7OZo*8S2(Zkyk{qS@}+x5j7I0W6|o3R4przTTK z<5cv;Y3Ps4^XLj*M8AAX;`0^QhInI)Pojq@yG9tW6`G-L==C0q&2S>Rz~|5f&ceij ziYS=E`RJE#3)*lew#MDDzFN(&f`;gd+DCh%6BvX}bPW0_9*+(*8NJ5SqO+n4YI6TQ z<;$q>!?PLf_y;t_C(+dB)C!qth-RcU`awBA)(=JR`z`31C`2dp96F)*(C^1`^u4vw zUA4IXUZWFKIK!5;Lk7B`FP@Lq_eWEDb&T&oPy0jY9}=&j1I$Ag@D7^E57B-$#dsS! z(LLyQ;6OsbLs79#Of9hqy79N#;>6hc`L@N&@J5% ziLkXf=>KDB>e1UXFZz0{Ux=o@7@hFq z7%xTpUxj5-*KimpP9lE07XiCSUTXJu4 z{|h^e?$J5FW0(AnoiiPK^epJyt|R|d8aQJ79r;7XjVK&HX2cz1$MwuyGGg4wv6%}; y+*EkipEJEKFC1Msc4Fc558s$ssUW{|w@k;gdKUDUe(Rg9%5>^lJpIkeqy7i_=InU@ diff --git a/pandora_console/include/languages/it.po b/pandora_console/include/languages/it.po index f688ef8cc2..f7ef1c5b68 100644 --- a/pandora_console/include/languages/it.po +++ b/pandora_console/include/languages/it.po @@ -8,25 +8,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2012-03-02 09:52+0000\n" -"Last-Translator: Marco Faenzi \n" +"PO-Revision-Date: 2015-06-29 18:45+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: it \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "X-Poedit-Country: ITALY\n" "Language: \n" "X-Poedit-Language: Italian\n" -#: ../../mobile/include/user.class.php:250 ../../general/login_page.php:129 -msgid "Login" -msgstr "Accesso" - -#~ msgid "Alert successfully updated" -#~ msgstr "Allarme aggiornato con successo" - #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 msgid "There was a problem loading group" @@ -14622,6 +14615,10 @@ msgstr "" msgid "password" msgstr "" +#: ../../mobile/include/user.class.php:250 ../../general/login_page.php:129 +msgid "Login" +msgstr "Accesso" + #: ../../mobile/include/user.class.php:295 #: ../../mobile/include/user.class.php:296 ../../general/login_page.php:145 msgid "Authenticator code" @@ -20295,1244 +20292,3 @@ msgstr "" #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "" - -#~ msgid "Module Interval" -#~ msgstr "Intervallo modulo" - -#~ msgid "TCP port" -#~ msgstr "Porta TCP" - -#~ msgid "Minimum Data" -#~ msgstr "Minimo dati" - -#~ msgid "Maximum Data" -#~ msgstr "Massimo dati" - -#~ msgid "User successfully deleted" -#~ msgstr "Utente eliminato con successo" - -#~ msgid "Standard user" -#~ msgstr "Utente standard" - -#~ msgid "Database Maintenance" -#~ msgstr "Manutenzione Database" - -#~ msgid "Total data" -#~ msgstr "Dati totali" - -#~ msgid "Event Database cleanup" -#~ msgstr "Pulizia del database degli Eventi" - -#~ msgid "Database Audit purge" -#~ msgstr "Pulzia del Database delle vefiche" - -#~ msgid "Data from agent " -#~ msgstr "Dati dall'agente " - -#~ msgid "Database Information" -#~ msgstr "Informazioni del Database" - -#~ msgid "Modules per agent" -#~ msgstr "Moduli per agente" - -#~ msgid "Packets per agent" -#~ msgstr "Pacchetti per agente" - -#~ msgid "Pandora Setup" -#~ msgstr "Impostazioni di Pandora" - -#~ msgid "General configuration" -#~ msgstr "Configurazione generale" - -#~ msgid "Link successfully created" -#~ msgstr "Collegamento creato con successo" - -#~ msgid "Link successfully updated" -#~ msgstr "Collegamento aggiornato con successo" - -#~ msgid "Manage profiles" -#~ msgstr "Gestione Profili" - -#~ msgid "DB Maintenance" -#~ msgstr "Manutenzione DataBase" - -#~ msgid "DB Information" -#~ msgstr "Informazioni Database" - -#~ msgid "Assigned modules" -#~ msgstr "Moduli assegnati" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Allarme eliminato con successo" - -#~ msgid "Alert successfully created" -#~ msgstr "Allarme creato con successo" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agente aggiornato con successo" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Si è verificato un problema aggiornando un agente" - -#~ msgid "There was a problem updating module" -#~ msgstr "Si è verificato un problema aggiornando il modulo" - -#~ msgid "There was a problem adding module" -#~ msgstr "Si è verificato un problema aggiungendo il modulo" - -#~ msgid "Alert type" -#~ msgstr "Tipo allarme" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Campo n. 1 (Alias, nome)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Campo n. 2 (Riga singola)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Campo n. 3 (Testo intero)" - -#~ msgid "Data Copy" -#~ msgstr "Copia Dati" - -#~ msgid "No selected agents to copy" -#~ msgstr "Nessun agente da copiare è stato selezionato" - -#~ msgid "Configuration Management" -#~ msgstr "Gestione Configurazione" - -#~ msgid "To Agent(s):" -#~ msgstr "A(gli)ll'Agente(i)" - -#~ msgid "Update agent" -#~ msgstr "Aggiorna agente" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Questo agente non ha moduli" - -#~ msgid "Group management" -#~ msgstr "Gestione gruppo" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profilo eliminato con successo" - -#~ msgid "Profile successfully created" -#~ msgstr "Profilo creato con successo" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profilo aggiornato con successo" - -#~ msgid "Manage Database" -#~ msgstr "Gestione Daabase" - -#~ msgid "Master" -#~ msgstr "Master" - -#~ msgid "Pandora users" -#~ msgstr "Utenti di Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Statistiche di attività utente" - -#~ msgid "Validated event" -#~ msgstr "Evento convalidato" - -#~ msgid "View users" -#~ msgstr "Visualizza Utenti" - -#~ msgid "Pandora Agents" -#~ msgstr "Agenti di Pandora" - -#~ msgid "Agent general information" -#~ msgstr "Informazioni generali Agente" - -#~ msgid "Database export results" -#~ msgstr "Risultati dell'esportazione del database" - -#~ msgid " from " -#~ msgstr " da " - -#~ msgid " to " -#~ msgstr " a " - -#~ msgid "No module has been selected" -#~ msgstr "Nessun modulo selezionato" - -#~ msgid "Begin date (*)" -#~ msgstr "Data di inizio (*)" - -#~ msgid "End date (*)" -#~ msgstr "Data di fine (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Formato CSV" - -#~ msgid "Full list of Monitors" -#~ msgstr "Lista completa dei Monitoraggi" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Modifica lo stato da Verde a Rosso" - -#~ msgid "At least one monitor fails" -#~ msgstr "Fallito almeno un monitoraggio" - -#~ msgid "Agent without monitors" -#~ msgstr "Agente senza monitoraggi" - -#~ msgid "Agent down" -#~ msgstr "Agente non attivo" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Non ci sono agenti inclusi in questo gruppo" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Visualizza gli ultimi moduli di dati ricevuti dall'agente" - -#~ msgid "int" -#~ msgstr "itv." - -#~ msgid "Raw Data" -#~ msgstr "Dati Grezzi" - -#~ msgid "Times Fired" -#~ msgstr "Numero di esecuzioni" - -#~ msgid "Configuration detail" -#~ msgstr "Dettaglio configurazione" - -#~ msgid "Authentication Error" -#~ msgstr "Errore di Autenticazione" - -#~ msgid "Logged Out" -#~ msgstr "Disconnesso" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Questo è il Sistema di Gestione Web di Pandora. Da qui puoi gestire i suoi " -#~ "agenti, allarmi ed avvenimenti.La sessione verrà aperta mentre esiste " -#~ "attività." - -#~ msgid "You don't have access" -#~ msgstr "Non hai accesso" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Non hai i permessi sufficienti per accedere a questa risorsa" - -#~ msgid "Global health" -#~ msgstr "Salute globale" - -#~ msgid "Autorefresh" -#~ msgstr "Autoaggiornamento" - -#~ msgid "Your system is up-to-date" -#~ msgstr "Il sistema è aggiornato" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Il file Keyken non è eseguibile" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Il file Keygen non esiste" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "C'è un nuovo aggiornamento per Pandora" - -#~ msgid "Your system version number is" -#~ msgstr "Il numero della versione del sistema è" - -#~ msgid "Overwrite local changes" -#~ msgstr "Sovrascrivere i cambiamenti locali" - -#~ msgid "Update server port" -#~ msgstr "Aggiorna la porta del server" - -#~ msgid "Update server path" -#~ msgstr "Aggiorna il percorso del server" - -#~ msgid "Keygen path" -#~ msgstr "Percorso del Keygen" - -#~ msgid "Update manager settings" -#~ msgstr "Aggiorna gestione impostazioni" - -#~ msgid "More info" -#~ msgstr "Più informazioni" - -#~ msgid "Two Months" -#~ msgstr "Due mesi" - -#~ msgid "Six Months" -#~ msgstr "Sei mesi" - -#~ msgid "4 days" -#~ msgstr "4 giorni" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "C'è un problema con la creazione del SLA" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA è stato creato con successo" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "C'è stato un problema alla cancellazione SLA" - -#~ msgid "Module is not set" -#~ msgstr "Il modulo non è impostato" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA è stato cancellato con successo" - -#~ msgid "Older" -#~ msgstr "Più vecchi" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Sistema di aiuto di Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Console Web to di Pandora FMS" - -#~ msgid "General information" -#~ msgstr "Informazioni generali" - -#~ msgid "Server authorization rejected" -#~ msgstr "Il server ha rifiutato l'autenticazione" - -#~ msgid "Server connection failed" -#~ msgstr "Connessione al server fallita" - -#~ msgid "Development" -#~ msgstr "Sviluppo" - -#~ msgid "Id" -#~ msgstr "Identificativo" - -#~ msgid "Settings" -#~ msgstr "Impostazioni" - -#~ msgid "Testing" -#~ msgstr "Testing" - -#~ msgid "Map builder" -#~ msgstr "Costruttore mappa" - -#~ msgid "Update layout failed" -#~ msgstr "Aggiornamento layout fallito" - -#~ msgid "preview" -#~ msgstr "anteprima" - -#~ msgid "Label color" -#~ msgstr "Colore Etichetta" - -#~ msgid "Last Month" -#~ msgstr "Ultimo mese" - -#~ msgid "3 hours" -#~ msgstr "3 ore" - -#~ msgid "Redraw" -#~ msgstr "Ridisegna" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Si è verificato un problema caricando l'allarme" - -#~ msgid "Your IP" -#~ msgstr "Tuo indirizzo IP" - -#~ msgid "No news articles at this moment" -#~ msgstr "Non ci sono nuove notizie al momento" - -#~ msgid "You are" -#~ msgstr "Tu sei" - -#~ msgid "hour" -#~ msgstr "ora" - -#~ msgid "minute" -#~ msgstr "minuto" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Il gestore di aggiornamenti e una delle caratteristiche più avanzate di " -#~ "Pandora FMS 2.0 Enterprise, per maggiori informazioni visita http://pandorafms.com." - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Il gestore di aggiornamenti invia informaioni anonime sull'utilizzo di " -#~ "Pandora FMS (numero di agents e moduli in esecuzione). Per disabilitare " -#~ "questa funzione, eliminare l'estensione o rimuovere l'indirizzo del server " -#~ "dalle impostazioni del Gestore Aggiornamenti." - -#~ msgid "Update manager settings updated" -#~ msgstr "Impostazioni di Gestore Aggiornamenti aggiornate" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "C'è un nuovo aggiornamento per Pandora FMS" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Trascina un elemento qui per vedere le proprietà" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Trascina un elemento qui per cancellarlo dalla mappa" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "C'è stato un problema creando la segnalazione" - -#~ msgid "Reporting successfully created" -#~ msgstr "Segnalazione creata con successo" - -#~ msgid "Up" -#~ msgstr "Su" - -#~ msgid "Network Server" -#~ msgstr "Server di rete" - -#~ msgid "Transfer Mode" -#~ msgstr "Modalità di trafserimento" - -#~ msgid "Network profile" -#~ msgstr "Profilo di rete" - -#~ msgid "week" -#~ msgstr "settimana" - -#~ msgid "day" -#~ msgstr "giorno" - -#~ msgid "month" -#~ msgstr "mese" - -#~ msgid "Transfer mode" -#~ msgstr "Modalità di trasferimento" - -#~ msgid "User option" -#~ msgstr "Opzioni utente" - -#~ msgid "Password option" -#~ msgstr "Opzioni password" - -#~ msgid "IP address option" -#~ msgstr "Opzioni indirizzo IP" - -#~ msgid "Port option" -#~ msgstr "Opzioni porta" - -#~ msgid "Custom Value" -#~ msgstr "Valore personalizzato" - -#~ msgid "Manage User Rights" -#~ msgstr "Gestire i diritti degli utenti" - -#~ msgid "Database Management" -#~ msgstr "Gestione Database" - -#~ msgid "Factor" -#~ msgstr "Fattore" - -#~ msgid "Extra options" -#~ msgstr "Opzioni extra" - -#~ msgid "Duplicate config" -#~ msgstr "Duplica configurazione" - -#~ msgid "Manage modules" -#~ msgstr "Gestisci moduli" - -#~ msgid "Read Incidents" -#~ msgstr "Leggi incidenti" - -#~ msgid "Create Incidents" -#~ msgstr "Crea incidenti" - -#~ msgid "Manage Incidents" -#~ msgstr "Gestisci incidenti" - -#~ msgid "Manage Agents" -#~ msgstr "Gestisci agenti" - -#~ msgid "Module deleted successfully" -#~ msgstr "Modulo eliminato con successo" - -#~ msgid "Available templates" -#~ msgstr "Modelli disponibili" - -#~ msgid "Available Agents" -#~ msgstr "Agenti disponibili" - -#~ msgid "First name" -#~ msgstr "Nome" - -#~ msgid "Last name" -#~ msgstr "Cognome" - -#~ msgid "Group name" -#~ msgstr "Nome del Gruppo" - -#~ msgid "Field 1" -#~ msgstr "Campo 1" - -#~ msgid "Field 2" -#~ msgstr "Campo 2" - -#~ msgid "Field 3" -#~ msgstr "Campo 3" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "Load" -#~ msgstr "Carica" - -#~ msgid "Free text" -#~ msgstr "Testo libero" - -#~ msgid "from" -#~ msgstr "da" - -#~ msgid "Download file" -#~ msgstr "Scarica file" - -#~ msgid "System Events" -#~ msgstr "Eventi di sistema" - -#~ msgid "Modules critical" -#~ msgstr "Moduli critici" - -#~ msgid "Modules warning" -#~ msgstr "Moduli di avvertimento" - -#~ msgid "Modules normal" -#~ msgstr "Moduli normali" - -#~ msgid "Alerts defined" -#~ msgstr "Allarmi definiti" - -#~ msgid "Binary input path" -#~ msgstr "Percorso di ingresso binario" - -#~ msgid "Map element trash" -#~ msgstr "Cestino elementi mappa" - -#~ msgid "Custom graph store" -#~ msgstr "Grafico personalizzato memorizzato" - -#~ msgid "SLAs defined" -#~ msgstr "SLA definiti" - -#~ msgid "Add item to report" -#~ msgstr "Aggiungi oggetto al rapporto" - -#~ msgid "Custom graph name" -#~ msgstr "Nome del grafico personalizzato" - -#~ msgid "Data Server" -#~ msgstr "Server dati" - -#~ msgid "MD5 Check" -#~ msgstr "Controllo MD5" - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Attività di ricognizione cancellata con successo" - -#~ msgid "Target directory" -#~ msgstr "Cartella di destinazione" - -#~ msgid "Manage SNMP console" -#~ msgstr "Gestisci console SNMP" - -#~ msgid "Manage plugins" -#~ msgstr "Gestisci plugin" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Periodo SLA (secondi)" - -#~ msgid "Automatic update check" -#~ msgstr "Controllo automatico degli aggiornamenti" - -#~ msgid "Modules successfully added " -#~ msgstr "Moduli aggiunti con successo " - -#~ msgid "Timestamp from" -#~ msgstr "Timestamp da" - -#~ msgid "Plugin parameters" -#~ msgstr "Parametri plugin" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Module assignment" -#~ msgstr "Assegnazione modulo" - -#~ msgid "Database sanity tool" -#~ msgstr "Strumento di disinfezione del database" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Controllo tabella tagente_estado" - -#~ msgid "Checking database consistency" -#~ msgstr "Controlla consistenza del database" - -#~ msgid "Deleting non-init data" -#~ msgstr "Cancella i dati non inizializzati" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Cancella i moduli non inizializzati adesso" - -#~ msgid "Data older than" -#~ msgstr "Dati più vecchi di" - -#~ msgid "Deleting records for module" -#~ msgstr "Eliminazione di record per modulo" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Attiva allarme quando il valore corrisponde a " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Attiva allarme quando il valore non corrisponde a " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "Attiva allarme quando il valore è " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Attiva allarme quando il valore non è " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Attiva allarme quando il valore è compreso tra " -#~ "e " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Attiva allarme quando il valore non è compreso tra e " - -#~ msgid "Assigned actions" -#~ msgstr "Azioni assegnate" - -#~ msgid "Assigned to" -#~ msgstr "Assegnato a" - -#~ msgid "Operator" -#~ msgstr "Operatore" - -#~ msgid "Add condition" -#~ msgstr "Aggiungi condizione" - -#~ msgid "No name was given" -#~ msgstr "Nessun nome assegnato" - -#~ msgid "No agent was given" -#~ msgstr "Nessun agente assegnato" - -#~ msgid "Sumatory" -#~ msgstr "Somma" - -#~ msgid "Wrong module type" -#~ msgstr "Tipo di modulo errato" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "Agents in group" -#~ msgstr "Agenti nel gruppo" - -#~ msgid "No layouts found" -#~ msgstr "Nessun layout trovato" - -#~ msgid "Search value" -#~ msgstr "Cerca valore" - -#~ msgid "No simple alerts found" -#~ msgstr "Nessun allarme semplice trovato" - -#~ msgid "Uninitialized modules" -#~ msgstr "Moduli non inizializzati" - -#~ msgid "Only pending" -#~ msgstr "Solo in attesa" - -#~ msgid "Update layout successful" -#~ msgstr "Configurazione aggiornata con successo" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Il nuovo Gestore " -#~ "Aggiornamenti è stato inserito in Pandora FMS 2.0. Questo aiuta gli " -#~ "amministratori di sistema ad aggiornare Pandora FMS automaticamente, poichè " -#~ "il Gestore Aggiornamenti ha il compito di trovare nuovi moduli, nuovi plugin " -#~ "e nuove caratteristiche (anche strumenti per la completa migrazione alle " -#~ "versioni future) automaticamente." - -#~ msgid "Update server host" -#~ msgstr "Aggiorna il server ospite" - -#~ msgid "Users defined" -#~ msgstr "Definiti dagli utenti" - -#~ msgid "Store" -#~ msgstr "Memorizza" - -#~ msgid "Map element editor" -#~ msgstr "Visualizzatore degli elementi della mappa" - -#~ msgid "Last hour" -#~ msgstr "Ultima ora" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Ultimi %s giorni" - -#~ msgid "Image range (px)" -#~ msgstr "Gamma immagine (pixel)" - -#~ msgid "Image size (px)" -#~ msgstr "Dimensione immagine (pixel)" - -#~ msgid "Alert Overview" -#~ msgstr "Panoramica degli avvisi" - -#~ msgid "Monitors critical" -#~ msgstr "Monitor critici" - -#~ msgid "No layout with this id found" -#~ msgstr "Nessun layout trovato per questo id" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitor sconosciuti" - -#~ msgid "Graphs management" -#~ msgstr "Gestione grafici" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Nessun agente selezionato, per favore selezionare yn agente" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compattare CSS e JS nell'intestazione" - -#~ msgid "Visual configuration" -#~ msgstr "Configurazione visuale" - -#~ msgid "Flash charts" -#~ msgstr "Grafici in flash" - -#~ msgid "Deleting file" -#~ msgstr "Eliminazione file" - -#~ msgid "Deleting" -#~ msgstr "Eliminazione" - -#~ msgid "Upload file" -#~ msgstr "Carica file" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Questo utente ha il permesso di gestire tutto. E' un amministratore e può " -#~ "sovrascrivere tutti i permessi profili/gruppi" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Lo strumento Pandora FMS Sanity è utilizzato per rimuovere strutture di dati " -#~ "errate dal database, moduli creati con lo stato mancante, o moduli che non " -#~ "possono essere inizializzati (e non contengono nessun dato valido) ma " -#~ "tentano nel proprio intervallo di ottenere dati. Questo tipo di moduli " -#~ "errati può ridurre le prestazioni di Pandora FMS. Inoltre è utilizzato nel " -#~ "pandora_db.pl che dovrebbe essere eseguito ogni giorno o settimana. " -#~ "Infine c'è da specificare che Pandora FMS Sanity NON compatta il database, " -#~ "ma cancella solo le strutture di dati errate." - -#~ msgid "Press here to get database information as text" -#~ msgstr "Premi qui per ottenere le informazioni sul database in formato testo" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Premi qui per ottenere le informazioni sul database in grafico" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "Attiva l'allarme quando il valore è al di sopra di" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "Attiva allarme quando il valore è al di sotto di" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "matches of the alert" -#~ msgstr "Corrispondenze degli allarmi" - -#~ msgid "Correlated alerts" -#~ msgstr "Allarmi correlati" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configura allarme correlato" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "C'è stato un errore nell'eliminazione dell'allarme, l'operazione è stata " -#~ "cancellata" - -#~ msgid "Configuration management" -#~ msgstr "Gestione della configurazione" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "C'è stato un errore nell'eliminazione dell'agente, l'operazione è stata " -#~ "cancellata" - -#~ msgid "Delete alerts" -#~ msgstr "Elimina allarmi" - -#~ msgid "Delete modules" -#~ msgstr "Elimina moduli" - -#~ msgid "Delete agents" -#~ msgstr "Elimina agenti" - -#~ msgid "Edit modules" -#~ msgstr "Modifica moduli" - -#~ msgid "Plugin component" -#~ msgstr "Componenti plugin" - -#~ msgid "Network component" -#~ msgstr "Componenti di rete" - -#~ msgid "WMI component management" -#~ msgstr "Gestione dei componenti WMI" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d ora" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d ore" - -#~ msgid "MD5 check" -#~ msgstr "Controllo MD5" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d settimana" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d giorni" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d giorno" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d settimane" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mese" - -#~ msgid "Select an element to delete:" -#~ msgstr "Selezionare un elemento da eliminare" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "La corrente cartella non è scrivibile attraverso un server HTTP" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Cartella %s creata" - -#~ msgid "Sanitize my database now" -#~ msgstr "Testare la base di dati ora" - -#~ msgid "No conditions were given" -#~ msgstr "Nessuna condizione fornita" - -#~ msgid "Could not delete agent" -#~ msgstr "Non si è potuto cancellare l'agente" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Monitor keepalive dell'agente" - -#~ msgid " seconds." -#~ msgstr " secondi" - -#~ msgid "Could not delete modules" -#~ msgstr "Non si sono potuti eliminare i moduli" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Form di disconnessione pprogrammato" - -#~ msgid "Timestamp to" -#~ msgstr "Timestamp fino" - -#~ msgid "Replicate configuration" -#~ msgstr "Replicare la configurazione" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Creando una copia del file di configurazione di" - -#~ msgid "Remote configuration management" -#~ msgstr "Gestione di configurazione remota" - -#~ msgid "Correlation" -#~ msgstr "Correlazione" - -#~ msgid "Source group" -#~ msgstr "Gruppo origine" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Disconnessione pianificata presente nel sistema" - -#~ msgid "Export targets" -#~ msgstr "Server d'esportazione" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Read agent information" -#~ msgstr "Leggere le configurazioni degli agenti" - -#~ msgid "Manage user rights" -#~ msgstr "Gestione utenti" - -#~ msgid "Pandora system management" -#~ msgstr "Gestione Panfora FMS" - -#~ msgid "Successfully updated export target" -#~ msgstr "Server d'esportazione aggiornato con successo" - -#~ msgid "Error deleting export target" -#~ msgstr "Errore durante l'eliminazione del server d'esportazione" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Server d'esportazione eliminato con successo" - -#~ msgid "Error updating export target" -#~ msgstr "Errore durante l'aggiornamento del server d'esportazione" - -#~ msgid "Error creating export target" -#~ msgstr "Errore durante la creazione del server d'esportazione" - -#~ msgid "Successfully created export target" -#~ msgstr "Server d'esportazione creato con successo" - -#~ msgid "There are no export targets configured" -#~ msgstr "Non c'è nessun server d'esportazione configurato" - -#~ msgid "Preffix" -#~ msgstr "Prefisso" - -#~ msgid "Alert report" -#~ msgstr "Informazioni sugli allarmi" - -#~ msgid "Event report" -#~ msgstr "Informazioni sugli eventi" - -#~ msgid "Agents detailed view" -#~ msgstr "Vista dettagliata degli agenti" - -#~ msgid "Agents detailed event" -#~ msgstr "Eventi dettagliati degli agenti" - -#~ msgid "Event not validate" -#~ msgstr "Evento non convalidato" - -#~ msgid "Event validate" -#~ msgstr "Evento convalidato" - -#~ msgid "SNMP server" -#~ msgstr "Server SNMP" - -#~ msgid "General group report" -#~ msgstr "Resoconto generale del gruppo" - -#~ msgid "Unmanaged error" -#~ msgstr "Errore non gestibile" - -#~ msgid "Agent detailed event" -#~ msgstr "Evento dettagliato dell'agente" - -#~ msgid "Monitor up" -#~ msgstr "Monitor in funzione" - -#~ msgid "Monitor down" -#~ msgstr "Monitor non funzionante" - -#~ msgid "Software agent data" -#~ msgstr "Dati dell'agente software" - -#~ msgid "Software agent monitor" -#~ msgstr "Monito dell'agente software" - -#~ msgid "Network agent data" -#~ msgstr "Dati dell'agente di rete" - -#~ msgid "Network agent monitor" -#~ msgstr "Monitor dell'agente di rete" - -#~ msgid "Oper" -#~ msgstr "Operatore" - -#~ msgid "MinMax.Al" -#~ msgstr "Allarme Min/Max" - -#~ msgid "The colours meaning:" -#~ msgstr "Significato dei colori:" - -#~ msgid "Code / binary directory" -#~ msgstr "Cartella di codice / binario" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Updarte Manager è una delle caratteristiche più avanzate della versione 3.0 " -#~ "di Pandora FMS Enterprise, per ottenere più informazioni, visitare http://pandorafms.com ." - -#~ msgid "Go to alert overview" -#~ msgstr "Vai alla vista generale degli allarmi" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "Event not validated" -#~ msgstr "Evento non validato" - -#~ msgid "-Select user-" -#~ msgstr "-Selezionare utente-" - -#~ msgid "Read message" -#~ msgstr "Leggere messaggio" - -#~ msgid "-Select group-" -#~ msgstr "-Selezionare gruppo-" - -#~ msgid "Pandora agents" -#~ msgstr "Agenti di Pandora" - -#~ msgid "Events generated -by module-" -#~ msgstr "Eventi generati (dal modulo)" - -#~ msgid "Invalid method supplied" -#~ msgstr "Metodo fornito non valido" - -#~ msgid "None agent in this category" -#~ msgstr "Nessun agente in questa categoria" - -#~ msgid "Monitors not init" -#~ msgstr "Monitor non inizializzati" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Nessun server configurato nel database" - -#~ msgid "Module Up" -#~ msgstr "Modulo attivo" - -#~ msgid "Alerts disabled" -#~ msgstr "Allarmi disattivati" - -#~ msgid "SLA view" -#~ msgstr "Vista SLA" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "SLA automatico per i monitor" - -#~ msgid "User-defined SLA items" -#~ msgstr "Elementi SLA definiti dall'utente" - -#~ msgid "Single alerts" -#~ msgstr "Allarmi semplici" - -#~ msgid "Compound alerts" -#~ msgstr "Allarmi composti" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Questo agente non ha nessun monitor attivo" - -#~ msgid "secs." -#~ msgstr "secs." - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Questo server non ha nessuna attività di ricognizione assegnata" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Moduli ritardati / Max. ritardo (sec)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "" -#~ "Moduli in esecuzione in questo server / Totale dei moduli di questo tipo" - -#~ msgid "Monitors normal" -#~ msgstr "Monitor in stato normale" - -#~ msgid "Monitors warning" -#~ msgstr "Monitor nello stato di avvertimento" - -#~ msgid "Custom reporting builder" -#~ msgstr "Creatore di resoconti personalizzato" - -#~ msgid "SLA report construction" -#~ msgstr "Creatore di resoconti SLA" - -#~ msgid "Reporting type" -#~ msgstr "Tipo di resoconto" - -#~ msgid "Combined image render" -#~ msgstr "Visualizzazione di immagini combinate" - -#~ msgid "Render now" -#~ msgstr "Vedere ora" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "La lista degli IP deve essere separata con il tasto Invio" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Verificare che il server HTTP abbia i permessi per scrivere la cartella" - -#~ msgid "Error adding module" -#~ msgstr "Errore nell'inserimento del modulo" - -#~ msgid "Could not delete alerts" -#~ msgstr "Non si sono potuti eliminare gli allarmi" - -#~ msgid "Report builder" -#~ msgstr "Creatore di resoconti" - -#~ msgid "Event graph by group" -#~ msgstr "Grafico degli eventi per gruppo" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Per favore, scegliere un immagine o scrivere un nome per l'elemento" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Scrivere almeno due caratteri per la ricerca" - -#~ msgid "Graph builder module list" -#~ msgstr "Lista dei moduli del costruttore grafico" - -#~ 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
P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Questa estensione rende la registrazione dei server plugin più facile. Si " -#~ "possono caricare i server plugin di Pandora FMS 3.x in formato compresso " -#~ "(.Pspz). Per favore, consultare la documentazione per vedere come ottenere e " -#~ "usare i server plugin di Pandora FMS.

Si possono ottenere più " -#~ "plugin nella nostra " -#~ "Biblioteca pubblica." - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Il nuovo client dell' " -#~ "Update Manager viene fornito con Pandora FMS 3.0. Aiuta gli " -#~ "amministratori di sistema nell'aggiornamento del loro Pandora FMS " -#~ "automaticamente, dall'amministratore degli aggiornamenti può ottenere nuovi " -#~ "moduli, plugin e nuove caratteristiche (incluso realizzare una migrazione a " -#~ "future versioni) in forma automatica." - -#~ msgid "Agents down" -#~ msgstr "Agenti caduti" - -#~ msgid "Flag" -#~ msgstr "Flag" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Nessun modulo nel quale valutare S.L.A" - -#~ msgid "Module Down" -#~ msgstr "Modulo caduto" - -#~ msgid "From the last" -#~ msgstr "Dall'ultimo" - -#~ msgid "Visual map wizard" -#~ msgstr "Assistente mappa visuale" - -#~ msgid "attach_error" -#~ msgstr "errore_allegato" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Attività di eliminazione lanciata per l'agente" - -#~ msgid "Massive agent deletion" -#~ msgstr "Cancellazione di massa degli agenti" - -#~ msgid "Module component management" -#~ msgstr "Gestione componenti dei moduli" - -#~ msgid "No items defined" -#~ msgstr "Nessun oggetto definito" - -#~ msgid "Local modules rate" -#~ msgstr "Percentuale dei moduli locali" - -#~ msgid "Remote modules rate" -#~ msgstr "Percentuale dei moduli remoti" - -#~ msgid "Decrease Weight" -#~ msgstr "Diminuisci Peso" - -#~ msgid "Increase Weight" -#~ msgstr "Aumenta Peso" - -#~ msgid "Read incidents" -#~ msgstr "Leggi incidenti" - -#~ msgid "Modules groups" -#~ msgstr "Gruppi di moduli" diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 66849213a92658dc44e3f7bc4471adf9c6b3fc56..fc1c4bff943fef733525d5d6e805348c10571b1f 100644 GIT binary patch delta 84256 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 delta 78784 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 p@32Si;Ss$>Ke+D%db50UuXTF|{C0\n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 @@ -840,7 +840,7 @@ msgstr "このエージェントには GIS データがありません。その msgid "" "When you change the Agent position, the agent automatically activates the " "'Ignore new GIS data' option" -msgstr "" +msgstr "エージェントの位置を変更すると、エージェントは '新たなGISデータを無視する' オプションを自動的に有効化します。" #: ../../godmode/agentes/agent_conf_gis.php:60 msgid "Agent position" @@ -4373,7 +4373,7 @@ msgstr "フィルタ名" #: ../../godmode/events/event_edit_filter.php:185 msgid "Save in group" -msgstr "" +msgstr "保存グループ" #: ../../godmode/events/event_edit_filter.php:185 msgid "" @@ -5640,7 +5640,7 @@ msgstr "終了した計画停止の作成は SLA レポートに影響します" #: ../../godmode/setup/setup_general.php:262 #: ../../include/functions_config.php:190 msgid "Limit parameters massive" -msgstr "" +msgstr "一括操作制限" #: ../../godmode/setup/setup_general.php:263 #, php-format @@ -6103,7 +6103,7 @@ msgstr "カスタムグラフのデフォルトの線の太さ" #: ../../godmode/setup/setup_visuals.php:498 #: ../../include/functions_config.php:465 msgid "Render data of module type is proc." -msgstr "" +msgstr "procタイプのモジュールデータをレンダリングする" #: ../../godmode/setup/setup_visuals.php:690 msgid "Logo preview" @@ -6119,7 +6119,7 @@ msgstr "GISアイコンのプレビュー" #: ../../godmode/setup/setup_visuals.php:829 msgid "Status set preview" -msgstr "" +msgstr "状態表示プレビュー" #: ../../godmode/setup/os.builder.php:33 #: ../../godmode/reporting/visual_console_builder.data.php:98 @@ -8129,7 +8129,7 @@ msgstr "コンポーネント" #: ../../godmode/modules/manage_network_components_form_network.php:47 msgid "SNMP Enterprise String" -msgstr "" +msgstr "SNMP Enterprise 文字列" #: ../../godmode/modules/manage_nc_groups.php:40 msgid "Component group management" @@ -8791,7 +8791,7 @@ msgstr "アラートテンプレート" msgid "" "Unsucessful sending the data, please contact with your administrator or make " "with less elements." -msgstr "" +msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。" #: ../../godmode/massive/massive_enable_disable_alerts.php:153 msgid "Enabled alerts" @@ -10004,7 +10004,7 @@ msgstr "グラフ表示" #: ../../godmode/reporting/reporting_builder.item_editor.php:1114 msgid "Show address instead module name." -msgstr "" +msgstr "モジュール名の代わりにアドレスを表示" #: ../../godmode/reporting/reporting_builder.item_editor.php:1115 msgid "Show the main address of agent." @@ -10712,7 +10712,7 @@ msgstr "単一値" #: ../../godmode/snmpconsole/snmp_alert.php:732 #: ../../godmode/snmpconsole/snmp_alert.php:740 msgid "Variable bindings/Data" -msgstr "" +msgstr "変数バインディング/データ" #: ../../godmode/snmpconsole/snmp_alert.php:806 msgid "Other value" @@ -10727,7 +10727,7 @@ msgstr "アクション" msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Variable bindings/Datas." -msgstr "" +msgstr "説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データのフィールドで検索します" #: ../../godmode/snmpconsole/snmp_alert.php:889 msgid "Alert SNMP control filter" @@ -12121,7 +12121,7 @@ msgstr "モジュールの一覧" #: ../../operation/agentes/status_monitor.php:1411 #: ../../operation/tree.php:348 msgid "Module: " -msgstr "" +msgstr "モジュール: " #: ../../operation/agentes/estado_monitores.php:428 msgid "Status:" @@ -12594,7 +12594,7 @@ msgstr "放射状の動的表示" #: ../../operation/agentes/networkmap.php:444 msgid "Store group" -msgstr "" +msgstr "保存グループ" #: ../../operation/agentes/networkmap.php:467 msgid "Layout" @@ -12855,7 +12855,7 @@ msgstr "新規フィルタ" #: ../../operation/events/events_list.php:237 msgid "Save in Group" -msgstr "" +msgstr "保存グループ" #: ../../operation/events/events_list.php:256 msgid "Overwrite filter" @@ -13040,7 +13040,7 @@ msgstr "ビジュアルコンソール" #: ../../operation/menu.php:143 msgid "List of visual console" -msgstr "" +msgstr "ビジュアルコンソール一覧" #: ../../operation/menu.php:187 ../../operation/gis_maps/index.php:26 msgid "GIS Maps" @@ -13048,7 +13048,7 @@ msgstr "GIS マップ" #: ../../operation/menu.php:191 msgid "List of Gis maps" -msgstr "" +msgstr "GISマップ一覧" #: ../../operation/menu.php:273 msgid "RSS" @@ -13077,7 +13077,7 @@ msgstr "ウェブチャット" #: ../../operation/menu.php:344 msgid "List of Incidents" -msgstr "" +msgstr "インシデント一覧" #: ../../operation/menu.php:353 ../../operation/messages/message_edit.php:46 #: ../../operation/messages/message_list.php:43 @@ -13086,7 +13086,7 @@ msgstr "メッセージ" #: ../../operation/menu.php:358 msgid "Messages List" -msgstr "" +msgstr "メッセージ一覧" #: ../../operation/menu.php:359 msgid "New message" @@ -13276,7 +13276,7 @@ msgstr "IP アドレス解決" #: ../../operation/netflow/nf_live_view.php:321 msgid "Select a filter" -msgstr "" +msgstr "フィルタを選択" #: ../../operation/netflow/nf_live_view.php:389 #: ../../include/functions_netflow.php:1632 @@ -13301,7 +13301,7 @@ msgstr "現在のフィルタを更新" #: ../../operation/netflow/nf_live_view.php:419 msgid "No filter selected" -msgstr "" +msgstr "フィルタが選択されていません" #: ../../operation/tree.php:80 ../../include/ajax/networkmap.ajax.php:50 msgid "Policies" @@ -13815,7 +13815,7 @@ msgstr "次の日時以前" #: ../../operation/reporting/reporting_viewer.php:244 msgid "Invalid date selected. Initial date must be before end date." -msgstr "" +msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" #: ../../operation/reporting/reporting_viewer.php:352 #: ../../operation/reporting/graph_viewer.php:242 @@ -13962,7 +13962,7 @@ msgstr "トラップタイプによる検索" #: ../../operation/snmpconsole/snmp_view.php:330 msgid "Group by Enterprise String/IP" -msgstr "" +msgstr "Enterprise 文字列/IP ごとのグループ" #: ../../operation/snmpconsole/snmp_view.php:357 #: ../../operation/snmpconsole/snmp_statistics.php:97 @@ -13988,7 +13988,7 @@ msgstr "エージェント概要の参照" #: ../../operation/snmpconsole/snmp_view.php:567 msgid "Variable bindings:" -msgstr "" +msgstr "バインド変数:" #: ../../operation/snmpconsole/snmp_view.php:580 msgid "See more details" @@ -14040,11 +14040,11 @@ msgstr "数" #: ../../operation/snmpconsole/snmp_statistics.php:166 msgid "Traps received by Enterprise String" -msgstr "" +msgstr "Enterprise文字列ごとの受信トラップ" #: ../../operation/snmpconsole/snmp_statistics.php:179 msgid "Trap Enterprise String" -msgstr "" +msgstr "Enterprise文字列トラップ" #: ../../operation/snmpconsole/snmp_mib_uploader.php:66 msgid "" @@ -14687,7 +14687,7 @@ msgstr "コードは空にできません" #: ../../index.php:243 msgid "Expired login" -msgstr "" +msgstr "ログイン期限切れ" #: ../../index.php:251 ../../index.php:257 msgid "Login error" @@ -14911,7 +14911,7 @@ msgstr "ログインへ" #: ../../general/login_page.php:125 msgid "pass" -msgstr "" +msgstr "パスワード" #: ../../general/login_page.php:133 msgid "Logged out" @@ -15190,7 +15190,7 @@ msgstr "プラグインは既に登録されています。中止します。" #: ../../extensions/plugin_registration.php:272 msgid "Plug-in Remote Registered unsuccessfull" -msgstr "" +msgstr "プラグインのリモート登録に失敗しました" #: ../../extensions/plugin_registration.php:274 msgid "Please check the syntax of file \"plugin_definition.ini\"" @@ -16220,7 +16220,7 @@ msgstr "SLA が定義されていません。" msgid "" "This item is affected by a malformed planned downtime. Go to the planned " "downtimes section to solve this." -msgstr "" +msgstr "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだいさい。" #: ../../include/functions_reporting.php:882 msgid "Top N" @@ -16298,7 +16298,7 @@ msgstr "変更が見つかりません。" #: ../../include/functions_reporting.php:1550 msgid "Agent/Modules" -msgstr "" +msgstr "エージェント/モジュール" #: ../../include/functions_reporting.php:1649 #: ../../include/functions_reports.php:574 @@ -16349,41 +16349,41 @@ msgstr "例外 - モジュールが障害または警告状態" #: ../../include/functions_reporting.php:1881 msgid "There are no Modules under those conditions." -msgstr "" +msgstr "これらの条件のモジュールはありません。" #: ../../include/functions_reporting.php:1884 #, php-format msgid "There are no Modules over or equal to %s." -msgstr "" +msgstr "%s 以上のモジュールがありません。" #: ../../include/functions_reporting.php:1887 #, php-format msgid "There are no Modules less or equal to %s." -msgstr "" +msgstr "%s 以下のモジュールがありません。" #: ../../include/functions_reporting.php:1890 #, php-format msgid "There are no Modules less %s." -msgstr "" +msgstr "%s 未満のモジュールがありません。" #: ../../include/functions_reporting.php:1893 #, php-format msgid "There are no Modules over %s." -msgstr "" +msgstr "%s を超えるモジュールがありません。" #: ../../include/functions_reporting.php:1896 #, php-format msgid "There are no Modules equal to %s" -msgstr "" +msgstr "%s と同じモジュールがありません。" #: ../../include/functions_reporting.php:1899 #, php-format msgid "There are no Modules not equal to %s" -msgstr "" +msgstr "%s と異なるモジュールがありません。" #: ../../include/functions_reporting.php:1902 msgid "There are no Modules normal status" -msgstr "" +msgstr "正常状態のモジュールがありません" #: ../../include/functions_reporting.php:1905 msgid "There are no Modules at critial or warning status" @@ -16408,7 +16408,7 @@ msgstr "グループ設定" #: ../../include/functions_reporting.php:2400 msgid "Network interfaces report" -msgstr "" +msgstr "ネットワークインタフェースレポート" #: ../../include/functions_reporting.php:2419 msgid "" @@ -16417,7 +16417,7 @@ msgstr "グループにエージェントが無いか、ネットワークイン #: ../../include/functions_reporting.php:2469 msgid "bytes/s" -msgstr "" +msgstr "バイト/秒" #: ../../include/functions_reporting.php:2498 msgid "Alert Report Group" @@ -16461,11 +16461,11 @@ msgstr "" #: ../../include/functions_reporting.php:2981 msgid "Netflow Statistics" -msgstr "" +msgstr "Netflow 統計" #: ../../include/functions_reporting.php:2984 msgid "Netflow Summary" -msgstr "" +msgstr "Netflow 概要" #: ../../include/functions_reporting.php:3047 #: ../../include/functions_reports.php:501 @@ -16525,11 +16525,13 @@ msgid "" "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " "update." msgstr "" +"不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: *, delete, drop, alter, modify, " +"union, password, pass, insert または update" #: ../../include/functions_reporting.php:3628 #: ../../include/functions_reports.php:588 msgid "Availability" -msgstr "" +msgstr "可用性" #: ../../include/functions_reporting.php:3689 msgid "No Address" @@ -16760,7 +16762,7 @@ msgstr "不明エージェント数 %d" #: ../../include/functions_reporting.php:6135 #, php-format msgid "%d not init agents" -msgstr "" +msgstr "%d 未初期化エージェント" #: ../../include/functions_reporting.php:7652 msgid "Total running modules" @@ -17643,7 +17645,7 @@ msgstr "マップ概要" #: ../../include/ajax/double_auth.ajax.php:146 msgid "" "This is the private code that you should use with your authenticator app" -msgstr "" +msgstr "これは、認証アプリケーションで利用するプライベートコードです" #: ../../include/ajax/double_auth.ajax.php:147 #: ../../include/ajax/double_auth.ajax.php:283 @@ -17659,7 +17661,7 @@ msgstr "コード" #: ../../include/ajax/double_auth.ajax.php:153 #: ../../include/ajax/double_auth.ajax.php:289 msgid "QR" -msgstr "" +msgstr "QR" #: ../../include/ajax/double_auth.ajax.php:189 msgid "You are about to activate the double authentication" @@ -17694,7 +17696,7 @@ msgstr "アプリケーションをインストールしましたか。" #: ../../include/ajax/double_auth.ajax.php:277 msgid "A private code has been generated" -msgstr "" +msgstr "プライベートコードを生成しました" #: ../../include/ajax/double_auth.ajax.php:282 msgid "" @@ -17707,11 +17709,11 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:358 msgid "Are you introduced the code in the authenticator app yet?" -msgstr "" +msgstr "認証アプリケーションにコードを入力しましたか。" #: ../../include/ajax/double_auth.ajax.php:420 msgid "Introduce a code generated by the app" -msgstr "" +msgstr "アプリケーションにより生成されたコードを入力してください" #: ../../include/ajax/double_auth.ajax.php:421 msgid "If the code is valid, the double authentication will be activated" @@ -19973,7 +19975,7 @@ msgstr "この設定を変更したあとは、サーバを再起動する必要 msgid "" "Event storm protection is activated. No events will be generated during this " "mode." -msgstr "" +msgstr "イベントストーム保護が有効です。このモードではイベントが生成されません。" #: ../../include/functions_config.php:1445 msgid "" @@ -19999,6 +20001,9 @@ msgid "" "href=\"index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=on" "line\"> go to Administration:Setup:Update Manager for more details." msgstr "" +"新たな更新があります。詳細は、管理メニューのアップデートマネージャを参照してください。" #: ../../include/functions_config.php:1462 msgid "New update of Pandora Console" @@ -20071,7 +20076,7 @@ msgstr "" #: ../../include/functions_config.php:1511 msgid "Problems with disable functions in PHP.INI" -msgstr "" +msgstr "PHP.INI で無効化された機能の問題" #: ../../include/functions_custom_graphs.php:205 msgid "Empty graph" @@ -20172,7 +20177,7 @@ msgstr "重要度で分類したイベント" #: ../../include/functions_reporting_html.php:594 msgid "Events validated vs unvalidated" -msgstr "" +msgstr "承諾済と未承諾イベント" #: ../../include/functions_reporting_html.php:696 msgid "Added" @@ -20245,27 +20250,27 @@ msgstr "" #: ../../include/functions_reporting_html.php:1625 msgid "# Checks" -msgstr "" +msgstr "確認数" #: ../../include/functions_reporting_html.php:1626 msgid "# Failed" -msgstr "" +msgstr "失敗数" #: ../../include/functions_reporting_html.php:1627 msgid "% Fail" -msgstr "" +msgstr "失敗%" #: ../../include/functions_reporting_html.php:1628 msgid "Poling time" -msgstr "" +msgstr "ポーリング時間" #: ../../include/functions_reporting_html.php:1629 msgid "Time unavailable" -msgstr "" +msgstr "利用不能時間" #: ../../include/functions_reporting_html.php:1630 msgid "% Ok" -msgstr "" +msgstr "正常%" #: ../../include/functions_reporting_html.php:1976 msgid "Alert description" @@ -20310,24 +20315,24 @@ msgstr "N/A(*)" #: ../../include/functions_reporting_html.php:2570 msgid "Agents critical" -msgstr "" +msgstr "障害状態エージェント" #: ../../include/functions_reporting_html.php:2573 msgid "Agents warning" -msgstr "" +msgstr "警告状態エージェント" #: ../../include/functions_reporting_html.php:2579 msgid "Agents ok" -msgstr "" +msgstr "正常状態エージェント" #: ../../include/functions_reporting_html.php:2588 msgid "Agents not init" -msgstr "" +msgstr "未初期化エージェント" #: ../../include/functions_reporting_html.php:2599 #: ../../include/functions_reporting_html.php:2608 msgid "Agents by status" -msgstr "" +msgstr "状態ごとのエージェント" #: ../../include/functions_reporting_html.php:2645 msgid "Nodes" @@ -20341,12 +20346,12 @@ msgstr "ノードの概要" #: ../../include/functions_reporting_html.php:2682 #: ../../include/functions_reporting_html.php:2699 msgid "Warning events" -msgstr "" +msgstr "警告イベント" #: ../../include/functions_reporting_html.php:2686 #: ../../include/functions_reporting_html.php:2703 msgid "OK events" -msgstr "" +msgstr "正常イベント" #: ../../include/functions_reporting_html.php:2690 #: ../../include/functions_reporting_html.php:2707 @@ -20359,7 +20364,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:2756 msgid "Last activity in Pandora FMS console" -msgstr "" +msgstr "Pandora FMS コンソールの最新の操作" #: ../../include/functions_reporting_html.php:2896 msgid "Events info (1hr.)" @@ -20376,5130 +20381,3 @@ msgstr "セキュリティエラー。管理者に連絡してください。" #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "ファイルが存在しません。管理者に連絡してください。" - -#~ msgid "Id" -#~ msgstr "ID" - -#~ msgid "Settings" -#~ msgstr "設定" - -#~ msgid "Development" -#~ msgstr "開発" - -#~ msgid "Last Month" -#~ msgstr "この1ヶ月" - -#~ msgid "Factor" -#~ msgstr "倍率" - -#~ msgid "Store" -#~ msgstr "保存" - -#~ msgid "Up" -#~ msgstr "上" - -#~ msgid "Master" -#~ msgstr "マスタ" - -#~ msgid "hour" -#~ msgstr "時間" - -#~ msgid "day" -#~ msgstr "日" - -#~ msgid "week" -#~ msgstr "週間" - -#~ msgid "month" -#~ msgstr "ヶ月" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "SNMP server" -#~ msgstr "SNNP サーバ" - -#~ msgid "Seconds" -#~ msgstr "秒" - -#~ msgid "from" -#~ msgstr "【アルバム名】" - -#~ msgid " to " -#~ msgstr " から " - -#~ msgid "Info" -#~ msgstr "情報" - -#~ msgid "Autorefresh" -#~ msgstr "自動更新" - -#~ msgid "minute" -#~ msgstr "分" - -#~ msgid "No news articles at this moment" -#~ msgstr "ニュースはありません" - -#~ msgid "Users defined" -#~ msgstr "ユーザアカウント数" - -#~ msgid "Map builder" -#~ msgstr "マップビルダー" - -#~ msgid "Reporting successfully created" -#~ msgstr "レポートを作成しました。" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "レポートの作成に失敗しました。" - -#~ msgid "Type at least two characters to search" -#~ msgstr "2文字以上入力するとマッチするエージェント名が検索されます" - -#~ msgid "Reporting type" -#~ msgstr "レポートタイプ" - -#~ msgid "Label color" -#~ msgstr "ラベルの色" - -#~ msgid "Pandora Setup" -#~ msgstr "Pandoraの設定" - -#~ msgid "Upload file" -#~ msgstr "ファイルのアップロード" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "このユーザは、全ての管理権限を所有します。プロファイルやグループで定義するすべての権限を上書きします。" - -#~ msgid "Group name" -#~ msgstr "グループ名" - -#~ msgid "First name" -#~ msgstr "名" - -#~ msgid "Last name" -#~ msgstr "姓" - -#~ msgid "Press here to get database information as text" -#~ msgstr "DBステータスのテキストでの表示" - -#~ msgid "Assigned modules" -#~ msgstr "割り当てられているモジュール数" - -#~ msgid "Total data" -#~ msgstr "データ数" - -#~ msgid "Operator" -#~ msgstr "オペレータ" - -#~ msgid "Error adding module" -#~ msgstr "モジュールの追加に失敗しました。" - -#~ msgid "Modules successfully added " -#~ msgstr "モジュールを追加しました。 " - -#~ msgid "Configuration management" -#~ msgstr "設定管理" - -#~ msgid "Edit modules" -#~ msgstr "モジュールの編集" - -#~ msgid "Delete agents" -#~ msgstr "エージェント削除" - -#~ msgid "Delete modules" -#~ msgstr "モジュール削除" - -#~ msgid "Delete alerts" -#~ msgstr "アラート削除" - -#~ msgid "Update agent" -#~ msgstr "エージェント更新" - -#~ msgid " seconds." -#~ msgstr " 秒" - -#~ msgid "Timestamp from" -#~ msgstr "開始日時" - -#~ msgid "Timestamp to" -#~ msgstr "終了日時" - -#~ msgid "Planned Downtime Form" -#~ msgstr "計画停止設定フォーム" - -#~ msgid "Data Copy" -#~ msgstr "データコピー" - -#~ msgid "Remote configuration management" -#~ msgstr "リモート設定管理" - -#~ msgid "Replicate configuration" -#~ msgstr "設定の複製" - -#~ msgid "Duplicate config" -#~ msgstr "設定の複製" - -#~ msgid "Manage modules" -#~ msgstr "モジュール管理" - -#~ msgid "Manage SNMP console" -#~ msgstr "SNMP コンソール管理" - -#~ msgid "Report builder" -#~ msgstr "レポートビルダー" - -#~ msgid "Manage profiles" -#~ msgstr "プロファイル管理" - -#~ msgid "Manage plugins" -#~ msgstr "プラグイン管理" - -#~ msgid "Module component management" -#~ msgstr "コンポーネント管理" - -#~ msgid "Manage Database" -#~ msgstr "データベース管理" - -#~ msgid "Read incidents" -#~ msgstr "インシデント参照" - -#~ msgid "Create incidents" -#~ msgstr "インシデント編集" - -#~ msgid "Read agent information" -#~ msgstr "エージェント参照" - -#~ msgid "Manage user rights" -#~ msgstr "ユーザ管理" - -#~ msgid "Pandora system management" -#~ msgstr "Pandora システム管理" - -#~ msgid "IP address option" -#~ msgstr "IPアドレスオプション" - -#~ msgid "Group management" -#~ msgstr "グループ管理" - -#~ msgid "The colours meaning:" -#~ msgstr "色の意味" - -#~ msgid "Testing" -#~ msgstr "テスト" - -#~ msgid "System Events" -#~ msgstr "システムイベント" - -#~ msgid "-Select user-" -#~ msgstr "-ユーザの選択-" - -#~ msgid "-Select group-" -#~ msgstr "-グループの選択" - -#~ msgid "Begin date (*)" -#~ msgstr "開始日時" - -#~ msgid "End date (*)" -#~ msgstr "終了日時" - -#~ msgid "View users" -#~ msgstr "ユーザ参照" - -#~ msgid "Configuration detail" -#~ msgstr "設定詳細" - -#~ msgid "To agent(s):" -#~ msgstr "適用先エージェント:" - -#~ msgid "Source group" -#~ msgstr "複製元グループ" - -#~ msgid "Image range (px)" -#~ msgstr "画像の範囲 (px)" - -#~ msgid "Image size (px)" -#~ msgstr "画像のサイズ (px)" - -#~ msgid "Visual configuration" -#~ msgstr "画面設定" - -#~ msgid "Pandora agents" -#~ msgstr "Pandora エージェント" - -#~ msgid "Your IP" -#~ msgstr "接続元" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "ここは Pandora FMS の Web " -#~ "管理画面です。ここからエージェントやアラート、インシデントの管理を行います。画面を開いている間、セッションが維持されます。" - -#~ msgid "Monitors critical" -#~ msgstr "障害" - -#~ msgid "Monitors warning" -#~ msgstr "警告" - -#~ msgid "Monitors normal" -#~ msgstr "正常" - -#~ msgid "Monitors unknown" -#~ msgstr "不明" - -#~ msgid "Field 1" -#~ msgstr "フィールド 1" - -#~ msgid "Field 2" -#~ msgstr "フィールド 2" - -#~ msgid "Field 3" -#~ msgstr "フィールド 3" - -#~ msgid "Correlated alerts" -#~ msgstr "関連付け" - -#~ msgid "Configure correlated alert" -#~ msgstr "関連付けの作成" - -#~ msgid "Assigned actions" -#~ msgstr "定義済みアクション" - -#~ msgid "Only pending" -#~ msgstr "未承諾" - -#~ msgid "Event validate" -#~ msgstr "未承諾" - -#~ msgid "Event not validate" -#~ msgstr "承諾済" - -#~ msgid "T." -#~ msgstr "種類" - -#~ msgid "G." -#~ msgstr "グループ" - -#~ msgid "Create incident from event" -#~ msgstr "インシデントを作成する" - -#~ msgid "Read message" -#~ msgstr "メッセージを読む" - -#~ msgid "Agent general information" -#~ msgstr "エージェント概要" - -#~ msgid "None agent in this category" -#~ msgstr "エージェントが存在しません" - -#~ msgid "Modules critical" -#~ msgstr "障害中のモジュール" - -#~ msgid "Modules normal" -#~ msgstr "正常状態のモジュール" - -#~ msgid "Modules warning" -#~ msgstr "警告状態のモジュール" - -#~ msgid "Agents down" -#~ msgstr "停止しているエージェント" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "このエージェントにはモジュールが導入されていません" - -#~ msgid "Uninitialized modules" -#~ msgstr "未初期化モジュール" - -#~ msgid "There are no agents included in this group" -#~ msgstr "このグループに属しているエージェントが存在しません" - -#~ msgid "No simple alerts found" -#~ msgstr "アラートは発生していません。" - -#~ msgid "No layouts found" -#~ msgstr "レイアウトがありません。" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "稼働中のモジュール数 / 該当する種類の全モジュール" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "最大遅延(秒) / 遅延モジュール数" - -#~ msgid "Alerts defined" -#~ msgstr "アラート定義" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "取得した値が にマッチした場合、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "取得した値が にマッチしない場合、アラートを発生させます。" - -#~ msgid "The alert would fire when the value is " -#~ msgstr "取得した値が になったら、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "取得した値が 以外になったら、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "取得した値が " -#~ "の間になったら、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "取得した値が " -#~ "の間を外れたら、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "取得した値が 以下になったら、アラートを発生させます。" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "取得した値が を超えたら、アラートを発生させます。" - -#~ msgid "Correlation" -#~ msgstr "関連付け" - -#~ msgid "Older" -#~ msgstr "より古い" - -#~ msgid "Map element editor" -#~ msgstr "マップアイテム編集" - -#~ msgid "Map element trash" -#~ msgstr "マップアイテム削除" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "アイテムのプロパティを編集するには、アイテムをここにドラッグしてください。" - -#~ msgid "Select an element to delete:" -#~ msgstr "削除するアイテムを選択してください。" - -#~ msgid "preview" -#~ msgstr "プレビュー" - -#~ msgid "Visual map wizard" -#~ msgstr "マップ設定追加" - -#~ msgid "Custom Value" -#~ msgstr "カスタム値" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "フィールド #1 (エイリアス、名前)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "フィールド #3 (複数行記述可)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "フィールド #2 (1行で記述)" - -#~ msgid "Graph builder module list" -#~ msgstr "グラフビルダー モジュール一覧" - -#~ msgid "Graphs management" -#~ msgstr "グラフ管理" - -#~ msgid "Redraw" -#~ msgstr "再描画" - -#~ msgid "Update server host" -#~ msgstr "アップデートサーバ" - -#~ msgid "Update server path" -#~ msgstr "アップデートサーバのパス" - -#~ msgid "Update server port" -#~ msgstr "アップデートサーバのポート番号" - -#~ msgid "Binary input path" -#~ msgstr "バイナリファイルのパス" - -#~ msgid "Keygen path" -#~ msgstr "keygen のパス" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d ヵ月" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d 時間" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d 時間" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d 週間" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d 日" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d 日" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d 週間" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "このエージェントは、アクティブなモニタ項目がありません。" - -#~ msgid "Events generated -by module-" -#~ msgstr "モジュールにより生成されたイベント" - -#~ msgid "Pandora users" -#~ msgstr "Pandora ユーザ" - -#~ msgid "Module assignment" -#~ msgstr "モジュール割当" - -#~ msgid "MD5 check" -#~ msgstr "MD5チェックサム" - -#~ msgid "Event graph by group" -#~ msgstr "グループで分類したイベントグラフ" - -#~ msgid "User activity statistics" -#~ msgstr "ユーザアクセス情報" - -#~ msgid "Flag" -#~ msgstr "フラグ" - -#~ msgid "General configuration" -#~ msgstr "全体の設定" - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA計算対象期間(秒)" - -#~ msgid "Automatic update check" -#~ msgstr "自動アップデートチェック" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "ヘッダーの CSS と JS の圧縮" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "IPアドレスは、1行に1つずつ書いてください。" - -#~ msgid "Flash charts" -#~ msgstr "フラッシュでグラフ描画" - -#~ msgid "Modules per agent" -#~ msgstr "エージェントごとのモジュール数" - -#~ msgid "Packets per agent" -#~ msgstr "エージェントごとのパケット数" - -#~ msgid "Assigned to" -#~ msgstr "割当先エージェント" - -#~ msgid "Add condition" -#~ msgstr "判定基準の追加" - -#~ msgid "No name was given" -#~ msgstr "名前が設定されていません。" - -#~ msgid "No agent was given" -#~ msgstr "エージェントが設定されていません。" - -#~ msgid "No conditions were given" -#~ msgstr "判定基準が設定されていません。" - -#~ msgid "Go to alert overview" -#~ msgstr "アラート概要表示" - -#~ msgid "Single alerts" -#~ msgstr "単一アラート" - -#~ msgid "Compound alerts" -#~ msgstr "関連付けアラート" - -#~ msgid "From the last" -#~ msgstr "表示範囲" - -#~ msgid "Monitors not init" -#~ msgstr "未初期化(未実行)" - -#~ msgid "Local modules rate" -#~ msgstr "1秒間におけるローカルモジュールモニタ実行数" - -#~ msgid "Remote modules rate" -#~ msgstr "1秒間におけるリモートモジュールモニタ実行数" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "データベースにサーバが存在しません。" - -#~ msgid "No layout with this id found" -#~ msgstr "このIDで表示するレイアウトがありません。" - -#~ msgid "Custom reporting builder" -#~ msgstr "カスタムレポートビルダー" - -#~ msgid "Add item to report" -#~ msgstr "レポートに追加するアイテム" - -#~ msgid "Custom graph name" -#~ msgstr "カスタムグラフ名" - -#~ msgid "Combined image render" -#~ msgstr "重ね合わせ描画" - -#~ msgid "Render now" -#~ msgstr "今すぐ描画" - -#~ msgid "Custom graph store" -#~ msgstr "カスタムグラフストア" - -#~ msgid "Update layout successful" -#~ msgstr "レイアウトを更新しました。" - -#~ msgid "Update layout failed" -#~ msgstr "レイアウトの更新に失敗しました。" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "要素の画像もしくはタイプ名を選択してください。" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "エージェントが選択されていません。選択してください。" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "%s ディレクトリを作成しました。" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "カレントディレクトリに、HTTP サーバによる書き込み権限がありません。" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "カレントディレクトリに、HTTP サーバによる書き込み権限があるか確認してください。" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "matches of the alert" -#~ msgstr "のアラート数の時に実行" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "アラート削除でエラーが発生しました。操作はキャンセルされます。" - -#~ msgid "Could not delete alerts" -#~ msgstr "アラートを削除できません。" - -#~ msgid "Available templates" -#~ msgstr "テンプレート一覧" - -#~ msgid "Plugin parameters" -#~ msgstr "プラグインパラメータ" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "エージェント削除でエラーが発生しました。操作はキャンセルされます。" - -#~ msgid "Could not delete agent" -#~ msgstr "エージェントを削除できません。" - -#~ msgid "Massive agent deletion" -#~ msgstr "複数エージェント削除" - -#~ msgid "Could not delete modules" -#~ msgstr "モジュールを削除できません。" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "定義されている計画停止" - -#~ msgid "No selected agents to copy" -#~ msgstr "コピーするエージェントが選択されていません。" - -#~ msgid "Network component" -#~ msgstr "ネットワークコンポーネント" - -#~ msgid "TCP port" -#~ msgstr "TCP ポート番号" - -#~ msgid "WMI component management" -#~ msgstr "WMI コンポーネント管理" - -#~ msgid "Plugin component" -#~ msgstr "プラグインコンポーネント" - -#~ msgid "Search value" -#~ msgstr "検索する値" - -#~ msgid "N/A\t" -#~ msgstr "N/A\t" - -#~ msgid "Transfer mode" -#~ msgstr "転送モード" - -#~ msgid "Port option" -#~ msgstr "Port オプション" - -#~ msgid "User option" -#~ msgstr "User オプション" - -#~ msgid "Password option" -#~ msgstr "Password オプション" - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録することができます。アップロードは、Pandora FMS 3.x " -#~ "の圧縮フォーマット(.pspz)で行ってください。Pandora FMS " -#~ "サーバプラグインの入手方法についてはドキュメントを参照してください。

プラグインは、パ" -#~ "ブリックリソースライブラリから入手できます。" - -#~ msgid "Raw Data" -#~ msgstr "Raw データ" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA を作成しました。" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "SLA の作成に失敗しました。" - -#~ msgid "Module is not set" -#~ msgstr "モジュールが定義されていません。" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA を削除しました。" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "SLA の削除に失敗しました。" - -#~ msgid "SLAs defined" -#~ msgstr "定義済 SLA" - -#~ msgid "SLA report construction" -#~ msgstr "SLA レポート設定" - -#~ msgid "attach_error" -#~ msgstr "添付エラー" - -#~ msgid "Deleting file" -#~ msgstr "ファイルの削除" - -#~ msgid "Deleting" -#~ msgstr "削除中" - -#~ msgid "Database sanity tool" -#~ msgstr "データベース健全性ツール" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "テーブル tagente_estado をチェック中" - -#~ msgid "Checking database consistency" -#~ msgstr "データベースの整合性をチェック中" - -#~ msgid "Deleting non-init data" -#~ msgstr "未初期化データの削除中" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Pandora FMS " -#~ "のデータベース健全性ツールは、モジュールが初期化されていなかったり、モジュールがおかしなデータを記録している場合などに、不正なデータを削除するために利用し" -#~ "ます。このような問題のあるモジュールは、Pandora FMS " -#~ "のパフォーマンスを劣化させます。このデータベース健全性ツールは、pandora_db.plとしても実装されており、日次や週次で実行させること" -#~ "ができます。このツールは不正なデータを削除するのみで、その他データの削除は行いません。" - -#~ msgid "Sanitize my database now" -#~ msgstr "今すぐデータベースをチェック" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "今すぐ未初期化モジュールを削除" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "グラフでデータベースの情報を表示するには、ここをクリックしてください。" - -#~ msgid "Purge task launched for agent" -#~ msgstr "エージェント実行タスクの削除" - -#~ msgid "Data older than" -#~ msgstr "次より古いデータ" - -#~ msgid "Deleting records for module" -#~ msgstr "モジュールのレコード削除中" - -#~ msgid "There was a problem adding module" -#~ msgstr "モジュールの追加に失敗しました。" - -#~ msgid "Minimum Data" -#~ msgstr "最小データ" - -#~ msgid "Maximum Data" -#~ msgstr "最大データ" - -#~ msgid "Preffix" -#~ msgstr "プレフィックス" - -#~ msgid "Event report" -#~ msgstr "イベントレポート" - -#~ msgid "Alert report" -#~ msgstr "アラートレポート" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "このリソースにアクセスできる権限がありません。" - -#~ msgid "Software agent data" -#~ msgstr "ソフトウエアエージェントデータ" - -#~ msgid "Software agent monitor" -#~ msgstr "ソフトウエアエージェントモニタ" - -#~ msgid "Network agent data" -#~ msgstr "ネットワークエージェントデータ" - -#~ msgid "Network agent monitor" -#~ msgstr "ネットワークエージェントモニタ" - -#~ msgid "Wrong module type" -#~ msgstr "不正なモジュールタイプです。" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Keygen ファイルが存在しません。" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Keygen ファイルを実行できません。" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Pandora FMS 3.0 には、新しいアップデートマネージャがついています。これは、Pand" -#~ "ora FMS " -#~ "を自動的にアップデートします。アップデートマネージャは、新しいモジュール、新しいプラグイン、新しい機能の取得を自動的に行います(新たしいバージョンへの移行" -#~ ")。" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS 3.0 エンタープライズ版の最も先進的な機能の一つです。より詳しい情報は、http://pandorafms.comを参照してください。" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS " -#~ "の利用状況(エージェントと動作しているモジュールの数)を送信します。それを無効にするには、「拡張」の削除もしくは、アップデートマネージャプラグインの設定か" -#~ "らリモートサーバのアドレスを削除してください。" - -#~ msgid "Server connection failed" -#~ msgstr "サーバの接続に失敗しました。" - -#~ msgid "Server authorization rejected" -#~ msgstr "サーバの認証に失敗しました。" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Pandora FMS に新しい更新があります。" - -#~ msgid "Overwrite local changes" -#~ msgstr "ローカルの変更を上書きする" - -#~ msgid "Your system version number is" -#~ msgstr "システムのバージョン番号は" - -#~ msgid "Update manager settings updated" -#~ msgstr "アップデートマネージャの設定を更新しました。" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Pandora に新しい更新があります。" - -#~ msgid "More info" -#~ msgstr "詳細情報" - -#~ msgid "Update manager settings" -#~ msgstr "アップデートマネージャ設定" - -#~ msgid "Invalid method supplied" -#~ msgstr "手法が正しくありません。" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "エージェントから受け取った最新データモジュールの表示" - -#~ msgid "At least one monitor fails" -#~ msgstr "1つ以上のモニタ項目が障害" - -#~ msgid "Change between Green/Red state" -#~ msgstr "正常と障害の状態変化" - -#~ msgid "Alerts disabled" -#~ msgstr "無効アラート" - -#~ msgid "Agent without monitors" -#~ msgstr "モニタしていないエージェント" - -#~ msgid "Agent down" -#~ msgstr "ダウンエージェント" - -#~ msgid "SLA view" -#~ msgstr "SLA 一覧" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "SLA を評価するモジュールがありません。" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "モニタリング項目の SLA" - -#~ msgid "secs." -#~ msgstr "秒" - -#~ msgid "There was a problem updating module" -#~ msgstr "モジュールの更新に失敗しました。" - -#~ msgid "Module Interval" -#~ msgstr "モジュール間隔" - -#~ msgid "Agents in group" -#~ msgstr "グループにおけるエージェント" - -#~ msgid "Agents detailed view" -#~ msgstr "エージェント詳細" - -#~ msgid "Agents detailed event" -#~ msgstr "エージェントの詳細イベント" - -#~ msgid "Global health" -#~ msgstr "全体の正常性" - -#~ msgid "You don't have access" -#~ msgstr "アクセスできません。" - -#~ msgid "Last hour" -#~ msgstr "最新時間" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "最新 %s 日間" - -#~ msgid "Code / binary directory" -#~ msgstr "コード / バイナリディレクトリ" - -#~ msgid "User-defined SLA items" -#~ msgstr "ユーザ定義 SLA アイテム" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "このサーバには、自動検出処理が割り当てられていません。" - -#~ msgid "Extra options" -#~ msgstr "拡張オプション" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "赤色は、そのセルに該当するモジュールのうち、障害中のモジュールが少なくとも一つあることを示します。" - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "黄色は、そのセルに該当するモジュールのうち、警告状態のモジュールが少なくとも一つあることを示します。" - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "緑色は、そのセルに該当するモジュールが全て正常であることを示します。" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "灰色は、そのセルに該当するモジュールが存在しないことを示します。" - -#~ msgid "Modules groups" -#~ msgstr "モジュールグループ" - -#~ msgid "Report name is empty" -#~ msgstr "レポート名が設定されていません。" - -#~ msgid "No items defined" -#~ msgstr "アイテムが定義されていません。" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "設定ファイルのコピーを作成中:" - -#~ msgid "Event not validated" -#~ msgstr "未承諾イベント" - -#~ msgid "Unmanaged error" -#~ msgstr "不明なエラー" - -#~ msgid "Module Down" -#~ msgstr "下へ" - -#~ msgid "Module Up" -#~ msgstr "上へ" - -#~ msgid "Agent detailed event" -#~ msgstr "エージェント詳細イベント" - -#~ msgid "Desc" -#~ msgstr "説明" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "エージェントキープアライブモニタ" - -#~ msgid "Export targets" -#~ msgstr "エクスポートターゲット" - -#~ msgid "Error updating export target" -#~ msgstr "エクスポートターゲットの更新に失敗しました。" - -#~ msgid "Successfully updated export target" -#~ msgstr "エクスポートターゲットを更新しました。" - -#~ msgid "Error deleting export target" -#~ msgstr "エクスポートターゲットの削除に失敗しました。" - -#~ msgid "Successfully deleted export target" -#~ msgstr "エクスポートターゲットを削除しました。" - -#~ msgid "Error creating export target" -#~ msgstr "エクスポートターゲットの作成に失敗しました。" - -#~ msgid "Successfully created export target" -#~ msgstr "エクスポートターゲットを作成しました。" - -#~ msgid "There are no export targets configured" -#~ msgstr "エクスポートターゲットが設定されていません。" - -#~ msgid "Target directory" -#~ msgstr "対象ディレクトリ" - -#~ msgid "Tt" -#~ msgstr "再通知間隔" - -#~ msgid "MinMax.Al" -#~ msgstr "最小・最大" - -#~ msgid "Sumatory" -#~ msgstr "合計" - -#~ msgid "General group report" -#~ msgstr "一版グループレポート" - -#~ msgid "Oper" -#~ msgstr "演算子" - -#~ msgid "Load" -#~ msgstr "処理実行率" - -#~ msgid "Group detailed event" -#~ msgstr "グループの詳細イベント" - -#~ msgid "Decrease Weight" -#~ msgstr "ウエイトを減らす" - -#~ msgid "Increase Weight" -#~ msgstr "ウエイトを増やす" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "警告: エージェントの位置を変更した時は、エージェントが「新たなGISデータを無視する」オプションを自動的に有効にします。" - -#~ msgid "ALERTS FIRED" -#~ msgstr "アラート発生中" - -#~ msgid "Module detailed event" -#~ msgstr "モジュール詳細イベント" - -#~ msgid "S" -#~ msgstr "状態" - -#~ msgid "User defined graph" -#~ msgstr "ユーザ定義グラフ" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "セキュリティの制約により、いくつかの文字や単語は利用できません。" - -#~ msgid "Illegal query" -#~ msgstr "不正なクエリ" - -#~ msgid "or" -#~ msgstr "または" - -#~ msgid "Config" -#~ msgstr "設定" - -#~ msgid "Create networkmap" -#~ msgstr "ネットワークマップの作成" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "障害または警告状態のモジュール" - -#~ msgid "Modules under those conditions" -#~ msgstr "これらの状態のモジュール" - -#~ msgid "Inside limits" -#~ msgstr "限度内" - -#~ msgid "On the edge" -#~ msgstr "境界上" - -#~ msgid "Modules over or equal to" -#~ msgstr "モジュール数が次の数値以上" - -#~ msgid "There are no" -#~ msgstr "次の定義がありません:" - -#~ msgid "Last 8 hours" -#~ msgstr "直近8時間" - -#~ msgid "int" -#~ msgstr "間隔" - -#~ msgid "Your system is up-to-date" -#~ msgstr "システムは最新の状態です。" - -#~ msgid "3 hours" -#~ msgstr "3時間" - -#~ msgid "4 days" -#~ msgstr "4日" - -#~ msgid "Search text" -#~ msgstr "検索文字列" - -#~ msgid "There was a problem loading alert" -#~ msgstr "アラート読み込みに問題が発生しました。" - -#~ msgid "Module macros" -#~ msgstr "モジュールマクロ" - -#~ msgid "License Info" -#~ msgstr "ライセンス情報" - -#~ msgid "License info" -#~ msgstr "ライセンス情報" - -#~ msgid "Tree View" -#~ msgstr "ツリー表示" - -#~ msgid "Average" -#~ msgstr "平均" - -#~ msgid "Group configuration: " -#~ msgstr "グループ設定: " - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/データ フィールドで検索します。" - -#~ msgid "Form filter" -#~ msgstr "フォームフィルタ" - -#~ msgid "Configuration report for group " -#~ msgstr "グループのレポート設定 " - -#~ msgid "Configuration report for agent " -#~ msgstr "エージェントのレポート設定 " - -#~ msgid "Plannified downtime" -#~ msgstr "計画停止" - -#~ msgid "Exception - Equal to" -#~ msgstr "例外 - 同じ" - -#~ msgid "Modules less or equal to" -#~ msgstr "モジュールが次の値以下:" - -#~ msgid "Modules over" -#~ msgstr "モジュールが次の値より大きい:" - -#~ msgid "SO" -#~ msgstr "OS" - -#~ msgid "Modules normal status" -#~ msgstr "モジュールが正常状態" - -#~ msgid "Modules not equal to" -#~ msgstr "モジュールが次の値と異なる:" - -#~ msgid "Modules equal to" -#~ msgstr "モジュールが次の値と同じ:" - -#~ msgid "Modules less" -#~ msgstr "モジュールが次の値未満:" - -#~ msgid " MODULES" -#~ msgstr " モジュール" - -#~ msgid "Agent configuration: " -#~ msgstr "エージェント設定: " - -#~ msgid "Inventory modules" -#~ msgstr "インベントリモジュール" - -#~ msgid "Local components" -#~ msgstr "ローカルコンポーネント" - -#~ msgid "Event alerts" -#~ msgstr "イベントアラート" - -#~ msgid "Skins" -#~ msgstr "スキン" - -#~ msgid "Not found" -#~ msgstr "見つかりません" - -#~ msgid "Service created successfully" -#~ msgstr "サービスを作成しました" - -#~ msgid "Create Service" -#~ msgstr "サービスの作成" - -#~ msgid "Service updated successfully" -#~ msgstr "サービスを更新しました" - -#~ msgid "Error creating service" -#~ msgstr "サービス作成エラー" - -#~ msgid "Error updating service" -#~ msgstr "サービスの更新エラー" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "サービスが自動計算モードのため、デフォルト値です。" - -#~ msgid "Config Service" -#~ msgstr "サービス設定" - -#~ msgid "View Service" -#~ msgstr "サービス参照" - -#~ msgid "Service map" -#~ msgstr "サービスマップ" - -#~ msgid "Agent to store data" -#~ msgstr "データを保存するエージェント" - -#~ msgid "Using local component" -#~ msgstr "ローカルコンポーネントの利用" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "このフィールド上の変更は、設定データにリンクされます。" - -#~ msgid "Show extended info" -#~ msgstr "拡張情報表示" - -#~ msgid "Extended info:" -#~ msgstr "拡張情報:" - -#~ msgid "Ok weight" -#~ msgstr "正常ウエイト" - -#~ msgid "Warning weight" -#~ msgstr "警告ウエイト" - -#~ msgid "Unknown weight" -#~ msgstr "不明ウエイト" - -#~ msgid "Data configuration is empty" -#~ msgstr "データ設定が空です" - -#~ msgid "Hide configuration data" -#~ msgstr "設定データを隠す" - -#~ msgid "Show configuration data" -#~ msgstr "設定データを表示する" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "最初の行は、\"module_begin\" でなければいけません" - -#~ msgid "Data configuration" -#~ msgstr "データ設定" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "最後の行は \"module_end\" でなければいけません" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "プラグインを追加しました" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "プラグインを追加できません" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "プラグインを削除しました" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "プラグインを削除できません" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "書式エラーです。データ設定を確認してください。" - -#~ msgid "Data configuration are built correctly" -#~ msgstr "データ設定が正しく作られました" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "タイプが不正です。正しいタイプを選択してください。" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "不明なトークン 'token_fail' を含む行があります。" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "名前がありません。データ設定に \"module_name モジュール名\" という行を追加してください。" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加してください。" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "プラグインを有効化できません" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "プラグインを無効化しました" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "プラグインを無効化できません" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "プラグインを有効化しました" - -#~ msgid "New plug-in" -#~ msgstr "新規プラグイン" - -#~ msgid "Error adding inventory module" -#~ msgstr "インベントリモジュールの追加エラー" - -#~ msgid "Successfully added inventory module" -#~ msgstr "インベントリモジュールを追加しました" - -#~ msgid "Error deleting inventory module" -#~ msgstr "インベントリモジュールの削除エラー" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "インベントリモジュールを削除しました" - -#~ msgid "7 days" -#~ msgstr "7日" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "インベントリモジュールを更新しました" - -#~ msgid "Error updating inventory module" -#~ msgstr "インベントリモジュールの更新エラー" - -#~ msgid "Inventory module error" -#~ msgstr "インベントリモジュールエラー" - -#~ msgid "Unable to create the collection" -#~ msgstr "コレクションを作成できません" - -#~ msgid "Short name:" -#~ msgstr "短い名前:" - -#~ msgid "Unable to edit the collection." -#~ msgstr "コレクションを編集できません。" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "コレクションを編集できません。名前が空です。" - -#~ msgid "Correct create collection" -#~ msgstr "コレクションを作成しました" - -#~ msgid "Unable to create the collection." -#~ msgstr "コレクションを作成できません。" - -#~ msgid "Empty name" -#~ msgstr "名前が空です" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" - -#~ msgid "Group filter" -#~ msgstr "グループフィルタ" - -#~ msgid "Fixed value" -#~ msgstr "固定値" - -#~ msgid "Netflow filter" -#~ msgstr "Netflow フィルタ" - -#~ msgid "Select Service" -#~ msgstr "サービス選択" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "エラー: エージェント設定ファイルを読めません。" - -#~ msgid "Select filter" -#~ msgstr "フィルタ選択" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "選択したモジュールをオペレーションスタックから削除する" - -#~ msgid "Move down selected modules" -#~ msgstr "選択したモジュールを下へ" - -#~ msgid "Move up selected modules" -#~ msgstr "選択したモジュールを上へ" - -#~ msgid "No module was found" -#~ msgstr "モジュールがありません" - -#~ msgid "Succesful add the collection" -#~ msgstr "コレクションを追加しました" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "コレクションの追加に失敗しました" - -#~ msgid "Short Name" -#~ msgstr "短い名前" - -#~ msgid "Show files" -#~ msgstr "ファイル表示" - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "エラー: エージェント設定ファイルに書き込めません。" - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "ファイルをアップロードする前に新規コレクションを保存してください。" - -#~ msgid "Create a new web Server module" -#~ msgstr "ウェブサーバモジュールの新規作成" - -#~ msgid "Correct update file." -#~ msgstr "ファイルを更新しました。" - -#~ msgid "Compatibility mode" -#~ msgstr "互換モード" - -#~ msgid "Back to file explorer" -#~ msgstr "ファイルエクスプローラへ戻る" - -#~ msgid "Error copying md5 file " -#~ msgstr "md5 ファイルのコピーエラー " - -#~ msgid "No source agent selected" -#~ msgstr "ソースエージェントが選択されていません" - -#~ msgid "Incorrect update file." -#~ msgstr "ファイルの更新に失敗しました。" - -#~ msgid "Copied " -#~ msgstr "コピーしました: " - -#~ msgid " md5 file" -#~ msgstr " md5 ファイル" - -#~ msgid "Requests" -#~ msgstr "リクエスト" - -#~ msgid "Agent browser id" -#~ msgstr "エージェントブラウザID" - -#~ msgid "Web server module" -#~ msgstr "ウェブサーバモジュール" - -#~ msgid "Error copying " -#~ msgstr "コピーエラー " - -#~ msgid " config file" -#~ msgstr " 設定ファイル" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "ウェブチェック設定が空です" - -#~ msgid "Web checks are built correctly" -#~ msgstr "ウェブチェックを設定しました" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP 認証 (サーバ)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP 認証 (パスワード)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "最初の行は、\"task_begin\" でなければいけません。" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "最後の行は、\"task_end\" でなければいけません。" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "ディレクトリ作成に失敗しました: %s" - -#~ msgid "Proxy URL" -#~ msgstr "プロキシURL" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP 認証 (ログイン)" - -#~ msgid "Can not create collection package." -#~ msgstr "コレクションパッケージを作成できません。" - -#~ msgid "Successful create collection package." -#~ msgstr "コレクションパッケージを作成しました。" - -#~ msgid "Delete collection" -#~ msgstr "コレクションの削除" - -#~ msgid "Are you sure to delete?" -#~ msgstr "削除しますがよろしいですか?" - -#~ msgid "Error: recreate file " -#~ msgstr "エラー: ファイル再作成 " - -#~ msgid "Success: recreate file" -#~ msgstr "成功: ファイル再作成" - -#~ msgid "Manager collection" -#~ msgstr "コレクション管理" - -#~ msgid "Collections Management" -#~ msgstr "コレクション管理" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "ファイルコレクションが制限を越えています (" - -#~ msgid "No files in collection" -#~ msgstr "コレクションにファイルがありません" - -#~ msgid "Apply changes" -#~ msgstr "変更を適用" - -#~ msgid "Re-Apply changes" -#~ msgstr "変更の再適用" - -#~ msgid "List templates" -#~ msgstr "テンプレート一覧" - -#~ msgid "Edit template" -#~ msgstr "テンプレートの編集" - -#~ msgid "Create template" -#~ msgstr "テンプレートの作成" - -#~ msgid "SLA max value" -#~ msgstr "SLA 最大値" - -#~ msgid "SLA min Value" -#~ msgstr "SLA 最小値" - -#~ msgid "SLA min value" -#~ msgstr "SLA 最小値" - -#~ msgid "Sum" -#~ msgstr "合計" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA 制限値" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA 制限 %" - -#~ msgid "SLA max Value" -#~ msgstr "SLA 最大値" - -#~ msgid "Exact match" -#~ msgstr "完全一致" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "Graph template management" -#~ msgstr "グラフテンプレート管理" - -#~ msgid "There are no defined graph templates" -#~ msgstr "定義済のグラフテンプレートがありません" - -#~ msgid "Wizard template" -#~ msgstr "ウィザードテンプレート" - -#~ msgid "Select all" -#~ msgstr "全てを選択" - -#~ msgid "Add agents to template" -#~ msgstr "テンプレートにエージェントを追加" - -#~ msgid "Apply template" -#~ msgstr "テンプレート適用" - -#~ msgid "Custom Mysql template builder" -#~ msgstr "カスタム Mysql テンプレートビルダ" - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "以前のテンプレート内の全レポートを削除します。続けますか?" - -#~ msgid "Create custom SQL" -#~ msgstr "カスタム SQL 作成" - -#~ msgid "Agents to apply" -#~ msgstr "適用するエージェント" - -#~ msgid ": Edit: " -#~ msgstr ": 編集: " - -#~ msgid "Could not be applied" -#~ msgstr "適用できません" - -#~ msgid "reports" -#~ msgstr "レポート" - -#~ msgid "items" -#~ msgstr "アイテム" - -#~ msgid "Sucessfully applied" -#~ msgstr "適用しました" - -#~ msgid "SQL preview" -#~ msgstr "SQL プレビュー" - -#~ msgid "Query SQL" -#~ msgstr "SQL クエリ" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" - -#~ msgid "Module exact match" -#~ msgstr "モジュール完全一致" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モジュール完全一致\" " -#~ "を有効にしてこのフィールドを使った場合は、モジュール名の文字列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* " -#~ "は、cpu_usage、vram usage in machine 1 にマッチします。" - -#~ msgid "" -#~ "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 " -#~ "というエージェント名にマッチします。" - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" - -#~ msgid "" -#~ "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 " -#~ "というエージェント名にマッチします。" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "一覧へのアイテム追加を開始するには、テンプレートを保存してください。" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" - -#~ msgid "Template updated successfully" -#~ msgstr "テンプレートを更新しました" - -#~ msgid "Error updating template" -#~ msgstr "テンプレート更新エラー" - -#~ msgid "Policy updated" -#~ msgstr "ポリシーを更新しました" - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "削除キューに全ポリシーエージェントを追加しました" - -#~ msgid "Policies Management" -#~ msgstr "ポリシー管理" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "削除キューにポリシーエージェントを追加できません" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "全ポリシーエージェントが削除されます" - -#~ msgid "Delete all agents" -#~ msgstr "全エージェント削除" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "この説明を変更すると、データ設定のテキストを変更する必要があります。" - -#~ msgid "Deleting all policy agents" -#~ msgstr "全ポリシーエージェントの削除中" - -#~ msgid "Queue" -#~ msgstr "キュー" - -#~ msgid "External alerts" -#~ msgstr "外部アラート" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "削除を取り消しました" - -#~ msgid "Could not be reverted" -#~ msgstr "取り消しできませんでした" - -#~ msgid "Could not be added module." -#~ msgstr "モジュールを追加できませんでした。" - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" - -#~ msgid "Undo deletion" -#~ msgstr "削除取り消し" - -#~ msgid "Local component" -#~ msgstr "ローカルコンポーネント" - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" - -#~ msgid "Successfully added module." -#~ msgstr "モジュールを追加しました。" - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "選択したモジュールをポリシーへコピー: " - -#~ msgid "Agents in Policy" -#~ msgstr "ポリシー内エージェント" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "削除待ちエージェントから削除できませんでした" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "削除キューに追加できませんでした" - -#~ msgid "Successfully added to delete queue" -#~ msgstr "削除キューに追加しました" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" - -#~ msgid "Please select any module to copy" -#~ msgstr "コピーするモジュールを選択してください" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "モジュールをポリシーにコピーしますか?\\n" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "削除待ちエージェントから削除しました" - -#~ msgid "Delete agents from policy" -#~ msgstr "ポリシーからエージェント削除" - -#~ msgid "Add agents to policy" -#~ msgstr "ポリシーへのエージェント追加" - -#~ msgid "Add to delete queue" -#~ msgstr "削除キューへの追加" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "このエージェントはリモート設定できません" - -#~ msgid "Unlinked modules" -#~ msgstr "未リンクモジュール" - -#~ msgid "Applied" -#~ msgstr "適用済" - -#~ msgid "Not applied" -#~ msgstr "未適用" - -#~ msgid "Created successfuly" -#~ msgstr "作成しました" - -#~ msgid "Deleting from policy" -#~ msgstr "ポリシーから削除中" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" - -#~ msgid "Applying policy" -#~ msgstr "ポリシー適用中" - -#~ msgid "Need apply" -#~ msgstr "要適用" - -#~ msgid "Add to apply queue" -#~ msgstr "適用キューへ追加" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" - -#~ msgid "Policy applied" -#~ msgstr "適用済ポリシー" - -#~ msgid "Deleted action successfuly" -#~ msgstr "アクションを削除しました" - -#~ msgid "Added action successfuly" -#~ msgstr "アクションを追加しました" - -#~ msgid "Module is not selected" -#~ msgstr "モジュールが選択されていません" - -#~ msgid "Select inventory module" -#~ msgstr "インベントリモジュールの選択" - -#~ msgid "Policy module" -#~ msgstr "ポリシーモジュール" - -#~ msgid "Free text for filter (*)" -#~ msgstr "フィルタテキスト (*)" - -#~ msgid "Free text for filter" -#~ msgstr "フィルタテキスト" - -#~ msgid "List of modules unlinked" -#~ msgstr "未リンクモジュール一覧" - -#~ msgid "Apply (only database)" -#~ msgstr "適用 (データベースのみ)" - -#~ msgid "This operation could take a long time" -#~ msgstr "この操作は時間がかかります" - -#~ msgid "Apply (database and files)" -#~ msgstr "適用 (データベースおよびファイル)" - -#~ msgid "Complete" -#~ msgstr "完了" - -#~ msgid "Delete from queue" -#~ msgstr "キューから削除" - -#~ msgid "Empty queue" -#~ msgstr "キューが空です" - -#~ msgid "Delete all" -#~ msgstr "すべて削除" - -#~ msgid "Finished" -#~ msgstr "完了" - -#~ msgid "Incomplete" -#~ msgstr "未完了" - -#~ msgid "Queue filter" -#~ msgstr "キューフィルタ" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" - -#~ msgid "Error processing action" -#~ msgstr "アクション処理エラー" - -#~ msgid "Alert Template" -#~ msgstr "アラートテンプレート" - -#~ msgid "Modules in policy agents" -#~ msgstr "ポリシーエージェント内のモジュール" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "削除待ちプラグインを追加できません。" - -#~ msgid "Configure event rule" -#~ msgstr "イベントルール設定" - -#~ msgid "Error validating alert(s)" -#~ msgstr "アラート承諾エラー" - -#~ msgid "Move down" -#~ msgstr "下へ" - -#~ msgid "Move up" -#~ msgstr "上へ" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "このフィールドは、正規表現で処理されます" - -#~ msgid "User comment" -#~ msgstr "ユーザコメント" - -#~ msgid "List event rules" -#~ msgstr "イベントルール一覧" - -#~ msgid "Rule evaluation mode" -#~ msgstr "ルール評価モード" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "作成できませんでした。アラート名を入力してください。" - -#~ msgid "Event rules" -#~ msgstr "イベントルール" - -#~ msgid "Error creating rule" -#~ msgstr "ルール作成エラー" - -#~ msgid "Successfully created rule" -#~ msgstr "ルールを作成しました" - -#~ msgid "Configure event alert" -#~ msgstr "イベントアラート設定" - -#~ msgid "Window" -#~ msgstr "ウィンドウ" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "失敗: このモジュールのアラート作成、確認してください。" - -#~ msgid "Error updating rule" -#~ msgstr "ルール更新エラー" - -#~ msgid "Successfully updating rule" -#~ msgstr "ルールを更新しました" - -#~ msgid "Success: create the alerts." -#~ msgstr "成功: アラート作成" - -#~ msgid "Modules agents in policy" -#~ msgstr "ポリシー内のモジュールエージェント" - -#~ msgid "(Agent)" -#~ msgstr "(エージェント)" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "一括SNMPアラート編集" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "アラートの更新に失敗しました (%s / %s)" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "編集するSNMPアラート" - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "失敗: このモジュールのアラート削除、確認してください。" - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "アラートを更新しました (%s / %s)" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "一括SNMPアラート削除" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "一括アラートポリシー追加" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "一括アラートポリシー削除" - -#~ msgid "Success: remove the alerts." -#~ msgstr "成功: アラート削除" - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "削除するSNMPアラート" - -#~ msgid "Custom OID" -#~ msgstr "カスタム OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "MIB パースエラー" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "トラップカスタム値を削除しました" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "%s/%s トラップをアップロードしました" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "トラップカスタム値の削除エラー" - -#~ msgid "Error updating trap custom values" -#~ msgstr "トラップカスタム値の更新エラー" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "トラップカスタム値を更新しました" - -#~ msgid "No change in data" -#~ msgstr "データに変更がありません" - -#~ msgid "Error adding trap custom values" -#~ msgstr "トラップカスタム値の追加エラー" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "トラップカスタム値を追加しました" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "最大ログ保存日数を設定します。" - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Enterprise ACL 設定" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "プロファイルへの新ACL要素の追加" - -#~ msgid "Section" -#~ msgstr "セクション" - -#~ msgid "Load MIB" -#~ msgstr "MIBのロード" - -#~ msgid "Upload MIB" -#~ msgstr "MIBをアップロード" - -#~ msgid "Log storage directory" -#~ msgstr "ログ保存ディレクトリ" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "ログデータを保存するディレクトリ" - -#~ msgid "Fail uploaded file" -#~ msgstr "ファイルのアップロードに失敗しました" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "%s/%s トラップのアップロードに失敗しました" - -#~ msgid "Page" -#~ msgstr "ページ" - -#~ msgid "Filter by profile" -#~ msgstr "プロファイルによるフィルタ" - -#~ msgid "Create skin" -#~ msgstr "スキン作成" - -#~ msgid "Relative path" -#~ msgstr "相対パス" - -#~ msgid "Error deleting skin" -#~ msgstr "スキン削除エラー" - -#~ msgid "Skins configuration" -#~ msgstr "スキン設定" - -#~ msgid "Successfully deleted skin" -#~ msgstr "スキンを削除しました" - -#~ msgid "Skin name" -#~ msgstr "スキン名" - -#~ msgid "Error updating skin" -#~ msgstr "スキン更新エラー" - -#~ msgid "Successfully updated skin" -#~ msgstr "スキンを更新しました" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンです。" - -#~ msgid "Auth token" -#~ msgstr "認証トークン" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Pandora FMS メタコンソールアイテム編集" - -#~ msgid "Metaconsole setup" -#~ msgstr "メタコンソール設定" - -#~ msgid "Successfully update" -#~ msgstr "更新しました" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アルファベットのみです。" - -#~ msgid "Group/s" -#~ msgstr "グループ" - -#~ msgid "Could not be update" -#~ msgstr "更新できませんでした" - -#~ msgid "Successfully created skin" -#~ msgstr "スキンを作成しました" - -#~ msgid "Error creating skin" -#~ msgstr "スキン作成エラー" - -#~ msgid "Console User" -#~ msgstr "コンソールユーザ" - -#~ msgid "Console URL" -#~ msgstr "コンソール URL" - -#~ msgid "DB Host" -#~ msgstr "DB ホスト" - -#~ msgid "DB Password" -#~ msgstr "DB パスワード" - -#~ msgid "DB User" -#~ msgstr "DB ユーザ" - -#~ msgid "DB Name" -#~ msgstr "DB 名" - -#~ msgid "Compatibility" -#~ msgstr "互換性" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "DB" -#~ msgstr "DB" - -#~ msgid "Console Password" -#~ msgstr "コンソールパスワード" - -#~ msgid "Time interval between data transfer." -#~ msgstr "データ転送の時間間隔" - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアクセスができなくなる可能性があります。" - -#~ msgid " Bytes" -#~ msgstr " バイト" - -#~ msgid "Only validated events" -#~ msgstr "承諾済イベントのみ" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを生成しません。" - -#~ msgid "Out of black list" -#~ msgstr "ブラックリスト対象外" - -#~ msgid "In black list" -#~ msgstr "ブラックリスト対象" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "選択したモジュールをブラックリストへ追加" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "ヒストリデータベースへのデータ転送を行わない日数" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "選択したモジュールをブラックリストから削除" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用されます。" - -#~ msgid "Enterprise options" -#~ msgstr "Enterprise オプション" - -#~ msgid " Days" -#~ msgstr " 日" - -#~ msgid " Minutes" -#~ msgstr " 分" - -#~ msgid " Caracters" -#~ msgstr " 文字" - -#~ msgid "Set 0 if never expire." -#~ msgstr "0 に設定すると期限切れは発生しません" - -#~ msgid "Enterprise password policy" -#~ msgstr "Enterprise パスワードポリシー" - -#~ msgid "Two attempts minimum" -#~ msgstr "最小は 2回です" - -#~ msgid " Attempts" -#~ msgstr " 回" - -#~ msgid "Error creating inventory module" -#~ msgstr "インベントリモジュールの作成エラー" - -#~ msgid "Successfully created inventory module" -#~ msgstr "インベントリモジュールを作成しました" - -#~ msgid "Remote Integria" -#~ msgstr "リモートの Integria" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "リモートの Babel Enterprise" - -#~ msgid "Local component management" -#~ msgstr "ローカルコンポーネント管理" - -#~ msgid "Macros" -#~ msgstr "マクロ" - -#~ msgid "Active directory" -#~ msgstr "アクティブディレクトリ" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "リモートの Pandora FMS" - -#~ msgid "" -#~ "This license has expired. " -#~ "

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

ライセンスを更新するまでアップデートの入手はできません。" - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "または、Pandora FMS Enterprise を無効化します" - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "ライセンスの上限を超えています

このライセンスは " -#~ "%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:" -#~ msgstr "" -#~ "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) までお問い合わせください。" - -#~ msgid "Alerts Fired" -#~ msgstr "発報したアラート" - -#~ msgid "Map made by user" -#~ msgstr "ユーザ作成マップ" - -#~ msgid "Show a map made by user" -#~ msgstr "ユーザ作成マップの表示" - -#~ msgid "Limit" -#~ msgstr "制限" - -#~ msgid "Latest events list" -#~ msgstr "最新のイベント一覧" - -#~ msgid "Single graph" -#~ msgstr "単一グラフ" - -#~ msgid "Alerts Fired report" -#~ msgstr "発報アラートレポート" - -#~ msgid "Show a report made by user" -#~ msgstr "ユーザ作成レポートの表示" - -#~ msgid "Renew" -#~ msgstr "更新" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "利用前にウィジェットを設定してください" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "エージェントモジュールのグラフ表示" - -#~ msgid "Show the URL content" -#~ msgstr "URL のコンテンツ表示" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリックします。" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Pandora FMS へのウエルカムメッセージ" - -#~ msgid "Welcome" -#~ msgstr "ようこそ" - -#~ msgid "My URL" -#~ msgstr "マイ URL" - -#~ msgid "Invalid URL" -#~ msgstr "不正な URL" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "ピクセル数による高さ (0 を指定すると自動)" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "重ね合わせなし" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "Maps status" -#~ msgstr "マップ状態" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Pandora FMS のご利用ありがとうございます" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "監視対象ネットワークのマップ表示" - -#~ msgid "Panel with a message" -#~ msgstr "メッセージつきパネル" - -#~ msgid "My Post" -#~ msgstr "記事" - -#~ msgid "Dashboard replicate" -#~ msgstr "ダッシュボードの複製" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "コピーできません。データコピーエラーです。ダッシュボードを選択してください。" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "コピーできません。データコピーエラーです。" - -#~ msgid "Show a defined custom graph" -#~ msgstr "定義済カスタムグラフ表示" - -#~ msgid "Groups status" -#~ msgstr "グループ状態" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "全体の監視状態一覧の表示" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "ダッシュボードを更新しました" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "ウィジェットをロードできません" - -#~ msgid "Configure widget" -#~ msgstr "ウィジェット設定" - -#~ msgid "Replicate Dashboard" -#~ msgstr "ダッシュボードの複製" - -#~ msgid "Group Dashboards" -#~ msgstr "グループダッシュボード" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "復旧するためにウィジェットを設定しなおしてください" - -#~ msgid "Delete widget" -#~ msgstr "ウェジェットの削除" - -#~ msgid "Source user's group" -#~ msgstr "コピー元ユーザグループ" - -#~ msgid "Destination user's group" -#~ msgstr "コピー先ユーザグループ" - -#~ msgid "Successfully copyed" -#~ msgstr "コピーしました" - -#~ msgid "Pause" -#~ msgstr "一時停止" - -#~ msgid "Could not create dashboard" -#~ msgstr "ダッシュボードを作成できませんでした" - -#~ msgid "Could not update dashboard" -#~ msgstr "ダッシュボードを更新できませんでした" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "ダッシュボードを作成しました" - -#~ msgid "Play" -#~ msgstr "実行" - -#~ msgid "Previous Dashboard" -#~ msgstr "前のダッシュボード" - -#~ msgid "Slides mode" -#~ msgstr "スライドモード" - -#~ msgid "Next Dashboard" -#~ msgstr "次のダッシュボード" - -#~ msgid "Add dashboard" -#~ msgstr "ダッシュボードの追加" - -#~ msgid "Search results for" -#~ msgstr "検索結果:" - -#~ msgid "Screens" -#~ msgstr "画面" - -#~ msgid "Dashboard options" -#~ msgstr "ダッシュボードオプション" - -#~ msgid "Add new widget" -#~ msgstr "新規ウィジェットの追加" - -#~ msgid "Add widget" -#~ msgstr "ウィジェット追加" - -#~ msgid "Update dashboard" -#~ msgstr "ダッシュボードの更新" - -#~ msgid "Delete dashboard" -#~ msgstr "ダッシュボードの削除" - -#~ msgid "Succesful updated" -#~ msgstr "更新しました" - -#~ msgid "Unsucessful updated" -#~ msgstr "更新に失敗しました" - -#~ msgid "Fields" -#~ msgstr "フィールド" - -#~ msgid "Tactical View" -#~ msgstr "モニタ状態表示" - -#~ msgid "Create visualmap" -#~ msgstr "ビジュアルマップの作成" - -#~ msgid "Web check" -#~ msgstr "ウェブチェック" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Pandora FMS インスタンスに接続できません" - -#~ msgid "Create module" -#~ msgstr "モジュールの作成" - -#~ msgid "Module description" -#~ msgstr "モジュールの説明" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "追加しようとしているアラートは、アラート一覧にすでにあります。" - -#~ msgid "Please, select an alert" -#~ msgstr "アラートを選択してください" - -#~ msgid "Please, select a module" -#~ msgstr "モジュールを選択してください" - -#~ msgid "Edit module" -#~ msgstr "モジュールの編集" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "他のエージェントがすでに同じ名前で存在します" - -#~ msgid "Please, select an agent" -#~ msgstr "エージェントを選択してください" - -#~ msgid "String" -#~ msgstr "文字列" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "編集または削除するエージェントを選択" - -#~ msgid "Please, set an interval" -#~ msgstr "間隔を設定してください" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "モジュールを作成するエージェントを選択" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "正しい IP アドレスを設定してください" - -#~ msgid "Edit agent" -#~ msgstr "エージェントの編集" - -#~ msgid "Advanced configuration" -#~ msgstr "拡張設定" - -#~ msgid "Preview" -#~ msgstr "プレビュー" - -#~ msgid "Please, set a name" -#~ msgstr "名前を設定してください" - -#~ msgid "Groups synchronization" -#~ msgstr "グループ同期" - -#~ msgid "Alerts synchronization" -#~ msgstr "アラート同期" - -#~ msgid "Components synchronization" -#~ msgstr "コンポーネント同期" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "編集または削除するアラートの選択" - -#~ msgid "Group View" -#~ msgstr "グループ表示" - -#~ msgid "Synchronizing" -#~ msgstr "同期中" - -#~ msgid "Users synchronization" -#~ msgstr "ユーザ同期" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "アラートを作成するモジュールの選択" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "編集または削除するモジュールの選択" - -#~ msgid "Create Module" -#~ msgstr "モジュールの作成" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "更新できませでした、%s でエラーです。" - -#~ msgid "Customize sections" -#~ msgstr "セクションのカスタマイズ" - -#~ msgid "Tags synchronization" -#~ msgstr "タグ同期" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "ユーザ %s を更新しました" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "ユーザ %s の更新エラー" - -#~ msgid "Passwords" -#~ msgstr "パスワード" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "選択したセクションを無効にする" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "選択したセクションを有効にする" - -#~ msgid "Enabled sections" -#~ msgstr "有効化セクション" - -#~ msgid "Disabled sections" -#~ msgstr "無効化セクション" - -#~ msgid "Copy profile" -#~ msgstr "プロファイルのコピー" - -#~ msgid "New profile" -#~ msgstr "新規プロファイル" - -#~ msgid "This metaconsole" -#~ msgstr "このメタコンソール" - -#~ msgid "Profile mode" -#~ msgstr "プロファイルモード" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "グループ/プロファイル/ユーザの要素を作成・更新しました (%d/%d/%d)" - -#~ msgid "Profile synchronization mode." -#~ msgstr "プロファイル同期モード" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "%s への接続エラー" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "ユーザ %s の作成エラー" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "ユーザ %s を作成しました" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "ユーザのオリジナルプロファイルをコピーするには、これをチェックします" - -#~ msgid "Sync" -#~ msgstr "同期" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "%s コンポーネントグループ作成エラー " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "%s コンポーネントグループを作成しました" - -#~ msgid "Metaconsole elements" -#~ msgstr "メタコンソール要素" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "一部のビュー内での各インスタンスの要素数" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "テンプレートの作成(%s)/更新(%s)エラー" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 " - -#~ msgid "Could not be delete" -#~ msgstr "削除できませんでした" - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "メタコンソールに追加されたサーバがありません" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "コマンドの作成(%s)/更新(%s)エラー" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "コマンドを作成(%s)/更新(%s)しました" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "アクションの作成(%s)/更新(%s)エラー" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "アクションを作成(%s)/更新(%s)しました" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "テンプレートを作成(%s)/更新(%s)しました。" - -#~ msgid "Consoles Setup" -#~ msgstr "コンソール設定" - -#~ msgid "Original string" -#~ msgstr "オリジナルの文字列" - -#~ msgid "Please search for anything text." -#~ msgstr "任意のテキストで検索してください。" - -#~ msgid "Active events history" -#~ msgstr "アクティブイベント履歴" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "タグを作成(%s)/更新(%s)しました" - -#~ msgid "Customize translation" -#~ msgstr "翻訳カスタマイズ" - -#~ msgid "Translation in selected language" -#~ msgstr "選択した言語での翻訳" - -#~ msgid "Only database" -#~ msgstr "データベースのみ" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "タグの作成(%s)/更新(%s)エラー" - -#~ msgid "Strings translation" -#~ msgstr "文字列翻訳" - -#~ msgid "Performance setup" -#~ msgstr "パフォーマンス設定" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "グループの作成(%s)/更新(%s)エラー" - -#~ msgid "Consoles setup" -#~ msgstr "コンソール設定" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "グループを作成(%s)/更新(%s)しました" - -#~ msgid "Visual setup" -#~ msgstr "表示設定" - -#~ msgid "Passwords setup" -#~ msgstr "パスワード設定" - -#~ msgid "General setup" -#~ msgstr "一般設定" - -#~ msgid "Successfully moved" -#~ msgstr "移動しました" - -#~ msgid "Could not be moved" -#~ msgstr "移動できませんでした" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコンソールの IP が設定されていない可能性があります。" - -#~ msgid "Policies queue" -#~ msgstr "ポリシーキュー" - -#~ msgid "Apply policies" -#~ msgstr "ポリシー適用" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "%s ポリシーアラートを作成しました" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "%s ポリシーモジュールを削除しました" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "%s ポリシーアラートの作成エラー" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "Pandora FMS の利用には、以下を使うことを強くお勧めします" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox または Google Chrome ブラウザ。" - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "%s ポリシーアラートの削除エラー" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "%s ポリシーアラートを削除しました" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必要であればシステム管理者へ問い合わせてください。
" - -#~ msgid "Network traffic" -#~ msgstr "ネットワークトラフィック" - -#~ msgid "Monitors view" -#~ msgstr "モニタ表示" - -#~ msgid "Create new report" -#~ msgstr "新規レポート作成" - -#~ msgid "Tag management" -#~ msgstr "タグ管理" - -#~ msgid "Alert management" -#~ msgstr "アラート管理" - -#~ msgid "Policy management" -#~ msgstr "ポリシー管理" - -#~ msgid "Templates wizard" -#~ msgstr "テンプレートウィザード" - -#~ msgid "Report templates" -#~ msgstr "レポートテンプレート" - -#~ msgid "Agent management" -#~ msgstr "エージェント管理" - -#~ msgid "Live view" -#~ msgstr "ライブビュー" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "ネットワークマップの更新に失敗しました" - -#~ msgid "Successful update the networkmap." -#~ msgstr "ネットワークマップを更新しました" - -#~ msgid "Filter by agents" -#~ msgstr "エージェントでのフィルタ" - -#~ msgid "Filter by modules" -#~ msgstr "モジュールでのフィルタ" - -#~ msgid "Show modules" -#~ msgstr "モジュール表示" - -#~ msgid "Back to login" -#~ msgstr "ログインに戻る" - -#~ msgid "Category management" -#~ msgstr "カテゴリ管理" - -#~ msgid "Undo changes" -#~ msgstr "変更を元に戻す" - -#~ msgid "Add selected modules to agent" -#~ msgstr "選択したモジュールのエージェントへの追加" - -#~ msgid "Agent modules" -#~ msgstr "エージェントモジュール" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "ネットワークマップを生成するために %s Pandora へ接続できません" - -#~ msgid "Response" -#~ msgstr "応答" - -#~ msgid "Check type" -#~ msgstr "チェックタイプ" - -#~ msgid "Latency" -#~ msgstr "待ち時間" - -#~ msgid "Show modulegroup" -#~ msgstr "モジュールグループ表示" - -#~ msgid "There is no group selected" -#~ msgstr "グループが選択されていません" - -#~ msgid "Show children Metaconsole" -#~ msgstr "子メタコンソール表示" - -#~ msgid "String to check" -#~ msgstr "チェック文字列" - -#~ msgid "Delete check" -#~ msgstr "チェックを削除" - -#~ msgid "Add check" -#~ msgstr "チェックを追加" - -#~ msgid "Alerts in module" -#~ msgstr "モジュール内のアラート" - -#~ msgid "Thresholds" -#~ msgstr "しきい値" - -#~ msgid "Web configuration" -#~ msgstr "ウェブ設定" - -#~ msgid "Checks" -#~ msgstr "チェック" - -#~ msgid "Deleted modules" -#~ msgstr "削除済エージェント" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "モジュール %s 追加エラー" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "モジュール %s の更新エラー" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s モジュールを削除しました" - -#~ msgid "Agent successfully updated" -#~ msgstr "エージェントを更新しました" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "アラート作成でエラーが発生しました。操作はキャンセルされました。" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "エージェント %s を作成できませんでした" - -#~ msgid "Agent successfully added" -#~ msgstr "エージェントを追加しました" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "エージェント %s を更新できませんでした" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s モジュールを作成しました" - -#~ msgid "Successfully updated module." -#~ msgstr "モジュールを更新しました。" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "アラートの更新でエラーが発生しました。操作はキャンセルされました。" - -#~ msgid "Create new alert" -#~ msgstr "新規アラート作成" - -#~ msgid "Go to module detail" -#~ msgstr "モジュール詳細へ" - -#~ msgid "Go to agent detail" -#~ msgstr "エージェント詳細へ" - -#~ msgid "Create new module" -#~ msgstr "新規モジュール作成" - -#~ msgid "User synchronization" -#~ msgstr "ユーザ同期" - -#~ msgid "Group synchronization" -#~ msgstr "グループ同期" - -#~ msgid "No admin user" -#~ msgstr "管理者ではありません" - -#~ msgid "Manage agent modules" -#~ msgstr "エージェントモジュール管理" - -#~ msgid "Customizable section" -#~ msgstr "カスタマイズ可能なセクション" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow は、カスタムライブビューフィルタを無効にします" - -#~ msgid "Log viewer" -#~ msgstr "ログ・ビューワ" - -#~ msgid "Delete alert" -#~ msgstr "アラート削除" - -#~ msgid "There was a problem loading tag" -#~ msgstr "タグのロードで問題が発生しました" - -#~ msgid "Stand By" -#~ msgstr "スタンバイ" - -#~ msgid "Go to Alert detail" -#~ msgstr "アラート詳細へ" - -#~ msgid "Edit plugin" -#~ msgstr "プラグイン編集" - -#~ msgid "Plugin management" -#~ msgstr "プラグイン管理" - -#~ msgid "Create plugin" -#~ msgstr "プラグイン作成" - -#~ msgid "Start date" -#~ msgstr "開始日時" - -#~ msgid "Copy Dashboard" -#~ msgstr "ダッシュボードのコピー" - -#~ msgid "Network console" -#~ msgstr "ネットワークコンソール" - -#~ msgid "Export this list to CSV" -#~ msgstr "この一覧を CSV へエクスポートする" - -#~ msgid "Error deleting service" -#~ msgstr "サービスの削除エラー" - -#~ msgid "Service deleted successfully" -#~ msgstr "サービスを削除しました" - -#~ msgid "Custom SQL" -#~ msgstr "カスタム SQL" - -#~ msgid "Could not be updated." -#~ msgstr "更新できませんでした。" - -#~ msgid "Success be updated." -#~ msgstr "更新しました。" - -#~ msgid "Service Map" -#~ msgstr "サービスマップ" - -#~ msgid "List of elements" -#~ msgstr "要素一覧" - -#~ msgid "Last contact: " -#~ msgstr "最新の接続: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Enterprise ネットワークマップ" - -#~ msgid "Not found networkmap." -#~ msgstr "ネットワークマップがありません。" - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Enterprise ネットワークマップ - %s" - -#~ msgid "Succesfully created" -#~ msgstr "作成しました" - -#~ msgid "Succesfully updated" -#~ msgstr "更新しました" - -#~ msgid "Policy: " -#~ msgstr "ポリシー: " - -#~ msgid "Data: " -#~ msgstr "データ: " - -#~ msgid "Status: " -#~ msgstr "状態: " - -#~ msgid "Succesfully deleted" -#~ msgstr "削除しました" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "このエージェントに割り当てられたコレクションがありません" - -#~ msgid "Succesfully duplicate" -#~ msgstr "複製しました" - -#~ msgid "Could not be duplicated" -#~ msgstr "複製できませんでした" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "ネットワークマップはすでに作成済です。" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "ネットワークマップの大きさ (幅 x 高さ)" - -#~ msgid "Refresh networkmap state" -#~ msgstr "ネットワークマップの状態更新" - -#~ msgid "Method generation networkmap" -#~ msgstr "ネットワークマップ生成手法" - -#~ msgid "Details of node:" -#~ msgstr "ノードの詳細:" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "このエージェントにはポリシーが適用されていません" - -#~ msgid "Networkmap resized." -#~ msgstr "ネットワークマップをリサイズしました。" - -#~ msgid "Error process map" -#~ msgstr "マップの処理エラー" - -#~ msgid "Update networkmap" -#~ msgstr "ネットワークマップの更新" - -#~ msgid "Save networkmap" -#~ msgstr "ネットワークマップの保存" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "DB内に保存されているため操作は元に戻せません。" - -#~ msgid "Resize the networkmap" -#~ msgstr "ネットワークマップのリサイズ" - -#~ msgid "Relationship" -#~ msgstr "関連" - -#~ msgid "Show Modules" -#~ msgstr "モジュール表示" - -#~ msgid "Show Alert" -#~ msgstr "アラート表示" - -#~ msgid "Descripttion" -#~ msgstr "説明" - -#~ msgid "Show Collection" -#~ msgstr "コレクション表示" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Backup" -#~ msgstr "バックアップ" - -#~ msgid "Export to PDF" -#~ msgstr "PDF にエクスポート" - -#~ msgid "Create backup" -#~ msgstr "バックアップの作成" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Pandora データベースバックアップユーティリティ" - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "'%s' エージェント追加エラー" - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "'%s' エージェントを追加しました" - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "'%s' ポリシー作成エラー" - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "'%s' ポリシーを作成しました。" - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "'%s' コレクションを追加しました。" - -#~ msgid "Error the policy haven't name." -#~ msgstr "ポリシーに名前がありません。" - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "'%s' ポリシー作成エラー。すでに存在する名前です。" - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "'%s' ポリシー作成で警告です。%s という名前がすでにあります。" - -#~ msgid "Error add the module, haven't type." -#~ msgstr "モジュール追加エラー。タイプがありません。" - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "'%s' コレクション追加エラー" - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "'%s' モジュールを追加しました。" - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "モジュール追加エラー。タグコンポーネント内にエラーがあります。" - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "アラート追加エラー。モジュール '%s' は存在しません。" - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "'%s' アラートを追加しました。" - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "'%s' モジュール追加エラー" - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "アラート追加エラー。テンプレート '%s' は存在しません。" - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "'%s' アラート追加エラー" - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "アラートの追加エラー。アクション '%s' は存在しません。" - -#~ msgid "Yearly" -#~ msgstr "年次" - -#~ msgid "Hourly" -#~ msgstr "毎時" - -#~ msgid "Save custom report to disk" -#~ msgstr "カスタムレポートをディスクに保存" - -#~ msgid "Send custom report by email" -#~ msgstr "カスタムレポートをメールで送信" - -#~ msgid "Backup Pandora database" -#~ msgstr "Pandora データベースバックアップ" - -#~ msgid "Send to email" -#~ msgstr "送信先メールアドレス" - -#~ msgid "Save to disk into path" -#~ msgstr "保存先パス" - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "'%s' アクションを追加しました" - -#~ msgid "Report to build" -#~ msgstr "生成するレポート" - -#~ msgid "Not scheduled" -#~ msgstr "スケジュールされていません" - -#~ msgid "Cron jobs" -#~ msgstr "Cron ジョブ" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "このメールには返信しないでください" - -#~ msgid "Open the attached file to view it" -#~ msgstr "添付ファイルを開く" - -#~ msgid "This is the automatic generated report" -#~ msgstr "これは自動生成レポートです" - -#~ msgid "Cron extension is not running" -#~ msgstr "Cron 実行が稼動していません" - -#~ msgid "Edit job" -#~ msgstr "ジョブ編集" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "パスが存在しないか書き込みできません" - -#~ msgid "Add new job" -#~ msgstr "新規ジョブ追加" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "この拡張は、時間で実行する cron の設定に依存します。" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "Cron 拡張は、正しく設定しないと動作しません" - -#~ msgid "Scheduled jobs" -#~ msgstr "スケジュールされたジョブ" - -#~ msgid "Cron extension is running" -#~ msgstr "Cron 実行が動作中です" - -#~ msgid "Last execution" -#~ msgstr "最後の実行" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "次の行を crontab に追加してください" - -#~ msgid "Task" -#~ msgstr "タスク" - -#~ msgid "Scheduled" -#~ msgstr "スケジュール" - -#~ msgid "First_execution" -#~ msgstr "初回実行" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可能性があります。" - -#~ msgid "Last run" -#~ msgstr "最後の実行" - -#~ msgid "Force run" -#~ msgstr "強制実行" - -#~ msgid "Separator" -#~ msgstr "セパレータ" - -#~ msgid "Upload CSV file" -#~ msgstr "CSV ファイルのアップロード" - -#~ msgid "File processed" -#~ msgstr "ファイルを処理しました" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "エージェント %s を作成しました" - -#~ msgid "CSV format" -#~ msgstr "CSV フォーマット" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "CSV ファイルのフィールドは、次の順番でなければいけません" - -#~ msgid "Translate string" -#~ msgstr "翻訳文字列" - -#~ msgid "CSV import" -#~ msgstr "CSV インポート" - -#~ msgid "Path" -#~ msgstr "パス" - -#~ msgid "First execution" -#~ msgstr "初回実行" - -#~ msgid "Templates list" -#~ msgstr "テンプレート一覧" - -#~ msgid "Advance options" -#~ msgstr "拡張オプション" - -#~ msgid "Templates Wizard" -#~ msgstr "テンプレートウィザード" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "エージェントグラフ(%s) - %s" - -#~ msgid "Template editor" -#~ msgstr "テンプレート編集" - -#~ msgid "Get PDF file" -#~ msgstr "PDF ファイル取得" - -#~ msgid "MAX Value" -#~ msgstr "最大値" - -#~ msgid "% Wrong" -#~ msgstr "% 異常" - -#~ msgid "% OK" -#~ msgstr "% 正常" - -#~ msgid "Report type" -#~ msgstr "レポートタイプ" - -#~ msgid "Last 8 hours events" -#~ msgstr "直近 8時間のイベント" - -#~ msgid "Modules under" -#~ msgstr "次の数値未満のモジュール" - -#~ msgid "Uknown agents" -#~ msgstr "不明エージェント" - -#~ msgid "MIN Value" -#~ msgstr "最小値" - -#~ msgid "Modules at normal status" -#~ msgstr "正常状態のモジュール" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "障害または警告状態のモジュール" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "%s 以上のモジュールはありません" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "%s 未満のモジュールはありません" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "正常状態のモジュールはありません" - -#~ msgid "Serialized data " -#~ msgstr "連続データ " - -#~ msgid "Crit:" -#~ msgstr "障害:" - -#~ msgid "There are no data." -#~ msgstr "データがありません。" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "これらの状態未満のモジュールはありません" - -#~ msgid "Ok:" -#~ msgstr "正常:" - -#~ msgid "Warn:" -#~ msgstr "警告:" - -#~ msgid "Value:" -#~ msgstr "値:" - -#~ msgid "Network map linked" -#~ msgstr "リンクされたネットワークマップ" - -#~ msgid "Color" -#~ msgstr "色" - -#~ msgid "Shape" -#~ msgstr "形" - -#~ msgid "Add fictional point" -#~ msgstr "仮想ポイント追加" - -#~ msgid "Rhombus" -#~ msgstr "ひしがた" - -#~ msgid "Open Minimap" -#~ msgstr "ミニマップを開く" - -#~ msgid "Square" -#~ msgstr "四角" - -#~ msgid "Circle" -#~ msgstr "円" - -#~ msgid "Show modules:" -#~ msgstr "モジュール表示:" - -#~ msgid "Copy of " -#~ msgstr "コピー: " - -#~ msgid "Module alert" -#~ msgstr "モジュールアラート" - -#~ msgid "Empty configuration" -#~ msgstr "設定が空です" - -#~ msgid "Empty OS" -#~ msgstr "OS が空です" - -#~ msgid "Lines" -#~ msgstr "行" - -#~ msgid "Metaconsole" -#~ msgstr "メタコンソール" - -#~ msgid "There are no alerts for this module." -#~ msgstr "このモジュールにアラートがありません。" - -#~ msgid "There are no events for this module." -#~ msgstr "このモジュールにイベントがありません。" - -#~ msgid "There are no agents with modules." -#~ msgstr "モジュールのあるエージェントがありません。" - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "エージェント/モジュールが定義されていません。" - -#~ msgid "Untitled" -#~ msgstr "無題" - -#~ msgid "Report date: " -#~ msgstr "レポート日時: " - -#~ msgid "There are no modules." -#~ msgstr "モジュールがありません。" - -#~ msgid "There are no events in group." -#~ msgstr "グループにイベントがありません。" - -#~ msgid "There are no Events." -#~ msgstr "イベントがありません。" - -#~ msgid "Agent:" -#~ msgstr "エージェント:" - -#~ msgid "Module:" -#~ msgstr "モジュール:" - -#~ msgid "Restoring a backup" -#~ msgstr "バックアップのリストア中" - -#~ msgid "No description" -#~ msgstr "説明がありません" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" - -#~ msgid "Restore the backup" -#~ msgstr "バックアップをリストアします" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "新たなデータベースを使うようにコンソール設定を修正します" - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "次のコマンドで MySQL データベースへ接続します" - -#~ msgid "Create a new database" -#~ msgstr "新規データベースを作成します" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "選択したバックアップをリストアするには、これらの手順に従ってください" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "次の場所にある root のシェルを開いてください: " - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "サーバを再起動し、コンソールからログインしなおします" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "サーバ設定ファイルを見つけ、次の行を書き換えます" - -#~ msgid "Into your destination database." -#~ msgstr "対象データベースに入ります。" - -#~ msgid "Log collector" -#~ msgstr "ログ収集" - -#~ msgid "and replace with" -#~ msgstr "次の通り書き換えます" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "新たなデータベースを使うようにサーバ設定を修正します" - -#~ msgid "Open configuration file" -#~ msgstr "設定ファイルを開きます" - -#~ msgid "Find" -#~ msgstr "以下をみつけ" - -#~ msgid "Run import command using the following command" -#~ msgstr "次のコマンドを使って、インポートコマンドを実行します" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "指定したホストへの接続エラー" - -#~ msgid "Database credentials not found" -#~ msgstr "データベースの認証情報がありません" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必須です。" - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "ホストへ接続しましたが、指定されたデータベースが見つかりません。" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確認してください" - -#~ msgid "Last event replication" -#~ msgstr "最新のイベント複製" - -#~ msgid "Get CSV file" -#~ msgstr "CSV ファイルを取得" - -#~ msgid "Tree view by tags" -#~ msgstr "タグごとのツリー表示" - -#~ msgid "No changes found" -#~ msgstr "変更がありません" - -#~ msgid "Agent store the service does not exist." -#~ msgstr "サービスを保存するエージェントがありません。" - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "SLAサービスを保存するモジュールがありません。" - -#~ msgid "Module store the service does not exist." -#~ msgstr "サービスを保存するモジュールがありません。" - -#~ msgid "Service does not exist." -#~ msgstr "サービスがありません。" - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "障害アラートSLAサービスがありません。" - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "SLAサービスを保存するエージェントがありません。" - -#~ msgid "Weight Critical" -#~ msgstr "障害ウエイト" - -#~ msgid "There are no service elements defined" -#~ msgstr "サービス要素が定義されていません" - -#~ msgid "Critical (Alert)" -#~ msgstr "障害 (アラート)" - -#~ msgid "Unknow" -#~ msgstr "不明" - -#~ msgid "Weight Warning" -#~ msgstr "警告ウエイト" - -#~ msgid "Weight Unknown" -#~ msgstr "不明ウエイト" - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "サービス %s のモジュール自動生成" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "不明アラートサービスがありません。" - -#~ msgid "Alert critical service does not exist." -#~ msgstr "障害アラートサービスがありません。" - -#~ msgid "Alert warning service does not exist." -#~ msgstr "警告アラートサービスがありません。" - -#~ msgid "Weight Ok" -#~ msgstr "正常ウエイト" - -#~ msgid "Delete service element" -#~ msgstr "サービス要素削除" - -#~ msgid "Policy linkation" -#~ msgstr "ポリシーリンク" - -#~ msgid "Relink to policy" -#~ msgstr "ポリシーへの再リンク" - -#~ msgid "Module unlinked" -#~ msgstr "未リンクモジュール" - -#~ msgid "FAIL" -#~ msgstr "失敗" - -#~ msgid "Module pending to unlink" -#~ msgstr "リンク解除待ちモジュール" - -#~ msgid "Module pending to link" -#~ msgstr "リンク待ちモジュール" - -#~ msgid "Unlink from policy" -#~ msgstr "ポリシーからリンクを外す" - -#~ msgid "Module linked" -#~ msgstr "リンク済モジュール" - -#~ msgid "Change" -#~ msgstr "変更" - -#~ msgid " previous changes." -#~ msgstr " 回前までの変更" - -#~ msgid "Password must be different" -#~ msgstr "パスワードは違うものでなければいけません" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "ユーザがブロックされました。次の時間経過後に再度試してください: " - -#~ msgid " minutes" -#~ msgstr " 分" - -#~ msgid "Password must be different from the " -#~ msgstr "パスワードは、次と異なっている必要があります: " - -#~ msgid "CONFIRM: " -#~ msgstr "確認: " - -#~ msgid "You must change password" -#~ msgstr "パスワードを変更する必要があります" - -#~ msgid "Create a new policy map" -#~ msgstr "新規ポリシーマップ作成" - -#~ msgid "NEW PASS: " -#~ msgstr "新規パスワード: " - -#~ msgid "Config Elements" -#~ msgstr "要素編集" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力する必要があります" - -#~ msgid "Log Collector" -#~ msgstr "ログ収集" - -#~ msgid "New Service" -#~ msgstr "新規サービス" - -#~ msgid "SNMP operations" -#~ msgstr "SNMP 操作" - -#~ msgid "Collections" -#~ msgstr "コレクション" - -#~ msgid "Policies operations" -#~ msgstr "ポリシー操作" - -#~ msgid "Manage policies" -#~ msgstr "ポリシー管理" - -#~ msgid "Error empty module" -#~ msgstr "モジュールが空です" - -#~ msgid "Edit service elements" -#~ msgstr "サービス要素編集" - -#~ msgid "Error empty service" -#~ msgstr "サービスが空です" - -#~ msgid "Warning Service alert" -#~ msgstr "警告サービスアラート" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "制限は、0 と 100 の間で設定してください。" - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA 障害サービスアラート" - -#~ msgid "Critical Service alert" -#~ msgstr "障害サービスアラート" - -#~ msgid "S.L.A. interval" -#~ msgstr "SLA 間隔" - -#~ msgid "Error empty agent" -#~ msgstr "エージェントが空です" - -#~ msgid "S.L.A. limit" -#~ msgstr "SLA 制限" - -#~ msgid "Error creating service element" -#~ msgstr "サービス要素の作成エラー" - -#~ msgid "Service element created successfully" -#~ msgstr "サービス要素を作成しました" - -#~ msgid "Service element deleted successfully" -#~ msgstr "サービス要素を削除しました" - -#~ msgid "Error deleting service element" -#~ msgstr "サービス要素の削除エラー" - -#~ msgid "Service element updated successfully" -#~ msgstr "サービス要素を更新しました" - -#~ msgid "Error updating service element" -#~ msgstr "サービス要素の更新エラー" - -#~ msgid "First select an agent" -#~ msgstr "最初にエージェントを選択" - -#~ msgid "Critical weight" -#~ msgstr "障害ウエイト" - -#~ msgid "Edit element service" -#~ msgstr "サービス要素編集" - -#~ msgid "Create element service" -#~ msgstr "サービス要素作成" - -#~ msgid "Security check is fail." -#~ msgstr "セキュリティチェックに失敗しました。" - -#~ msgid "Security check is ok." -#~ msgstr "セキュリティチェックは正常です。" - -#~ msgid "Target" -#~ msgstr "対象" - -#~ msgid "Check" -#~ msgstr "チェック" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "データ設定の正常性を確認" - -#~ msgid "Recreate file" -#~ msgstr "ファイル再生成" - -#~ msgid "Load basic" -#~ msgstr "基本設定読み込み" - -#~ msgid "Another collection with the same short name" -#~ msgstr "他のコレクションに同じ短い名前があります" - -#~ msgid "Update all" -#~ msgstr "全て更新" - -#~ msgid "Manager configuration > New" -#~ msgstr "設定管理 > 新規" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "設定管理 > 編集 " - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "データ設定に基本構造をロードします" - -#~ msgid "Error forcing inventory module" -#~ msgstr "インベントリモジュールの強制実行エラー" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "インベントリモジュールを強制実行しました" - -#~ msgid "Invalid characters in short name" -#~ msgstr "短い名前に不正な文字が含まれています" - -#~ msgid "Add module to operations as divide" -#~ msgstr "割り算処理にモジュールを追加" - -#~ msgid "Remove selected modules" -#~ msgstr "選択したモジュールの削除" - -#~ msgid "Add module to average operation" -#~ msgstr "平均処理にモジュールを追加" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "引き算処理にモジュールを追加" - -#~ msgid "Add module to operation as add" -#~ msgstr "足し算処理にモジュールを追加" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "掛け算処理にモジュールを追加 " - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレクトリ名です。" - -#~ msgid "Dir" -#~ msgstr "ディレクトリ" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "このエージェントはリモート設定ではありません。設定してください。" - -#~ msgid "Outdate" -#~ msgstr "期限切れ" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP 認証(realm)" - -#~ msgid "Add module" -#~ msgstr "モジュール追加" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Pandora 内のリモートエージェント設定ファイル削除" - -#~ msgid "Files in " -#~ msgstr "次の中に存在するファイル: " - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "ウェブチェックに基本構造を読み込む" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "ウェブチェックの構造確認" - -#~ msgid "Web checks" -#~ msgstr "ウェブチェック" - -#~ msgid "Filter agent" -#~ msgstr "エージェントのフィルタ" - -#~ msgid "Agents available" -#~ msgstr "存在するエージェント" - -#~ msgid "Elements to apply" -#~ msgstr "適用する要素" - -#~ msgid "Undo agents to template" -#~ msgstr "エージェントをテンプレートから外します" - -#~ msgid "Please set template distinct than " -#~ msgstr "次より明確なテンプレートを指定してください: " - -#~ msgid ": Create new custom" -#~ msgstr ": 新規カスタム作成" - -#~ msgid "Graph template editor" -#~ msgstr "グラフテンプレートエディタ" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "整理しました" - -#~ msgid "Cleanup error" -#~ msgstr "整理エラー" - -#~ msgid "Clean up template" -#~ msgstr "整理テンプレート" - -#~ msgid "Successfully operation" -#~ msgstr "操作が完了しました" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" - -#~ msgid "Modules to match" -#~ msgstr "マッチするモジュール" - -#~ msgid "Create report per agent" -#~ msgstr "エージェントごとのレポート作成" - -#~ msgid "Could not be operation" -#~ msgstr "操作を完了できませんでした" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "マッチするモジュール (任意のテキスト)" - -#~ msgid "Create a graph for each agent" -#~ msgstr "それぞれのエージェントのグラフ作成" - -#~ msgid "Variable" -#~ msgstr "値" - -#~ msgid "Linking modules" -#~ msgstr "リンク中モジュール" - -#~ msgid "Pending update policy only database" -#~ msgstr "データベースのみポリシー更新待ち" - -#~ msgid "Pending update policy" -#~ msgstr "ポリシー更新待ち" - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "最後の適用" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "エラー: ポリシーへのモジュールリンク更新" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "成功: ポリシーへのモジュールリンク更新" - -#~ msgid "Link pending modules" -#~ msgstr "リンク待ちモジュール" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "データベースにのみ適用キューを追加" - -#~ msgid "Add policy" -#~ msgstr "ポリシー追加" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "キューから操作を削除できません" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "キューから操作を削除しました" - -#~ msgid "Update pending agents" -#~ msgstr "更新待ちエージェント" - -#~ msgid "Update pending" -#~ msgstr "更新待ち" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "キューから操作を削除できません" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "キューから操作を削除しました" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "次回のポリシー適用でリンクされます" - -#~ msgid "Unlink pending modules" -#~ msgstr "リンク解除待ちモジュール" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "次回のポリシー適用でリンクが解除されます" - -#~ msgid "Delete pending" -#~ msgstr "削除待ち" - -#~ msgid "Delete pending modules" -#~ msgstr "削除待ちモジュール" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "削除待ちインベントリモジュール" - -#~ msgid "Delete pending agents" -#~ msgstr "削除待ちエージェント" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "次回のポリシー適用で削除されます" - -#~ msgid "Delete pending alerts" -#~ msgstr "削除待ちアラート" - -#~ msgid "Delete pending external alerts" -#~ msgstr "削除待ち外部アラート" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "重複もしくは完了できない操作がキューにあります" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "操作をキューに追加しました" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "操作をキューに追加できません" - -#~ msgid "List event alerts" -#~ msgstr "イベントアラート一覧" - -#~ msgid "Delete pending plugins" -#~ msgstr "削除待ちプラグイン" - -#~ msgid "Delete pending file collections" -#~ msgstr "削除待ちファイルコレクション" - -#~ msgid "Queue summary" -#~ msgstr "キューサマリ" - -#~ msgid "Advices" -#~ msgstr "アドバイス" - -#~ msgid "Builder event alert" -#~ msgstr "イベントアラートビルダ" - -#~ msgid "Duplicated alert" -#~ msgstr "アラートが重複しています" - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Error updating rule operators" -#~ msgstr "ルールオペレータの更新エラー" - -#~ msgid "Please Read" -#~ msgstr "読んでください" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することができます。" - -#~ msgid "Group by" -#~ msgstr "グループ化" - -#~ msgid "Update operators" -#~ msgstr "オペレータの更新" - -#~ msgid "Successfully update rule operators" -#~ msgstr "ルールオペレータを更新しました" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "これらのルールの論理式:" - -#~ msgid "View associated rules" -#~ msgstr "関連付けルール表示" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Private dashboard" -#~ msgstr "プライベートダッシュボード" - -#~ msgid "Add new dashboard view" -#~ msgstr "新規ダッシュボード表示追加" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "ユーザは EW 権限のあるグループに含まれていません" - -#~ msgid "separate fields with " -#~ msgstr "フィールドセパレータは、 " - -#~ msgid "Interpreter" -#~ msgstr "処理系" - -#~ msgid "General and quick visual maps report" -#~ msgstr "一般およびクイックビジュアルマップレポート" - -#~ msgid "More events" -#~ msgstr "イベント追加" - -#~ msgid "Step by step wizard" -#~ msgstr "段階的ウィザード" - -#~ msgid "Next slide in" -#~ msgstr "次のスライドへの時間:" - -#~ msgid "General and quick group status report" -#~ msgstr "一般およびクイックグループ状態レポート" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "対象 DB にアラートアクションを作成しました" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "対象 DB にエージェントアラートを作成しました" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "設定内のリダイレクトサーバをソース DB に入れました" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "対象 DB にエージェントモジュールを作成しました" - -#~ msgid "Click Create to continue" -#~ msgstr "続けるには作成をクリックします" - -#~ msgid "created agent in destination DB" -#~ msgstr "対象 DB にエージェントを作成しました" - -#~ msgid "Propagation" -#~ msgstr "伝播" - -#~ msgid "Source Server" -#~ msgstr "ソースサーバ" - -#~ msgid "Move" -#~ msgstr "移動" - -#~ msgid "Destination Server" -#~ msgstr "対象サーバ" - -#~ msgid "disabled agent in source DB" -#~ msgstr "ソース DB のエージェントを無効化しました" - -#~ msgid "Policy Manager" -#~ msgstr "ポリシー管理" - -#~ msgid "Policies apply" -#~ msgstr "ポリシー適用" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "%s ポリシーを作成しました" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "%s ポリシー作成エラー" - -#~ msgid "Add agents to destination server" -#~ msgstr "対象サーバにエージェントを追加" - -#~ 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 "" -#~ "チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチします。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します" -#~ "。" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "%s ポリシーモジュールの削除エラー" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "ポリシーモジュールを作成(%s)/更新(%s)しました" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "ポリシーモジュールの作成(%s)/更新(%s)エラー" - -#~ msgid "Backups list" -#~ msgstr "バックアップ一覧" - -#~ msgid "Wizard SLA" -#~ msgstr "SLAウィザード" - -#~ msgid "Password too short" -#~ msgstr "パスワードが短すぎます" - -#~ msgid "% Limit" -#~ msgstr "% 制限" - -#~ msgid "Password empty" -#~ msgstr "パスワードが空です" - -#~ msgid "Password confirm does not match" -#~ msgstr "パスワード確認が一致しません" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "パスワードの更新エラー (変更なし?)" - -#~ msgid "Password must contain symbols" -#~ msgstr "パスワードには記号を含めなければいけません" - -#~ msgid "User pass successfully updated" -#~ msgstr "パスワードを更新しました" - -#~ msgid "Password must contain numbers" -#~ msgstr "パスワードには数字を含めなければいけません" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "拡張データが削除されているか、監査データが tsession_extended テーブルにありません。" - -#~ msgid "Unnamed " -#~ msgstr "名前無し " - -#~ msgid "Agents movement" -#~ msgstr "エージェント移動" - -#~ msgid "Various" -#~ msgstr "いろいろ" - -#~ msgid "Visual" -#~ msgstr "表示" - -#~ msgid "Not literally" -#~ msgstr "存在しません" - -#~ msgid "Toggle the module table" -#~ msgstr "モジュールテーブル切り替え" - -#~ msgid "(Un-adopted)" -#~ msgstr "(未採用)" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(未採用) (未リンク)" - -#~ msgid "(Adopted)" -#~ msgstr "(採用)" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(採用) (未リンク)" - -#~ msgid "Global" -#~ msgstr "全体" - -#~ msgid "Toggle the alert table" -#~ msgstr "アラートテーブル切り替え" - -#~ msgid "Toggle the collection table" -#~ msgstr "コレクションテーブル切り替え" - -#~ msgid "Lost" -#~ msgstr "失敗" - -#~ msgid "Policy outdate" -#~ msgstr "期限切れポリシー" - -#~ msgid "Modules detailed event" -#~ msgstr "モジュールイベント詳細" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "ユーザ定義レポートの Pandora FMS による自動生成" - -#~ msgid "Period: " -#~ msgstr "期間: " - -#~ msgid "Generated" -#~ msgstr "生成日" - -#~ msgid "Simple Graph" -#~ msgstr "単一グラフ" - -#~ msgid "Radius" -#~ msgstr "半径" - -#~ msgid "CONTENTS" -#~ msgstr "目次" - -#~ msgid "Synthetic average" -#~ msgstr "統合平均" - -#~ msgid "Synthetic arithmetic" -#~ msgstr "統合計算" - -#~ msgid "Generated: " -#~ msgstr "生成日: " - -#~ msgid "Metasetup" -#~ msgstr "メタセットアップ" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "ローカルコンポーネントの作成(%s)/更新(%s)エラー " - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "ネットワークコンポーネントの作成(%s)/更新(%s)エラー " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "ローカルコンポーネントを作成(%s)/更新(%s)しました" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "ネットワークコンポーネントを作成(%s)/更新(%s)しました" - -#~ msgid "Linking" -#~ msgstr "リンク" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "モジュール名に不正な文字があります" - -#~ msgid "Please select one or more groups." -#~ msgstr "一つ以上のグループを選択してください。" - -#~ msgid "Unsuccessful added modules" -#~ msgstr "モジュールを追加できませんでした" - -#~ msgid "Successful added modules" -#~ msgstr "モジュールを追加しました" - -#~ msgid "Top N events by module." -#~ msgstr "モジュールごとのトップ N イベント" - -#~ msgid "Top N Events by module." -#~ msgstr "モジュールごとのトップ N イベント" - -#~ msgid "Selection several modules" -#~ msgstr "複数モジュール選択" - -#~ msgid "Selection module one by one" -#~ msgstr "個別モジュール選択" - -#~ msgid "Top N events by agent." -#~ msgstr "エージェントごとのトップ N イベント" - -#~ msgid "Top N Events by agent." -#~ msgstr "エージェントごとのトップ N イベント" - -#~ msgid "avg" -#~ msgstr "平均" - -#~ msgid "Regex for to filter modules" -#~ msgstr "モジュールをフィルタする正規表現" - -#~ msgid "Filter modules" -#~ msgstr "モジュールをフィルタ" - -#~ msgid "Show a top n of agents modules." -#~ msgstr "エージェントモジュールのトップ N 表示" - -#~ msgid "There is not data to show." -#~ msgstr "表示するデータがありません。" - -#~ msgid "" -#~ "Please could you fill the widget data previous to filling the list items." -#~ msgstr "アイテム一覧の前に、ウィジェットデータを入力してください。" - -#~ msgid "Amount to show" -#~ msgstr "表示数" - -#~ msgid "Bit mask" -#~ msgstr "ビットマスク" - -#~ msgid "Net mask" -#~ msgstr "ネットマスク" - -#~ msgid "Example:" -#~ msgstr "例:" - -#~ msgid "Mask format" -#~ msgstr "マスクフォーマット" - -#~ msgid "No associated actions" -#~ msgstr "関連アクションがありません" - -#~ msgid "Broadcast address" -#~ msgstr "ブロードキャストアドレス" - -#~ msgid "Network wildcard" -#~ msgstr "ネットワークワイルドカード" - -#~ msgid "Network address" -#~ msgstr "ネットワークアドレス" - -#~ msgid "Incorrect mask format" -#~ msgstr "マスクフォーマットが不正です" - -#~ msgid "Network mask" -#~ msgstr "ネットワークマスク" - -#~ msgid "Address field is empty" -#~ msgstr "アドレスフィールドが空です" - -#~ msgid "Calculate" -#~ msgstr "計算" - -#~ msgid "Mask" -#~ msgstr "マスク" - -#~ msgid "Mask field is empty" -#~ msgstr "マスクフィールドが空です" - -#~ msgid "Incorrect address format" -#~ msgstr "アドレスフォーマットが不正です" - -#~ msgid "Hosts/Net" -#~ msgstr "ホスト/ネット" - -#~ msgid "Hostname" -#~ msgstr "ホスト名" - -#~ msgid "Operating system" -#~ msgstr "オペレーティングシステム" - -#~ msgid "Generate events" -#~ msgstr "イベント生成" - -#~ msgid "Successfully updated." -#~ msgstr "更新しました。" - -#~ msgid "Examples" -#~ msgstr "例" - -#~ msgid "Format: IP/Mask" -#~ msgstr "フォーマット: IP/マスク" - -#~ msgid "Ping" -#~ msgstr "Ping" - -#~ msgid "Network not found" -#~ msgstr "ネットワークが見つかりません" - -#~ msgid "Ping to host" -#~ msgstr "ホストへの Ping" - -#~ msgid "Edit network" -#~ msgstr "ネットワーク編集" - -#~ msgid "No networks found" -#~ msgstr "ネットワークが見つかりません" - -#~ msgid "Subnet" -#~ msgstr "サブネット" - -#~ msgid "No addresses found on this network" -#~ msgstr "このネットワークにアドレスが見つかりませんでした" - -#~ msgid "Export to Excel" -#~ msgstr "Excel にエクスポート" - -#~ msgid "Delete network" -#~ msgstr "ネットワーク削除" - -#~ msgid "Exact address match" -#~ msgstr "アドレスの完全一致" - -#~ msgid "Filter options" -#~ msgstr "フィルターオプション" - -#~ msgid "Show only managed addresses" -#~ msgstr "管理対象アドレスのみ表示" - -#~ msgid "Icons style" -#~ msgstr "アイコンスタイル" - -#~ msgid "Change to manual mode" -#~ msgstr "手動モードに切り替える" - -#~ msgid "This address will not be updated by the server" -#~ msgstr "このアドレスは、サーバにより更新されません" - -#~ msgid "Change to automatic mode" -#~ msgstr "自動モードに切り替える" - -#~ msgid "IPAM" -#~ msgstr "IPAM" - -#~ msgid "Subnetworks calculator" -#~ msgstr "サブネット計算" - -#~ msgid "Add comments" -#~ msgstr "コメント追加" - -#~ msgid "Please, uncheck auto option to set manual agent." -#~ msgstr "手動エージェントを設定するには、自動オプションを外してください。" - -#~ msgid "Update agent address" -#~ msgstr "エージェントアドレス更新" - -#~ msgid "Scan interval" -#~ msgstr "スキャン間隔" - -#~ msgid "This agent has other IPs" -#~ msgstr "このエージェントには他の IP があります" - -#~ msgid "Addresses view" -#~ msgstr "アドレス表示" - -#~ msgid "Manage addresses" -#~ msgstr "アドレス管理" - -#~ msgid "0 for manually scan" -#~ msgstr "0 を設定すると手動スキャンです" - -#~ msgid "ASC" -#~ msgstr "昇順" - -#~ msgid "DESC" -#~ msgstr "降順" - -#~ msgid "Edit address" -#~ msgstr "アドレス編集" - -#~ msgid "Last check" -#~ msgstr "最新の確認" - -#~ msgid "Big" -#~ msgstr "大" - -#~ msgid "Tiny" -#~ msgstr "小" - -#~ msgid "" -#~ "Left in blank if you want to use default name: Template name - agents (num " -#~ "agents) - Date" -#~ msgstr "デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用したい場合は、空白にしてください。" - -#~ msgid "Successfully duplicate the module." -#~ msgstr "モジュールを複製しました。" - -#~ msgid "Remote/Local" -#~ msgstr "リモート/ローカル" - -#~ msgid "Local module" -#~ msgstr "ローカルモジュール" - -#~ msgid "Managed" -#~ msgstr "管理対象" - -#~ msgid "Disabled address" -#~ msgstr "無効化アドレス" - -#~ msgid "IPs" -#~ msgstr "IP" - -#~ msgid "Show details" -#~ msgstr "詳細表示" - -#~ msgid "Service forced successfully" -#~ msgstr "サービスの強制実行をしました" - -#~ msgid "Error service forced" -#~ msgstr "サービスの強制実行エラー" - -#~ msgid " Inverse interval " -#~ msgstr " 条件の反転 " - -#~ msgid "ID Report" -#~ msgstr "レポートID" - -#~ msgid "Send to emails (separated by comma)" -#~ msgstr "メール送信 (カンマ区切り)" - -#~ msgid "Str: " -#~ msgstr "文字列: " - -#~ msgid "Show not alive hosts" -#~ msgstr "停止ホスト表示" - -#~ msgid "Last valid IP" -#~ msgstr "最後の有効IP" - -#~ msgid "Alive" -#~ msgstr "稼働" - -#~ msgid "First valid IP" -#~ msgstr "最初の有効IP" - -#~ msgid "For example: Central Data Center" -#~ msgstr "例: 中央データセンター" - -#~ msgid "Not alive" -#~ msgstr "停止" - -#~ msgid "Edited" -#~ msgstr "編集" - -#~ msgid "Set center" -#~ msgstr "中心設定" - -#~ msgid "Satellite operations" -#~ msgstr "サテライト操作" - -#~ msgid "Total IPs" -#~ msgstr "全IP" - -#~ msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -#~ msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" - -#~ msgid "Not managed" -#~ msgstr "管理対象外" - -#~ msgid "A -> Z" -#~ msgstr "A -> Z" - -#~ msgid "Z -> A" -#~ msgstr "Z -> A" - -#~ msgid "Newer -> Older" -#~ msgstr "新しい -> 古い" - -#~ msgid "Older -> Newer" -#~ msgstr "古い -> 新しい" - -#~ msgid "Day" -#~ msgstr "日" - -#~ msgid "Add node" -#~ msgstr "ノード追加" - -#~ msgid "Set parent" -#~ msgstr "親を設定" - -#~ msgid "Networkmap to link" -#~ msgstr "リンクするネットワークマップ" - -#~ msgid "Node options" -#~ msgstr "ノードオプション" - -#~ msgid "Set as children" -#~ msgstr "子に設定" - -#~ msgid "Updated modules on database" -#~ msgstr "データベース上のモジュールを更新しました" - -#~ msgid "Massive Satellite modules edition" -#~ msgstr "サテライトモジュール一括編集" - -#~ msgid "Agent configuration files updated" -#~ msgstr "エージェント設定ファイルを更新しました" - -#~ msgid "Update fictional node" -#~ msgstr "仮想ノード更新" - -#~ msgid "name fictional node" -#~ msgstr "仮想ノード名" - -#~ msgid "Edit node" -#~ msgstr "ノード編集" - -#, php-format -#~ msgid "Edit node %s" -#~ msgstr "ノード編集 %s" - -#~ msgid "Refresh Holding area" -#~ msgstr "保持エリアの更新" - -#~ msgid "Node source" -#~ msgstr "ノードソース" - -#~ msgid "" -#~ "It is setted any recon task, the nodes get from the recontask IP mask " -#~ "instead from the group." -#~ msgstr "自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マスクから取得します。" - -#~ msgid "Filter module" -#~ msgstr "モジュールのフィルタ" - -#~ msgid "Summary of SLA Fails" -#~ msgstr "SLA 範囲外のサマリ" - -#~ msgid "SLA Compliance per days" -#~ msgstr "日ごとの SLA 準拠" - -#~ msgid "Holding Area" -#~ msgstr "保持エリア" - -#~ msgid "Interface source" -#~ msgstr "インタフェースソース" - -#~ msgid "Interface Target" -#~ msgstr "インタフェースターゲット" - -#~ msgid "Add agent node (filter by group)" -#~ msgstr "エージェントノード追加 (グループによるフィルタ)" - -#~ msgid "Add fictional node" -#~ msgstr "仮想ノード追加" - -#~ msgid "Relations" -#~ msgstr "関連付" - -#~ msgid "Add agent node" -#~ msgstr "エージェントノード追加" - -#~ msgid "Node target" -#~ msgstr "ノードターゲット" - -#~ msgid "There are not relations" -#~ msgstr "関連付がありません。" - -#~ msgid "Block Mode" -#~ msgstr "ブロックモード" - -#~ msgid "Source data" -#~ msgstr "ソースデータ" - -#~ msgid "Unsucessful get module inventory data." -#~ msgstr "モジュールのインベントリデータ取得に失敗しました。" - -#~ msgid "CIDR IP mask" -#~ msgstr "CIDR IPマスク" - -#, php-format -#~ msgid "There are %s updates, and the first to update is:" -#~ msgstr "%s 件の更新があります。最初の更新は次の通りです:" - -#~ msgid "Version number:" -#~ msgstr "バージョン番号:" - -#~ msgid "Trial" -#~ msgstr "試用" - -#~ msgid "Diff view" -#~ msgstr "差分表示" - -#~ msgid "Start empty networkmap" -#~ msgstr "空のネットワークマップで開始" - -#~ msgid "Source from CIDR IP mask" -#~ msgstr "CIDR IPマスクからのソース" - -#~ msgid "Client" -#~ msgstr "正規" - -#~ msgid "Source from recon task" -#~ msgstr "自動検出タスクからのソース" - -#~ msgid "The services list is empty" -#~ msgstr "サービス一覧が空です" - -#~ msgid "Push the selected services into the list" -#~ msgstr "選択したサービスを一覧に入れる" - -#~ msgid "Icon preview" -#~ msgstr "アイコンプレビュー" - -#~ msgid "Remove the services from the list" -#~ msgstr "一覧からサービスを削除" - -#~ msgid "There was an error retrieving the visual map information" -#~ msgstr "ビジュアルマップ情報の取得エラー" - -#~ msgid "No services selected" -#~ msgstr "サービスが選択されていません" - -#~ msgid "None of the services was added" -#~ msgstr "サービスが追加されませんでした" - -#, php-format -#~ msgid "There is a error: %s" -#~ msgstr "エラーがあります: %s" - -#, php-format -#~ msgid "%d services couldn't be added" -#~ msgstr "%d サービスを追加できませんでした" - -#~ msgid "Selected" -#~ msgstr "選択済" - -#~ msgid "Available" -#~ msgstr "利用可能" - -#~ msgid "" -#~ "Here are described the alert templates, which will use their default " -#~ "actions.\n" -#~ "\t\tYou can modify the default behaviour editing alerts in the agent who " -#~ "stores data and alert definitions about the service and the SLA status." -#~ msgstr "" -#~ "アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" -#~ "\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでアラートを編集することによりデフォルトの動作を変更できます。" - -#~ 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 アップローダはこの目的の範囲で利用できます。" - -#~ msgid "Pending to generate" -#~ msgstr "生成の保留" - -#~ msgid "Abort the action of set relationship" -#~ msgstr "関係設定動作の中止" - -#~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions " -#~ "go to Update Manager for more details." -#~ msgstr "" -#~ "新たな更新があります。詳細については、管理メニューの拡張へ行きアップデートマネージャを確認してください。" - -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" -#~ msgstr "障害状態のもののみがサービス状態の計算に使われます" - -#~ msgid "The collection directory does not exist." -#~ msgstr "コレクションディレクトリが存在しません。" - -#~ msgid "Error: The main directory of collections does not exist." -#~ msgstr "エラー: コレクションのメインディレクトリが存在しません。" - -#~ msgid "Error: The collection directory does not exist." -#~ msgstr "エラー: コレクションディレクトリが存在しません。" - -#~ msgid "Create group if doesn’t exist in destination" -#~ msgstr "移行先にグループが無い場合に作成する" - -#~ msgid "SLA graph" -#~ msgstr "SLA グラフ" - -#~ msgid "Are you sure? All the visual map services will be recreated" -#~ msgstr "よろしいですか? 全ビジュアルマップサービスが再作成されます。" - -#~ msgid "There is not an available IP." -#~ msgstr "空き IP がありません。" - -#~ msgid "Reserve this IP now" -#~ msgstr "この IP を予約する" - -#~ msgid "Manage this IP now" -#~ msgstr "この IP を管理対象にする" - -#~ msgid "Next available IP Address is:" -#~ msgstr "次の空き IP アドレス:" - -#~ msgid "Assign next free IP" -#~ msgstr "次の空き IP を割り当てる" - -#~ msgid "Reserved" -#~ msgstr "予約済み" - -#~ msgid "Addresses" -#~ msgstr "アドレス" - -#~ msgid "" -#~ "The list of users can manage the networks in the IPAM. Only the admin users " -#~ "can manage networks and edit the networks." -#~ msgstr "IPAM でネットワークを管理できるユーザ一覧。admin ユーザのみネットワーク管理とネットワークの編集ができます。" - -#~ msgid "Next available IP" -#~ msgstr "次の空き IP" - -#~ msgid "This SLA has been affected by the following planned downtimes" -#~ msgstr "この SLA は、次の計画停止によって影響を受けます" - -#~ msgid "Group already exists in destination DB" -#~ msgstr "移行先 DB にすでにグループがあります" - -#~ msgid "Created group in destination DB" -#~ msgstr "移行先 DB にグループを作成しました" - -#~ msgid "Error creating group. Agent " -#~ msgstr "グループ作成エラー。エージェント " - -#~ msgid "Group does not exist. Agent " -#~ msgstr "グループが存在しません。エージェント " - -#~ msgid "Reserved addresses" -#~ msgstr "予約済アドレス" - -#~ msgid "" -#~ "Destination group is the same than in the original server, if there is not " -#~ "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 "Send by email " -#~ msgstr "Eメールで送信 " - -#~ msgid "Send by email" -#~ msgstr "Eメールで送信" - -#~ msgid "" -#~ "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シンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計算に利用されます。" - -#~ msgid "Operator users" -#~ msgstr "オペレータユーザ" - -#~ msgid "Not Reserved" -#~ msgstr "未予約" - -#~ msgid "Unreserved" -#~ msgstr "未予約" - -#, php-format -#~ msgid "Group \"%s\"" -#~ msgstr "グループ \"%s\"" - -#~ msgid "Based on name" -#~ msgstr "名前ベース" - -#~ msgid "Mobile" -#~ msgstr "モバイル" - -#~ msgid "Error accesing to API." -#~ msgstr "APIアクセスエラー。" - -#~ msgid "Go to the planned downtimes section to solve this" -#~ msgstr "これを解決するために計画停止画面へ行く" - -#, php-format -#~ msgid "Error updating %s groups" -#~ msgstr "%s グループの更新エラー" - -#, php-format -#~ msgid "Error creating %s groups" -#~ msgstr "%s グループの作成エラー" - -#, php-format -#~ msgid "(Error Duplicate ID (%d) ) " -#~ msgstr "(重複 ID (%d) エラー) " - -#~ msgid "Error accesing to API, auth error." -#~ msgstr "API アクセス認証エラー" - -#~ msgid "This item is affected by a malformed planned downtime" -#~ msgstr "このアイテムは不正な計画停止に影響を受けます。" - -#~ msgid "This element should be deleted" -#~ msgstr "この要素は削除する必要があります" - -#~ msgid "Nonexistent" -#~ msgstr "なし" - -#~ msgid "Open for more details in update" -#~ msgstr "更新における詳細を開く" - -#~ msgid "None update or create group" -#~ msgstr "更新または作成したグループがありません" - -#~ msgid "Open for more details in creation" -#~ msgstr "作成における詳細を開く" - -#~ msgid "Open for more details" -#~ msgstr "詳細を開く" - -#~ msgid "Need to regenerate" -#~ msgstr "再生成が必要です" - -#~ msgid "Could not be added to deleted all modules." -#~ msgstr "全削除済モジュールへの追加ができませんでした。" - -#~ msgid "Order:" -#~ msgstr "順番:" - -#~ msgid "Advance Options" -#~ msgstr "高度なオプション" - -#~ msgid "Advance Reporting" -#~ msgstr "高度なレポート" - -#~ msgid "Unsuccessful update the tags" -#~ msgstr "タグの更新に失敗しました" - -#~ msgid "Tags unused" -#~ msgstr "未使用タグ" - -#~ msgid "Modules unused" -#~ msgstr "未使用モジュール" - -#~ msgid "Successful update the tags" -#~ msgstr "タグを更新しました" - -#~ msgid "Filter by" -#~ msgstr "フィルタ" - -#~ msgid "Tags used" -#~ msgstr "使用タグ" - -#~ msgid "This agent has not modules inventory" -#~ msgstr "このエージェントにはインベントリモジュールがありません" - -#~ msgid "The start date cannot be greater than the end date" -#~ msgstr "開始日は終了日より後にはできません" - -#~ msgid "Create Local Component" -#~ msgstr "ローカルコンポーネント作成" - -#~ msgid "Update Local Component" -#~ msgstr "ローカルコンポーネント更新" - -#~ msgid "Password policy" -#~ msgstr "パスワードポリシー" - -#~ msgid "Enterprise ACL Setup" -#~ msgstr "Enterprise ACL 設定" - -#~ msgid "Modules used" -#~ msgstr "仕様モジュール" - -#~ msgid "There are no maps defined." -#~ msgstr "定義済マップがありません。" - -#~ msgid "Invalid licence." -#~ msgstr "不正なライセンス。" - -#, php-format -#~ msgid "" -#~ "You can activate it manually here or " -#~ "automatically filling the form below:" -#~ msgstr "" -#~ "ここから手動で有効化するか、以下のフォームから自動入力できます:" - -#~ msgid "E-mail:" -#~ msgstr "メールアドレス:" - -#~ msgid "Contact:" -#~ msgstr "連絡先:" - -#~ msgid "Auth Key:" -#~ msgstr "認証キー:" - -#~ msgid "Please contact Artica at info@artica.es for a valid licence." -#~ msgstr "ライセンスは、info@artica.es へお問い合わせください。" - -#~ msgid "Request new licence" -#~ msgstr "新規ラインセンスリクエスト" - -#~ msgid "Activate licence" -#~ msgstr "ライセンスの有効化" - -#~ msgid "Your request key is:" -#~ msgstr "あなたのリクエストキー:" - -#, php-format -#~ msgid "® Ártica soluciones Pandora FMS %s - Build %s" -#~ msgstr "® Ãrtica soluciones Pandora FMS %s - ビルド %s" - -#~ msgid "Group or Tag" -#~ msgstr "グループまたはタグ" - -#~ msgid "Online validation" -#~ msgstr "オンライン認証" - -#~ msgid "ERROR:" -#~ msgstr "エラー:" - -#~ msgid "Move Agents" -#~ msgstr "エージェント移動" - -#~ msgid "Please choose other server." -#~ msgstr "他のサーバを選択してください。" - -#~ msgid "Synchronizing Users" -#~ msgstr "同期中ユーザ" - -#~ msgid "Synchronizing Alerts" -#~ msgstr "同期中アラート" - -#~ msgid "Synchronizing Components" -#~ msgstr "同期中コンポーネント" - -#~ msgid "Apply Policies" -#~ msgstr "ポリシー適用" - -#~ msgid "Networkmap list" -#~ msgstr "ネットワークマップ一覧" - -#~ msgid "Synchronizing Tags" -#~ msgstr "同期中タグ" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled ." -#~ msgstr "アラート作成エラーです。操作はキャンセルされました。" - -#~ msgid "Module successfully added." -#~ msgstr "モジュールが追加されました。" - -#~ msgid "Synchronizing Groups" -#~ msgstr "同期中グループ" - -#~ msgid "Show the tree view" -#~ msgstr "ツリー表示" - -#~ msgid "" -#~ "The user doesn't have permission to read agents. Please contact with your " -#~ "pandora administrator." -#~ msgstr "エージェントを参照する権限がありません。Pandora の管理者に問い合わせてください。" - -#~ msgid "There are no defined users" -#~ msgstr "定義済ユーザがありません" - -#~ msgid "" -#~ "Here is placed the script for the REMOTE inventory modules Local inventory " -#~ "modules don't use this field" -#~ msgstr "リモートインベントリモジュールのスクリプトをここに置きます。ローカルインベントリモジュールではこのフィールドは使いません。" - -#~ msgid "Left blank for the LOCAL inventory modules" -#~ msgstr "ローカルインベントリモジュールでは空にします" - -#~ msgid "Report of events (last hour)" -#~ msgstr "イベントのレポート(最新一時間)" - -#~ msgid "Report of state" -#~ msgstr "状態のレポート" - -#~ msgid "Info of state in events (last hour)" -#~ msgstr "イベントの状態情報(最新一時間)" - -#~ msgid "Summary by status" -#~ msgstr "状態ごとの概要" - -#~ msgid "Only admin users can see this section." -#~ msgstr "このセクションは管理者ユーザのみ参照できます。" - -#~ msgid "Filter by tag" -#~ msgstr "タグによるフィルタ" - -#~ msgid "Could not be create, duplicated server name." -#~ msgstr "作成できませんでした。同じサーバ名があります。" diff --git a/pandora_console/include/languages/nl.mo b/pandora_console/include/languages/nl.mo index 535a340b403dab47099d0f2fe53fde81a72732c7..6c087be2a2d1b0432cca31711277887b7125cfa1 100644 GIT binary patch delta 60482 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 ZQ7xl8_V8~Tt?|*_TW_iSA<^$s{|5#`E4Tmv delta 60404 zcmXWkci_#{|G@FdBqAkN49xDx4}cnkC4$FcnYUP1krXxhJ_Uoo^_W#su} zq9Fwb?i3ml17dwF=AivP%!&_VWn2*3H(@U7+ps9^#_D(yOJTA95{aC64OYMw(c$R0 z^HL@gi6|DVfMk z;c6OOKvO)49nhqzn-&IajUGuSG=u}uh!~Ho-j9+oCJK4xM-~y70+p{~7V~Iar4JP>@Y7{FM>{761|4i;^z&~fm@&p>4@%hAR39W=<|1=&rd_=c^DmM z2^yi~i?QK7bY(kY{l{4U9eprM*6?6{v|bwBK{YfY*P@Z=fL_Pm*aAnR3tbyOe+Qjs zE3%Me;s6B)JQh2giyi(89TEkzg&mYZ`_)8qqe-lH#_rVn;#If?4fW3W`HyHsenS`b z7y6>hn>|ya81pBpQ7}Yp&`+Xcg-y7>k(1CwPbKyU9;e~RB z{uR*iYNP#{$M$ZR^z8am(BWuOOhiNVFgo!{^uae{eQT`mMR#^I`ag7MxpIa6rO@Xy zFcksxD7wYZug?|l|E)B*v+?N4r=!_CKh~F{3w#5;zwe_v+KS%mJ?KP#ph=kdvS1!` z;$rCatQOnrq0cwJEZ+aFG`PbX(TPT2L!5*@xE6h2Bbv>hpc8$G?&u);VmgXO@K>yf zS#pPdbO-{O z*J!^V(a`^lPMEu3NWwB`?o>vftAQ@OWvpL^{z4joNzZ5&1qWV?RdFf$;`su*;4w6` z^$G=>pcAx0v%UlRd=E4-{m~uY7V8txd1j#3`w{f{rG>cvhWG^smB?KD;RR-_YDeL+Xu( zE@UOTlUK1EZbB#g5nafM=-=oDauy3aD~|588v1+#w0~PPLf2zu9E|>enUkd81Iw`< zzJ@LF7gMOI<_bgb~YBBcs3g1C(s2vi!St4G@|dJw<)=m zf@ks-y278)ot{A-JdaM0_0fTvqMvs|BQ`L8J{-LTV`KXqH0u|k<2;MrwjIb( zBojYV@Bw}mrUov7E~FYdL49<9w&;qx$Il0%S$rFM#t)%8e>T=%MswiO02L{uV-xg)o6z?0=m4{#uSdU)pJ%x$^e>JcVGT5b9nd#v zKlG>89q8>^gpU78^uw#T|DMVI*zq@XpxkA{gB8(%TA}R&(X753P11YNGoOh@YB72g zE71OLpgFP&OXF|oe0j@-_6p^aA!My-@Qj9`p?d&Lo)^&<#t!s|j>r0+v7WblnD9#U zR#Zd#H9;5FA=djuhoB1_hvvYHBn4MK7d@M&V|^_eviH!lKY%Xe5_*4FOp0!eV zt{^&2>1a)KoaX2_T`>*&p&J~4dHnt#7CTH%HSiY>m_dgHnEEn8L%tQ=*?u$$kE1&} zjYi-+8rn-}(iW&3j-oocu?FZktd;<6>dUvV;ef~-dH~w{X4ej zs1gP)iDrFGw0}qR`VB-QHWiJ?qv!&j#iSFgrQpuqL+iWH2M(bR{DJN;Q`PW3$cFBu z2HM^N4RKp^BfZd^8h{?j(C8iL#Iw+Oo~+9KZ$e=;4QBUobj4}a!U9TTb?UXTJ`Toe zxCFf&+tCFcMnirYT}ZBsu)rc%k$M$$K|Rok`=ZYe&*1*MlNmG^fko(mE6_7uhi32F z@$>i433g!xJQ&-vR1fWi&~LXgm^yQGqSom6H=z+39qY*?1v@^14*X>FMKqLepbL5r z({Tqn&~NAq>Ob^)mama1F&G=6Xa5X3-a2&W@1gxZMxXy4U1;(&g>(wpYKDm_qW88g z`pWEszC!OnBk~x!u&2?1UqmwIV!@v)rIWZqSf;H$w>*D8I&`@qiceEc}=yCM+WUn2rXFfDHilfO_59?w(td{7> zUyV?xOv6j)j`pG}KZqvFFPM%OV!cG25V|VZpY|5$gwLT1S+$@{;etsI;Q%dq8XYNf z-B2%p&QuYNRSk42jnR=hqwmt|(5;U`&tw7`%g68<+=#C99G1hhdZB;CdfY2xQJn@4 zr89a_Z;lQ_CmMyuWKwLOiB9-%bRoL%C(-_^qwCOD-@9o4ZRor83-raYs~-2t^gK#K zFU(axT-*UzllmNVL7UJ>e1IPAr_p`UA2IcgMHg}&ogn))A#x?qq^X2H-zc`XO;T`W zy^wQD+=%Yrkp>}+A4fy{Osv0wX4^(|puOmk{D6*g7AxT2SPjz~h6Qy-kFXzlpN2=1 z_fT-4C(sbDK+kFey5g%^|4wKG21G}r<4r|3HapfAB5#~z zVi|>Ie6SI{uouyZvNsNvLIfY#p1JDaU3=R2c^!XWR5iTRs^ zKauptc7CruNx|P#N3k)cT^s(0(-eK_Pr~N79=#=hp#xvmGz?e+TT>s8?eJ|hsneQ; z{$;Qc^?K;hjKdr732fu{>K_z*uwnB|iH>+L`U={KhW1xsF%Z5)H|X{IuA|4)#wJlMkAfxHnd;cmiu3khTCZH#jpT<@GbOJ_a&CWi_uc; zG9@}wZ-x#y7u)04=+4Tt&y=_kZ;8H#lc`_XAsopWg z+Myr1;|b`|EJQehOW9<1XQ7?oU#1M_aKI z7VJt=;6OAIFQD1~K6u5wiLC@|`{QMF+Vc{O3y)rhS-WHws9yB+eM>qIBnzVU)hHbb;H^2@jzYmLCu% z9EZN)UPUMR1)ZqOz>qrw(W9J%-i|HU6!Q+^{(FDB4ho@u0-IC+5}RS6!C^tY(PWx{ zCefqlbvl4fRO#k0!BF%?_8Qj5)7T6v+!8`Q6ixDb(4$^>OESD-U#8(|8unl{%r+$a z*{U{PMST$ZLb?xqQN4maa1YkT3b%%@-@cfY`XJ1KL(wm_+tDPy8@*NY(42T784K&t zugUk(uj8HQ1K*<8?058mEJMS<`O)wF;^+ibqxCSIdUJHAgQFACab}`F{+>d|ORkB9 zx6$O=hOY29I`Dt!1G$D}O5BFUF&jRB4)8EK(Gs-Z%jiU#&}`q0{;oKMzQF!N`{x-R zzyHfn@Jps4`hw|=b{vm}at0d8ndpKZ#q9VL=EUdGuq7;66k`U_;3ZRiIjajffnk!Y% ztZ#%aq!%XrVKA72S^fYTx>e`^-=Y)#fF|Qf^o;*Q2go}rOjr_auY#$gjP{P+jxJy} z+V3fJVQWTl|1&78jU5l6JGg)?F#G86KnFCL`l2tSNoc>dI084L3#vROT-*BS!iS(6 z8I2yr1T;DCjy^Jm`)|W?8rlrs#yNV|x$u`5Vv$+!DP# zwogGr{a|dLgWj6Qqse6yoL~)B$8|Uve?(u!eaB@=@VZVsg{!Gw8XqF^;)JlEsMkLW$Wh?%kA zq%cttbf=}zvoDM8v>FW6ZDA=LRUNjE8;YC=PS{P zR-*&HjlK`IqZ|1Yjo3c)`QOp;v)mEt#jw8(85G<}3v?kp(eHwR=&N!D`n%v+wBKg* zNOqzVA4enb7dmmaJ43y|g0bZbCJlNETI|^leOF!=9TvSSem)0%gDgQ;@&+37529b7 zTiTDlvCg7dR`{;a|4MWPmC-Y;dlzq*b`(0&V0tgak@z9jz?yf5tQd&K@>Vof6VV0C zitUThtXqL@_1*aS=jehDM9)R@P6;8aGKDvcUr+66a3_P%6^}&Ib3B?IQ)B!6=nm(g zJ6VZl;p=Gs4bk_}aXyQFi7xyA+W!<9>9a`+W>c1_p~L0TGU!g~q6=t^9&Ts!{@sKQ zG!|XRq*$MUM&`j-Ux*&@6X*h;MSl#gLbEaX69or4jxOX>{NOJ%B7aA-Obe09i}tS= zt%hb>ExZpq;85I&{>-gUga_i?=#hShH8J<}l>E&th1xWX#(KC6d*T7?j~VxbKXc8- z)6~C=_4j9l`;z0{u)~t*g3F>it&U!wYj7rZ#_Mq(w&Imp{XYA1!^htrc0LUa@q^LF zqpQ%fdneX+pc5QIkKzQH%@@&r1s(`iK+m`#I&LR)LH*HW9fx^+!_1YI#MK_jxR`|RKn$%@xasR!3m1%H- z=F#iX5RF0yyblfKT=Wb2IrP={F1o-2(Ua&#{=ptt_91qNldv5Ag+{Q%?2yDgW|NJE z?0OoU=w|ecMxobc2D;;!=-DnpceV=czaH(s8NC&IV*7q{+#k{BPov}ggMK+=niC?E zHA%rU%7YG234POLpc6GlL){h~s5d(CU^KKN(S8%-=hI{T;ppRNlj9O~QYX z{3n$2!k0l7Gy>Vt4!O~Z@}UbW89%QOts1R~?yN34aT9byZPA7GMkgMEZeT3d#mV!y z|E}=m*l|6Y3m>5ae1l%Er>F@9zr9!B-USg zl>IxvMjA}6U9rOvG_>cUndgTA3ZN0W3Z0+^x`Ec{z@6gf{m}@HK#y)T8o@i!d1heh zeUglYRp{5~CiEA}KJ>ve=z|y05N2Hv`sGL8oK?{F7ULXhxwCn20`i zKl+AEK25=2kL#m*(0hCq{qu9)h2epWXlpcL{m})Fi|w<~oh?VR|IO$wG!iG#+&GOc z@I12cWFqsT@IhX52gT41rO*Xb#&m3p3e7>zd%EF01e>}vHm-{gNuceoQh`_pJ>|A&S$*ArpDJkg?PmlhH^_LkFB4+vmmh$Iyj7k6yFQ=$FgqXwrURmO6R{1> zL?_&d9^py!sPaA?B3lp*eQ|U_SD}%ros5MR=*qiC2gUZW=mXPZ{n6-i(O2W=n`3=v z^m}x?Q|L}F#d@x1LT(gCb1PY%f*q=(p=pHftS!3ZzUY|^Lz8Pdn#~WOJDP_M^f;PB zOVROOM0fZG*5ga&BXqofo(=6epG);iCW=xpTgziltQqU~ADmoQ|QFY zV|@*pwCm6XzJ-qa0UC)f&cf8E|pLtoPRMzK>)pAV zAVz-_&RjLzR{uRPAA|Rd;m?x z+Ruj&w?YT(66-gh1K*6^?=k3t9!C2;7kvpmsyCnK{@Y%ehUgKrLZ9!2zDI_lXM8U@-gD@C;dOMvFJk-GXpWpnQgEQO7s5aV&>fUV zU$wQ+9||4O0S2H04@bY{?nWn`k0#kG=vlvsZsa300(;PTj$`Ue41F${|HUwH2D+2_ z=mZ_m2m7ICJ~p<`Ko_h}|PPhQ=zcTtxbVurQ?%$6T(&_Lg zy3#9N3TIXw4QYFH;O^+ohDPs1k7PD_6pPTTUW2}1)}lxG7N(8@J(@k}xIbX(U+$lv zUD70~R>K<|4)bilr7zhUV6U_6$=`IwID(J!UFSQ#&%$z1Mb z?!PPRLBW9sMMtAMyBj_G`_WJ?MkBB)x)ELQ7ihnI=t7R6kvtpgxn2p+7e?DFVLCQ@ zh5PSBgJ^Ikx1rbNPV|Me5DnquXo#Oj&vGL=;Z8J14xGtMmI7J zjo2hK(hs5wOfHIrXVHOIp%1=`4*VIKt^3f>e~%sTELOuNuZOSI5$M3T$NDsMy!+5` z9z!>_3=RG3NKz*gn<@CWnGxCFnS~<&;^!4-xC$kTxf;f zhFdTl??og1eEfVn=J)&m7zKCsH+m+QuMaCMkEvHMzD9dTG}$hq*Qw|m;o3IALDYMo z&#%Y3@pE*+?cNNLxB=bBNOZ$@+s^!nSriP-Q?bJuKcK!5jld2xX%3+8fnU&p&qgzE z2=zi}1k0mYULD<7EA&?NiH=7jH5Zfaa18~o*EZ~g2hpUf@>U3KOLXNO(S`Iy7d$ey zPeIRgHoCya&`3Rl-i~+BpI+Nz{R?!yZ{Fhm+wlwyp4sJZhZSd_+1VW3QAc#gy|4@p zK^O8My09nENWF*+a2<}qQ`i@8d?);igg5bH>RC62zYE^6k^BDv4He!Ee>gmWji_I> zDV*g^m`;5Xy1>WKv)_O&oqVPJEEZ)i4J%#dUo^CvwaOsrjO9?kT21rI2POgK*!7UUO38<=)%jRkxjOx z-~ipw72bp<&k*#DcsH60)6p}00_Wkg=m0g}54WTNx`3Wo3x}Z#U4rJoTWHQ~MI*8o zIl^S(I0YxTfbOv12k{?!VSnmv(21T$KYtm`g?G_`zKEY6j-Q`ECp?e77qWgB`d^M- z&r;EPc%}Eh3k4T&8#?fPvBM%XR4=0g?L?FEYqZ}FvHdK1y)K{=6#ghIECXFgGxSy7 z8QsVT^hm~I>R%W=LcsxEj30c6hVBsh6YCQCVA-u<;%d<*=q>1i9^pVV`$wbwUqmCe z7QG$sp$qyf*7sx5Gd~g=PNHZ0Cwi9uMDuM6D=v>NtU0=)0kJ+M)|bTk26V!`=qvaz znp6K_Dni>sQfF-E{@c(hHuOV}Vmun6Ip~Bhq7!b5^&_#K>ErNuDXhomjnN&BM>jGZ zGvNd1x8O{4VRO*&ANx2NvV0v4KJXTL)|+E}8=7RFqoF>84sZs&eizXR^L-L_SQ2fo zjTNyi`uP}4$0_LZPe)%&QgFg`=$UOqlk6iLi#xD7Hv2T3{TQ_WbaddE(M9OQ%VPaa zbes>-3BN$E-+naW$I*=?6Q6}bK{OXCL^IH&tb;z#70rpE*c7Lr$@MP!+-K;~eTi=5 z7xcMv=)!V;9_s06{hDAh(TRcs4@9rkMD!>gKnI?K?sNhAW_vEW2HoLXXhc3hZ^5T% z|NZC=e?oVDKAPi;uz;di%KKl9f)jScD%c$j*%b85A4C`U1e(RKppp3q-SMGVKOZf) zBP46}Xh(FR!_Wqh_!^DqPtm`yJoW55L;nm+I#FW^?zlM`x=yjf4Y589{SumpMqo~?FGJ7zZS+h( zKquUXF63DB47$O8qS<$ac?$00{=4$@*iZvqdE;2`fKGTldIY1;dpiSb;xp)kJJAIk zM$h^jx{)lq!$R_-zx_&}k-HX6&KA45|4!I9b{vL2I1b%$5)JucbOBGJ1H6vz{7p21 zThIu8gcWcnntXqu6XpCeM4$}%Tn2j7^^z3q*ce@TS9HPw=t6GAYB(O<;d5xj)<-`? zH}EC;++l2j$KvPZ_k?llU@h8Pq0di3`zPivL84p4y7==b=3i{kV=!A38=N2J3l1wb8(3pmou@RocE?8l27-%AT4evv5 z!(w!xXV6?&fe!dSx`3T%M8A!npGL>cwJ$v1CfWsac>k}X;Mom8lW7Ec6nCQo&PFGC z4Bgo}9E2ZWZ7lb7ILkih+1`ZicxZG28i{+*h(3UhyHc4y@j3+`+>G6DJDPk&_XlgB z541rS)&pJWU^FSmqdT679^sQ{#9l@Fy^lWsWo-W*yHfuhlNl769S9K^jo#Zk(E;v7 z2V8_syb8TWZ=?ObLkIpDUBFrNXtI72B9I$>Qx=QXiFQSEYQ#6(e?v8$27NfX1fAdo zbcbuv5N?a@pP>`(jqS(LiBF-qa1I?W?b~2pH1t=Z<21(951DV{_x}JI%z<05ERI13 zSP*><9r)!~--zzuV|0h#qkoe68(m1j@4^O(<09(i(DB|u$Jvhaac`1>p&oWH{Im7D z(4B2T2l_I408PHbXs-MgJ&)dsOy7qIaz?K}`<0DWLnp3__HT)fm+VNvGwh2-;MQ0l ziypyL^uY(w2N$6`c{;i}x*_@zI?ir1`M$%{(V#hW4jm`Up;SN4pMqyn1fA&0Sg(Sv zum<|Twdg=?&>xkZWBW+-C?=ps@DTbf_dMF~Q}p_tKyx7L;qZ&9JXZGp_o85yPeYS! zK6?FLKzFbi9bhMVG`~duMW4(6LufCL<)~kS-je?4=hM+~7othG3jHy=9ZP%vk5cf5 zM3x`JPD-K=)pGrUoIQ45$?p6c-e{YkG#8L1L_Y&KSH1XH-290WcYi+kyw}Z z4cHVelzCf5BU{9d>f8&Y3_rIU!7}KfWk8W@!`rg_9Kkol*3cu0N1@Ar| z{u=I6>`6WI-(leEF+cTDSO$~W3zuST{0lo`l?x$4lh6$WBZ(T~xc{f48kNTyJ~AC1(@=tN&*SG<6OutQo}>c1?u1~aJth4wF(IW4vD zF3|~S@-0EGYcjE&!k0Ak$&!|si&e9xC8}m3yRioToGmT&qPZeRS}GFVumk-jpvkla zy|!m!J!j4^aU)zt`w;X?EJv=i)Ze63L|;_b;b8CoEDBzeU$Hmlyeten0KcLBC=SGt zxzkcf`UM(+D=$w=y`r0<--7KiGv0*0f(N6o^xM!^?%n7seLDIJ>LD!V{eO&t_k1mS zwx6OM|3hERIrF5Yz9R~u@A``9o3A$dUC;vU-yzm}q5b;B_F?Ek#-Z1A26~Mj$E05p zZ^jNEp#y(~S@8&_;R$rWU(v7Q^XSC?p`py4H|)3}8iAJR^KCI7c1Ex1P4V;j@$2hrXEJMnm-#`Xc%PeR2GQE~r4hv_v|V!s^%*op3bzToUa!2aUkv zXmY=Z&bKRHGKBtn8r=E+&tCH(ylg|}$fh<2P%IIMUE+VQDaUxkMLL$u$4`1!HuIdtKf zt_WwIAKgGn^oXj(dVMrU+F*9?|MjuM0Q5{ppgWm{PP72s=~8qDtI>hiqF<};p$q*E z9ry(L+yyL)If{hqTMd1_DSBjWF!ksE4ir42>u>+hkV{si6m zestw0(TUEXNp^XO5b}cP^JUP5RYoII56yu_=my)M3%sEO_uqygH2A8hXqjXwgD(=QRv1@vG*MEZP)X$^IS*%RRg^uXLyQAawLvw5lw#3=!Mt5TB-~WG4 z!87~`-TB#A{}Xr*3?1O$k4?;th#5%YbTj6Ke3-gr^KedKned-JFH9yA_IHf{b>JKWn zRtytHo3#QpdF9;ZQ1$ByS>$A4n`B{UM5D~Ab-qXU$TUWE=^5nW*AXa>5G zTIjWF5bJHx1$C{={db`2XfWhAqV+q`olQfN=N>d^o6&HkOy{pikr zKy&2`dQJaDpUYPzByZs)1y^1V{oopO#ZAxwTB8H>Mt3$C?RP8s1L8Jx0S}=Io`+7f z0PVLTe!e>TTJ%l)kcpG;QgEW_)k0FtL$Bd-G~^p%eFr-5k7)9oLtnw!GeU&Y(RY1g zv|nd*oB`;YZ#){gndo!RAvu@ie-th3U@KPRgU`?ioJW%=Q9ZnZFT)yC%b;(x?&#-Z z(WIRcU5*~br)W~|i5@~X`V0Eo@*m{Szx;c@8sP|vqMiwTj!H!R(9ao_ftVLfqZ$&?devbCr7yUlA{~YVT zqYF77&0I5#p9g)eI6D4Sm~?{56tp(_V3XLPU2N})Cf5zIy$DVo@C|gJchToQ zK;IL)qu-1ZV8p$|NRF6?DA z%QvH6QoGUY{tb;l&W7Q+!st%RqS;;_9j6o8??yC9hoWCJK2pwP# z`uXwb#n_&&QJAniy71a)WLly-9*90S0^Pv0=p)hR(Ee*1asTbGBYtoQ{nq*&9pFzi z*>W}x164&s*BD)Bdvu|F;^(8#=cb_xn~(NihHmgxG{Wy=Gu+vj`)|j5O~ME1==G|O zW_8_IzZN~a*64ydV|5&Z-i~L`g|9-B^cBp&eQ3Wd*M@p+v_1%p)Vw4GBd`Q(;!Eg) zzQY#yD_)B=nucG)qtTt5LKpfU8i{Pp!h#D&OQG+Fis*P5=!8vTy)7EK|`!hrT%90M|8(|T7-#{jsp&?#?UXvBk_c5LNLG=Fri+<}BY90C)MR!~U&4s$?LK{Zgp#6KG z&tHdGz5gRAIMF!tfw|~TmtYlKitgxhG$~J@XL}Z1@Og9tm$wO#D}%lX>!8`*7aeyP zdPEa29ams-Acbud9JpfJkmWVe39dm0xE4*)PUs7yKf2R9(6hc5J<|o4`fZ0k|27)Q zE$H~W(FlBlF6jHV+u7RqMz7&-=*BMZ9;}3p+Y%kGH?omrVju-4o`i-piH7E3^i}&9 zy2H285PyOGF!=`S;2HG(SLhLb@pMC<8xwsLOH*Hmj!RbgM!zGvVqxc>Ou?*v7%Sm= z^nGv;4dLHd6$|wa_qrKYqkbz^!3Ai)&CvsBvYtbCn)|x&!=^miuLC;%5KPvla1VvL z_(t>>^bE^fAI`cd8p3|)08`KfKZgFu+#EfK4tx>qSF}&4*GBtwMUQ55bY36szZ1Pq zgYH7F;b}CB|3r`A0-76HZwMAdlduf>rn?r6#4YGTAHj5d70r!Zv3?=eOY{x5taV@R ze_1+ApuveAN56EIqdBk%J^N2%{TuWQkD=LrCbnNfpU-t;IP=12zl!KMwb1K!ZLD`i zkEmagg2^xeO`@mJEZu@Wum>IBC>nt?=tTcTbM*_?v@rTctAyT;`k1=LXi^SD#~mK) zQ_%$^AE4li;~DgUb?A<_qC4D+9>ovnz(1q?FQGY5pnuqD19X8c(Sf_83mT5Tud4Qy8c;I#Bg!D>OoV(S_cId<7&Xqu28;bU`!F z2+oT>jlMTlV`jhq4^eOdN6?-BiJo270l~az2#cXRy9&+bhG_pAqQlV$-5Kli&M`_(2yQMCpwF@ zFvl(7j2oiuZ807DqY;}H+n1n`ehs}vpWKoRXY&;euIMlt+JCS*UN$7OH$(^SjlM5# zLnHDCI>AyjVw=!N?27ec=z=exB57-9XM^;Z0c@oiEvef-j!i(O2&RG&`3>m!sEb z4H}`h(H!^+-Pw=mKxZ%=iwqA7x(1g~Z;7k$XEb8-M#OJVWZqKBS<2bB|E3h{1LpPFZWEi&y7WDpCp^(7`*QOfy zIgUnTI!?sp=)#JP3L&f*ZGs+EPc$b+px0_HdM(#Px1k$6j4tp5dPL_jJM$;CSnq?W|NhS) z3WjtTI>GH|Xs4nJdN9`Kp%X5_G+c`ArM!mFe6HACMU$V*?Q-mcpJEp*J30ITWgJ@n5Yw^19ciim z5$M|JtNm_lhwIQ+{6%zOjqXg1n@see-~e}GH~cu(i`^BjyG&=ohq7B~ex z!!6hWk6=TrP7Za%;phV2z|MFEn_$!F;pg{M^u4kSOW{^5@BKeY!5!whC%j6_qZ4*S zk76#?#uv~~ev1xJZbtZ$YKiV}9J;_Ku^euR?MJa9^~>)K-zjy`4Gh9$CkksQxZ=OD z0k*v_+~a$q-{B)#);{uOLZ{bTgj(Sg9jwbay?2a#^5&!Q2 z?!O`G_FxG0T(tfLy28t5hK|>vXZr&7z<;nQc9|9W&qW9R938mSL!o^P8i|+D1$>D{ z^fxSxIc9T4?I~269gbie`fc_w`rtaOf&0<>nqy8_Ko#_ereZaG53ArQ^o)x>9FnvV zdVPnWFPyv499w|ig0)Ese!qVlJ&JXyC+3C;>!F|b!5eS_y5Jq?z(pSk6IDlFP<_x` z8j0r2gJ}Pa=#S5=^TN?~h$dH1@N5&0h6g9356(v)*oLn7viadJA}XUtFc1ytI&{Ii z(EiyLgq-Mz9_2u6jL+cJ_$`{Oc^0OQl;3|8OupIZ86Lo{SanhOPr2{L4C=ek5dMp1 z^A(H30(5*IgbDJDP

&Ana@UV)n@dz z9K|}Ae>wNxowQjVBJd3QJ$?ZFGCGWY%l(S^@EeUaQ-q52DHY z43@)p(MbM)j{Cpoli`h)ZAExvrDI+`xEjsU7U+bxMQ5S|u0SXH5M97G(NpLfFR?Q8 ztBAe{TVoNt9>?MsbOApkDfkNg9lhsSUkFK327SjjM6>z^bmjM;{U1YrfUH5k4Y#2o z{vBQT6)%Qynqn5}eJ}_1$EV_&XYbe=!&4TOA@-0;wkxS5q*FnqWa3g|74-bYTyn4=#?MFGUA_ z13jt_qkGT@9zl=fKlGPQftSJpN}~&_g^u4SCHJotg)|yEqZ4*RC+vqlFch=nSTy8! zVrg7}?ra^pfvuQn!KCPBl!-S;dylY2Cs$W?D!h@-+O%v4W8A+=nV9F zJc35%88iu3qy6`w10O{rkXRdzEC)J4LG*jRJo@>y=s0cAv+se9bK_d>zt>?T4K83D z8oFe3KALPR(41Ho+c%>N+#TzO(Fpy4b@38DgtcD}Z^q5IJQERJmzLN^`|9=K6@E|h zjrhjH>U?k*-9g?r!-~tGJIFvoUl;vuXpAP&?dZ;?$NC&}15cqj^eTEZ+oDIJi47sQ zk|inlf~b#9)EF~kD|AQg(4F^)_DA~z0XD|^=V-@o(E)#ppI<_cD$mC7+!biQ^3ev-≫%p+_|d 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 diff --git a/pandora_console/include/languages/nl.po b/pandora_console/include/languages/nl.po index 7981b18f20..0c00b2ad00 100644 --- a/pandora_console/include/languages/nl.po +++ b/pandora_console/include/languages/nl.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2014-01-02 13:18+0000\n" +"PO-Revision-Date: 2015-06-29 18:48+0000\n" "Last-Translator: Guido Leenders \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "uProject-Id-Version: pandora-nl\n" "Taal: nl\n" @@ -9288,7 +9288,7 @@ msgstr "" #: ../../godmode/massive/massive_add_tags.php:43 msgid "No tags selected" -msgstr "" +msgstr "Geen labels geselecteerd" #: ../../godmode/reporting/visual_console_builder.php:148 msgid "Successfully update." @@ -20688,4460 +20688,3 @@ msgstr "Beveiligingsfout. Neem contact op met uw beheerder." #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "Bestand missend in schijf opslag. Neem contact op met uw beheerder." - -#~ msgid "Logged Out" -#~ msgstr "Uitgelogd" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Settings" -#~ msgstr "Instellingen" - -#~ msgid "Development" -#~ msgstr "Ontwikkeling" - -#~ msgid "Factor" -#~ msgstr "Factor" - -#~ msgid "Store" -#~ msgstr "Opslaan" - -#~ msgid "Up" -#~ msgstr "Omhoog" - -#~ msgid "Master" -#~ msgstr "Meester" - -#~ msgid "hour" -#~ msgstr "uur" - -#~ msgid "week" -#~ msgstr "week" - -#~ msgid "month" -#~ msgstr "maand" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "from" -#~ msgstr "van" - -#~ msgid " to " -#~ msgstr " tot " - -#~ msgid "SNMP server" -#~ msgstr "SNMP-server" - -#~ msgid "Seconds" -#~ msgstr "Seconden" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Pandora FMS Hulpsysteem" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Pandora FMS Web Console" - -#~ msgid "Older" -#~ msgstr "Ouder" - -#~ msgid "You are" -#~ msgstr "U bent" - -#~ msgid "Users defined" -#~ msgstr "Gedefinieerde gebruikers" - -#~ msgid "Authentication Error" -#~ msgstr "Authenticatiefout" - -#~ msgid "Autorefresh" -#~ msgstr "Automatisch verversen" - -#~ msgid "General information" -#~ msgstr "Algemene informatie" - -#~ msgid "Your system is up-to-date" -#~ msgstr "Uw systeem is up-to-date" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Er is een nieuwe update voor Pandora FMS" - -#~ msgid "Your system version number is" -#~ msgstr "Uw systeem's versienummer is" - -#~ msgid "Overwrite local changes" -#~ msgstr "Overschrijf lokale wijzigingen" - -#~ msgid "More info" -#~ msgstr "Meer informatie" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Er is een nieuwe update voor Pandora" - -#~ msgid "Testing" -#~ msgstr "Testen" - -#~ msgid "Last hour" -#~ msgstr "Laatste uur" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Laatste %s dagen" - -#~ msgid "minute" -#~ msgstr "minuut" - -#~ msgid "Select an element to delete:" -#~ msgstr "selecteer een element om te verwijderen" - -#~ msgid "preview" -#~ msgstr "voorbeeld" - -#~ msgid " seconds." -#~ msgstr " seconden." - -#~ msgid "Graphs management" -#~ msgstr "Grafiek management" - -#~ msgid "Image size (px)" -#~ msgstr "Afbeeldingsgrootte (px)" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Er is een probleen ontstaan met het verwijderen van SLA" - -#~ msgid "Deleting file" -#~ msgstr "Bestand verwijderen" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Map %s aangemaakt" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Deze server heeft geen toegekende verkenningstaken" - -#~ msgid "Sumatory" -#~ msgstr "Sumatory" - -#~ msgid "Agent detailed event" -#~ msgstr "Agent gedetailleerde gebeurtenis" - -#~ msgid "Group detailed event" -#~ msgstr "Groep gedetailleerde gebeurtenis" - -#~ msgid "Agents detailed event" -#~ msgstr "Agenten gedetailleerde gebeurtenis" - -#~ msgid "Config" -#~ msgstr "Config" - -#~ msgid "Create networkmap" -#~ msgstr "Maak netwerkkaart aan" - -#~ msgid "At least one monitor fails" -#~ msgstr "Minstens een monitor faalt" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Wijzig status tussen Groen/Rood" - -#~ msgid "Alerts disabled" -#~ msgstr "Alarmen uitgeschakeld" - -#~ msgid "Agent down" -#~ msgstr "Agent beneden" - -#~ msgid "Search value" -#~ msgstr "Zoek waarde" - -#~ msgid "Events generated -by module-" -#~ msgstr "Evenementen gegenereerd -door module-" - -#~ msgid "No news articles at this moment" -#~ msgstr "Geen nieuws artikelen op dit moment" - -#~ msgid "Illegal query" -#~ msgstr "Illegale query" - -#~ msgid "Modules over or equal to" -#~ msgstr "Modules meer dan of gelijk aan" - -#~ msgid "ALERTS FIRED" -#~ msgstr "ALARMEN AFGEGAAN" - -#~ msgid "The colours meaning:" -#~ msgstr "De kleuren betekenen:" - -#~ msgid "Last 8 hours" -#~ msgstr "Laatste 8 uren" - -#~ msgid "There are no" -#~ msgstr "Er zijn geen" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Modules op kritieke of waarschuwende status" - -#~ msgid "Modules under those conditions" -#~ msgstr "Modules onder die voorwaarden" - -#~ msgid "User defined graph" -#~ msgstr "Gebruiker-gedefinieerde grafiek" - -#~ msgid "Inside limits" -#~ msgstr "Binnenin limieten" - -#~ msgid "On the edge" -#~ msgstr "Op de rand" - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "Server connection failed" -#~ msgstr "Server verbinding gefaald" - -#~ msgid "Manage modules" -#~ msgstr "Beheer modules" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Er zijn geen agenten meegenomen in deze groep" - -#~ msgid "License Info" -#~ msgstr "Licentie info" - -#~ msgid "License info" -#~ msgstr "Licentie info" - -#~ msgid "Global health" -#~ msgstr "Algehele gezondheid" - -#~ msgid "You don't have access" -#~ msgstr "U heeft geen toegang" - -#~ msgid "Only pending" -#~ msgstr "Alleen in behandeling" - -#~ msgid "Monitors critical" -#~ msgstr "Monitors kritisch" - -#~ msgid "Monitors warning" -#~ msgstr "Monitors waarschuwing" - -#~ msgid "Monitors normal" -#~ msgstr "Monitors normaal" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitors onbekend" - -#~ msgid "Monitors not init" -#~ msgstr "Monitors niet geinitialiseerd" - -#~ msgid "Alerts defined" -#~ msgstr "Gedefinieerde alarmen" - -#~ msgid "Local modules rate" -#~ msgstr "Lokale modules doorvoersnelheid" - -#~ msgid "Remote modules rate" -#~ msgstr "Externe modules doorvoersnelheid" - -#~ msgid "Uninitialized modules" -#~ msgstr "Ongeinitialiseerde modules" - -#~ msgid "Export targets" -#~ msgstr "Doelen exporteren" - -#~ msgid "Error updating export target" -#~ msgstr "Fout bijwerken export doel" - -#~ msgid "Successfully updated export target" -#~ msgstr "Succesvol bijgewerkt export doel" - -#~ msgid "Error deleting export target" -#~ msgstr "Fout verwijderen export doel" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Succesvol verwijderd export doel" - -#~ msgid "Preffix" -#~ msgstr "Preffix" - -#~ msgid "Transfer mode" -#~ msgstr "Overdracht modus" - -#~ msgid "Target directory" -#~ msgstr "Doelmap" - -#~ msgid "Extra options" -#~ msgstr "Extra opties" - -#~ msgid "Decrease Weight" -#~ msgstr "Verminder Gewicht" - -#~ msgid "Increase Weight" -#~ msgstr "Verhoog Gewicht" - -#~ msgid "4 days" -#~ msgstr "4 dagen" - -#~ msgid "Data Copy" -#~ msgstr "Gegegevens Kopie" - -#~ msgid "No selected agents to copy" -#~ msgstr "Geen geselecteerde agenten om te kopieren" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Kopie van configuratie bestand maken voor" - -#~ msgid "Remote configuration management" -#~ msgstr "Extern configuratie beheer" - -#~ msgid "Source group" -#~ msgstr "Bron groep" - -#~ msgid "To agent(s):" -#~ msgstr "Naar agent(en):" - -#~ msgid "Replicate configuration" -#~ msgstr "Kopieer configuratie" - -#~ msgid "Duplicate config" -#~ msgstr "Dupliceer config" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "Operator" -#~ msgstr "Operator" - -#~ msgid "Field 1" -#~ msgstr "Veld 1" - -#~ msgid "Field 2" -#~ msgstr "Veld 2" - -#~ msgid "Field 3" -#~ msgstr "Veld 3" - -#~ msgid "Upload file" -#~ msgstr "Upload bestand" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Vanwege veiligheidsbeperkingen, zijn er tekens of woorden die u niet kan " -#~ "gebruiken" - -#~ msgid "or" -#~ msgstr "of" - -#~ msgid "Module detailed event" -#~ msgstr "Module gedetailleerde gebeurtenis" - -#~ msgid "Average" -#~ msgstr "Gemiddelde" - -#~ msgid " MODULES" -#~ msgstr " MODULES" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "U heeft niet genoeg machtiging om toegang te hebben tot deze bron" - -#~ msgid "Unmanaged error" -#~ msgstr "Onbeheerde fout" - -#~ msgid "Label color" -#~ msgstr "Label kleur" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Huidige map is niet beschrijfbaar door de HTTP Server" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Controleer alstublieft of de huidige map de schrijf rechten heeft toegekend " -#~ "voor HTTP server" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Agent houdt monitor levend" - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA-periode (seconden)" - -#~ msgid "Search text" -#~ msgstr "Search text" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Zuivering taak gelanceerd voor agent" - -#~ msgid "Data older than" -#~ msgstr "Gegevens ouder dan" - -#~ msgid "Deleting records for module" -#~ msgstr "Notulen verwijderen voor module" - -#~ msgid "Modules per agent" -#~ msgstr "Modules per agent" - -#~ msgid "Packets per agent" -#~ msgstr "Pakketten per agent" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Klik hier om database informatie als tekst op te halen" - -#~ msgid "Assigned modules" -#~ msgstr "Toegekende modules" - -#~ msgid "Total data" -#~ msgstr "Totale gegevens" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Klik hier om database informatie als grafiek op te halen" - -#~ msgid "Database sanity tool" -#~ msgstr "Database gezondheid hulpprogramma" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Tagente_estado tabel controleren" - -#~ msgid "Checking database consistency" -#~ msgstr "Database consistentie controleren" - -#~ msgid "Deleting non-init data" -#~ msgstr "Niet-init gegevens verwijderen" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Pandora FMS Gezondheid hulpprogramma wordt gebruikt om slechte database " -#~ "structuur gegevens, gemaakte modules zonder status, of modules die niet " -#~ "kunnen worden geïnitialiseerd (en geen geldige gegevens rapporteren) maar " -#~ "zijn eigen interval opnieuw proberen om gegevens op te halen te verwijderen. " -#~ "Deze slechte modules verslechteren de prestatie van Pandora FMS. Dit " -#~ "database gezondheid hulpprogramma zit ook in pandora_db.pl die je " -#~ "elke week hoort uit te voeren. Deze console gezondheid comprimeert niet jouw " -#~ "database, maar verwijderd alleen slecht gestructureerde gegevens." - -#~ msgid "Sanitize my database now" -#~ msgstr "Zuiver mijn database nu" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Verwijder niet geïnitialiseerde modules nu" - -#~ msgid "Module Interval" -#~ msgstr "Module interval" - -#~ msgid "Minimum Data" -#~ msgstr "Minimum Gegevens" - -#~ msgid "Maximum Data" -#~ msgstr "Maximum Gegevens" - -#~ msgid "Load" -#~ msgstr "Laden" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Modules op deze server / Totale aantal modules van dit type" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Modules vertraagd / Max. Vertraging (sec)" - -#~ msgid "First name" -#~ msgstr "Voornaam" - -#~ msgid "Last name" -#~ msgstr "Achternaam" - -#~ msgid "Manage Database" -#~ msgstr "Beheer Database" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Deze gebruiker heeft toestemming om alles te beheren. Dit is de admin " -#~ "gebruiker and die overschrijft alle machtigingen in profielen/groepen" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Waarschuwing: Wanneer je de Agent positie wijzigt, activeert de agent " -#~ "automatisch de optie 'Negeer nieuwe GIS-gegevens'" - -#~ msgid "Manage profiles" -#~ msgstr "Profielen beheren" - -#~ msgid "Manage plugins" -#~ msgstr "Beheer plugins" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "Er was een fout bij het verwijderen van de agent, de bewerking is " -#~ "geannulleerd" - -#~ msgid "Could not delete agent" -#~ msgstr "Kon agent niet verwijderen" - -#~ msgid "Modules groups" -#~ msgstr "Modules groepen" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Update Manager stuurt anonieme informatie over Pandora FMS gebruik (aantal " -#~ "agenten en modules in uitvoering). Om deze uitschakelen, hoeft u slechts de " -#~ "extensie te verwijderen of het server adres op afstand te verwijderen vanuit " -#~ "de Update Manager plugin instellingen." - -#~ msgid "Server authorization rejected" -#~ msgstr "Server autorisatie verworpen" - -#~ msgid "Code / binary directory" -#~ msgstr "Code / binaire map" - -#~ msgid "Update manager settings updated" -#~ msgstr "Update beheer instellingen bijgewerkt" - -#~ msgid "Update server host" -#~ msgstr "Bijwerken server host" - -#~ msgid "Update server path" -#~ msgstr "Bijwerken server pad" - -#~ msgid "Update server port" -#~ msgstr "Bijwerken server poort" - -#~ msgid "Update manager settings" -#~ msgstr "Update manager instellingen" - -#~ msgid "Your IP" -#~ msgstr "Jouw IP" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." - -#~ msgid "No layout with this id found" -#~ msgstr "No layout with this id found" - -#~ msgid "Map builder" -#~ msgstr "Map builder" - -#~ msgid "Visual map wizard" -#~ msgstr "Visual map wizard" - -#~ msgid "Image range (px)" -#~ msgstr "Image range (px)" - -#~ msgid "Reporting successfully created" -#~ msgstr "Reporting successfully created" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "There was a problem creating reporting" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA was successfully created" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "There was a problem creating SLA" - -#~ msgid "Module is not set" -#~ msgstr "Module is not set" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA was successfully delete" - -#~ msgid "Custom reporting builder" -#~ msgstr "Custom reporting builder" - -#~ msgid "SLAs defined" -#~ msgstr "SLAs defined" - -#~ msgid "SLA report construction" -#~ msgstr "SLA report construction" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Type tenminste twee tekens om te zoeken" - -#~ msgid "Report name is empty" -#~ msgstr "Report name is empty" - -#~ msgid "Add item to report" -#~ msgstr "Add item to report" - -#~ msgid "Reporting type" -#~ msgstr "Reporting type" - -#~ msgid "Custom graph name" -#~ msgstr "Custom graph name" - -#~ msgid "No items defined" -#~ msgstr "No items defined" - -#~ msgid "Graph builder module list" -#~ msgstr "Graph builder module list" - -#~ msgid "Combined image render" -#~ msgstr "Combined image render" - -#~ msgid "Render now" -#~ msgstr "Render now" - -#~ msgid "day" -#~ msgstr "Dag" - -#~ msgid "Redraw" -#~ msgstr "Redraw" - -#~ msgid "Custom graph store" -#~ msgstr "Custom graph store" - -#~ msgid "Update layout successful" -#~ msgstr "Update layout successful" - -#~ msgid "Update layout failed" -#~ msgstr "Update layout failed" - -#~ msgid "Map element trash" -#~ msgstr "Map element trash" - -#~ msgid "Map element editor" -#~ msgstr "Map element editor" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Drag an element here to edit the properties" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Please, choose an image or type a name for the element." - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "No selected agent, please select any agent." - -#~ msgid "Pandora Setup" -#~ msgstr "Pandora Setup" - -#~ msgid "General configuration" -#~ msgstr "Algemene configuratie" - -#~ msgid "Automatic update check" -#~ msgstr "Automatic update check" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compact CSS and JS into header" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "The list of IPs separate with carriage return." - -#~ msgid "Visual configuration" -#~ msgstr "Visuele configuratie" - -#~ msgid "Flash charts" -#~ msgstr "Flash diagrammen" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#~ msgid "Deleting" -#~ msgstr "Deleting" - -#~ msgid "Pandora users" -#~ msgstr "Pandora users" - -#~ msgid "Group name" -#~ msgstr "Groep naam" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waardes overeenkomen " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde niet overeenkomt " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde is " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde niet is " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde tussen en " -#~ " is" - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde niet tussen " -#~ "en is" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde onder is" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "Het alarm gaat af wanneer de waarde boven is" - -#~ msgid "matches of the alert" -#~ msgstr "matches of the alert" - -#~ msgid "Correlated alerts" -#~ msgstr "Gecorreleerde alarmen" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configureer gecorreleerd alarm" - -#~ msgid "Assigned actions" -#~ msgstr "Toegekende acties" - -#~ msgid "Assigned to" -#~ msgstr "Toegekend aan" - -#~ msgid "Add condition" -#~ msgstr "Voeg conditie toe" - -#~ msgid "No name was given" -#~ msgstr "Geen naam was gegeven" - -#~ msgid "No agent was given" -#~ msgstr "Geen agent was gegeven" - -#~ msgid "No conditions were given" -#~ msgstr "Geen condities waren gegeven" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "There was an error deleting the alerts, the operation has been cancelled" - -#~ msgid "Could not delete alerts" -#~ msgstr "Could not delete alerts" - -#~ msgid "Error adding module" -#~ msgstr "Error adding module" - -#~ msgid "Modules successfully added " -#~ msgstr "Modules succesvol toegevoegd " - -#~ msgid "Available templates" -#~ msgstr "Available templates" - -#~ msgid "Plugin parameters" -#~ msgstr "Plug-in parameters" - -#~ msgid "Configuration management" -#~ msgstr "Configuration management" - -#~ msgid "Massive agent deletion" -#~ msgstr "Massive agent deletion" - -#~ msgid "There was a problem updating module" -#~ msgstr "Er was een probleem bij het bijwerken van de module" - -#~ msgid "There was a problem adding module" -#~ msgstr "Er was een probleem bij het toevoegen van module" - -#~ msgid "Edit modules" -#~ msgstr "Edit modules" - -#~ msgid "Delete agents" -#~ msgstr "Delete agents" - -#~ msgid "Delete modules" -#~ msgstr "Delete modules" - -#~ msgid "Delete alerts" -#~ msgstr "Delete alerts" - -#~ msgid "Update agent" -#~ msgstr "Update agent" - -#~ msgid "Module assignment" -#~ msgstr "Module assignment" - -#~ msgid "Could not delete modules" -#~ msgstr "Could not delete modules" - -#~ msgid "Timestamp from" -#~ msgstr "Tijdstempel van" - -#~ msgid "Timestamp to" -#~ msgstr "Tijdstempel naar" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Planned Downtime Form" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Planned Downtime present on system" - -#~ msgid "Correlation" -#~ msgstr "Correlatie" - -#~ msgid "Manage SNMP console" -#~ msgstr "Manage SNMP console" - -#~ msgid "Report builder" -#~ msgstr "Report builder" - -#~ msgid "Module component management" -#~ msgstr "Module component management" - -#~ msgid "Network component" -#~ msgstr "Network component" - -#~ msgid "TCP port" -#~ msgstr "TCP port" - -#~ msgid "WMI component management" -#~ msgstr "WMI-onderdeel beheer" - -#~ msgid "Plugin component" -#~ msgstr "Plug-in onderdeel" - -#~ msgid "N/A\t" -#~ msgstr "N.V.T.\t" - -#~ msgid "Custom Value" -#~ msgstr "Custom Value" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Veld #1 (Alias, naam)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Veld #2 (Enkele Lijn)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Veld #3 (Volledige Tekst)" - -#~ msgid "Read incidents" -#~ msgstr "Read incidents" - -#~ msgid "Create incidents" -#~ msgstr "Create incidents" - -#~ msgid "Read agent information" -#~ msgstr "Read agent information" - -#~ msgid "Manage user rights" -#~ msgstr "Manage user rights" - -#~ msgid "Pandora system management" -#~ msgstr "Pandora system management" - -#~ msgid "Error creating export target" -#~ msgstr "Error creating export target" - -#~ msgid "Successfully created export target" -#~ msgstr "Successfully created export target" - -#~ msgid "There are no export targets configured" -#~ msgstr "There are no export targets configured" - -#~ msgid "MD5 check" -#~ msgstr "MD5 controle" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d uur" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d uren" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d dag" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dagen" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d week" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d weken" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d maand" - -#~ msgid "IP address option" -#~ msgstr "IP adres optie" - -#~ msgid "Port option" -#~ msgstr "Port optie" - -#~ msgid "User option" -#~ msgstr "Gebruikersoptie" - -#~ msgid "Password option" -#~ msgstr "Wachtwoord optie" - -#~ msgid "Group management" -#~ msgstr "Groep beheer" - -#~ msgid "Agents in group" -#~ msgstr "Agents in group" - -#~ msgid "Event validate" -#~ msgstr "Event validate" - -#~ msgid "Event not validate" -#~ msgstr "Event not validate" - -#~ msgid "Event report" -#~ msgstr "Event report" - -#~ msgid "Alert report" -#~ msgstr "Alert report" - -#~ msgid "General group report" -#~ msgstr "General group report" - -#~ msgid "Agents detailed view" -#~ msgstr "Agents detailed view" - -#~ msgid "Software agent data" -#~ msgstr "Software agent data" - -#~ msgid "Software agent monitor" -#~ msgstr "Software agent controle" - -#~ msgid "Network agent data" -#~ msgstr "Netwerk agent data" - -#~ msgid "Network agent monitor" -#~ msgstr "Netwerk agent controle" - -#~ msgid "Wrong module type" -#~ msgstr "Wrong module type" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Deze extensie maakt registratie van server plugins makkelijker. Hier kunt u " -#~ "een server plugin downloaden in Pandora FMS 3.x zipped indeling (.pspz). " -#~ "Please refer to documentation on how to obtain and use Pandora FMS Server " -#~ "Plugins.

You can get more plugins in our P" -#~ "ublic Resource Library" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Green cell when the module group and agent have all modules in OK state." - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "Grey cell when the module group and agent don't have any modules." - -#~ msgid "Keygen file does not exists" -#~ msgstr "Keygen bestand bestaat niet" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Keygen bestand is niet uitvoerbaar" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. 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." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." - -#~ msgid "Binary input path" -#~ msgstr "Binair invoerpad" - -#~ msgid "Keygen path" -#~ msgstr "Keygen pad" - -#~ msgid "System Events" -#~ msgstr "System Events" - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "Event not validated" -#~ msgstr "Event not validated" - -#~ msgid "Go to alert overview" -#~ msgstr "Go to alert overview" - -#~ msgid "Create incident from event" -#~ msgstr "Maak incident van gebeurtenis" - -#~ msgid "Event graph by group" -#~ msgstr "Gebeurtenissen grafiek per groep" - -#~ msgid "User activity statistics" -#~ msgstr "User activity statistics" - -#~ msgid "-Select user-" -#~ msgstr "-Select user-" - -#~ msgid "-Select group-" -#~ msgstr "-Select group-" - -#~ msgid "Read message" -#~ msgstr "Read message" - -#~ msgid "Pandora agents" -#~ msgstr "Pandora agents" - -#~ msgid "Agent general information" -#~ msgstr "Agent general information" - -#~ msgid "Flag" -#~ msgstr "Markeer" - -#~ msgid "Invalid method supplied" -#~ msgstr "Invalid method supplied" - -#~ msgid "None agent in this category" -#~ msgstr "None agent in this category" - -#~ msgid "Modules critical" -#~ msgstr "Modules critical" - -#~ msgid "Modules normal" -#~ msgstr "Modules normal" - -#~ msgid "Modules warning" -#~ msgstr "Modules warning" - -#~ msgid "Agents down" -#~ msgstr "Agents down" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Display of last data modules received by agent" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "This agent doesn't have any module" - -#~ msgid "int" -#~ msgstr "int" - -#~ msgid "Raw Data" -#~ msgstr "Onbewerkte Gegevens" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Er zijn geen servers geconfigureerd in de database" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent without monitors" - -#~ msgid "SLA view" -#~ msgstr "SLA view" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Er zijn geen modules om de S.L.A. te evalueren Van" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatic SLA for monitors" - -#~ msgid "Module Down" -#~ msgstr "Module Beneden" - -#~ msgid "Module Up" -#~ msgstr "Module Boven" - -#~ msgid "User-defined SLA items" -#~ msgstr "Door de gebruiker gedfinieerde SLA-items" - -#~ msgid "Single alerts" -#~ msgstr "Enkele waarschuwingen" - -#~ msgid "No simple alerts found" -#~ msgstr "Geen eenvoudige waarschuwingen gevonden" - -#~ msgid "Compound alerts" -#~ msgstr "Samegestelde waarschuwingen" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Deze agent heeft geen actieve monitors" - -#~ msgid "From the last" -#~ msgstr "From the last" - -#~ msgid "secs." -#~ msgstr "secs." - -#~ msgid "View users" -#~ msgstr "View users" - -#~ msgid "No layouts found" -#~ msgstr "No layouts found" - -#~ msgid "Configuration detail" -#~ msgstr "Configuration detail" - -#~ msgid "Configuration report for agent " -#~ msgstr "Configuratie verslag voor agent " - -#~ msgid "Configuration report for group " -#~ msgstr "Configuratie verslag voor groep " - -#~ msgid "Form filter" -#~ msgstr "Formulier filter" - -#~ msgid "Tree View" -#~ msgstr "Structuurweergave" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Er was een probleem met het laden van alarm" - -#~ msgid "3 hours" -#~ msgstr "3 uren" - -#~ msgid "Plannified downtime" -#~ msgstr "Geplande uitvaltijd" - -#~ msgid "Modules over" -#~ msgstr "Modules boven" - -#~ msgid "Modules less or equal to" -#~ msgstr "Modules minder of gelijk aan" - -#~ msgid "Modules less" -#~ msgstr "Modules minder" - -#~ msgid "Modules equal to" -#~ msgstr "Modules gelijk aan" - -#~ msgid "Modules not equal to" -#~ msgstr "Modules niet gelijk aan" - -#~ msgid "Modules normal status" -#~ msgstr "Modules normale status" - -#~ msgid "Agent configuration: " -#~ msgstr "Agent configuratie: " - -#~ msgid "Group configuration: " -#~ msgstr "Groep configuratie: " - -#~ msgid "Module macros" -#~ msgstr "Module macros" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Zoek met deze velden beschrijving, OID, Aangepaste Waarde, SNMP Agent (IP), " -#~ "Enkele waarde, elke Aangepaste OIDs/Datas." - -#~ msgid "Policies operations" -#~ msgstr "Beleid bewerkingen" - -#~ msgid "SNMP operations" -#~ msgstr "SNMP bewerkingen" - -#~ msgid "Collections" -#~ msgstr "Collecties" - -#~ msgid "Inventory modules" -#~ msgstr "Voorraad modules" - -#~ msgid "Local components" -#~ msgstr "Lokale componenten" - -#~ msgid "Manage policies" -#~ msgstr "Beheer beleid" - -#~ msgid "Skins" -#~ msgstr "Lay-out" - -#~ msgid "Event alerts" -#~ msgstr "Gebeurtenis alarmen" - -#~ msgid "Log Collector" -#~ msgstr "Log Verzamelaar" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "Kan niet worden gemaakt export doel: Gebruiker en wachtwoord moeten worden " -#~ "gevuld met FTP modus" - -#~ msgid "Create Service" -#~ msgstr "Maken Service" - -#~ msgid "Service created successfully" -#~ msgstr "Service succesvol gemaakt" - -#~ msgid "Error creating service" -#~ msgstr "Fout maken service" - -#~ msgid "Service updated successfully" -#~ msgstr "Service succesvol bijgewerkt" - -#~ msgid "Error updating service" -#~ msgstr "Fout bijwerken service" - -#~ msgid "Not found" -#~ msgstr "Niet gevonden" - -#~ msgid "New Service" -#~ msgstr "Nieuwe Service" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Deze waardes zijn standaard omdat de service is automatisch uitrekenen modus." - -#~ msgid "Config Service" -#~ msgstr "Config Service" - -#~ msgid "Config Elements" -#~ msgstr "Config Elementen" - -#~ msgid "View Service" -#~ msgstr "Toon Service" - -#~ msgid "Service map" -#~ msgstr "Service kaart" - -#~ msgid "Agent to store data" -#~ msgstr "Agent om data op te slaan" - -#~ msgid "S.L.A. interval" -#~ msgstr "S.L.A. interval" - -#~ msgid "S.L.A. limit" -#~ msgstr "S.L.A. limiet" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Stel de limiet alstublieft in tussen 0 en 100." - -#~ msgid "Warning Service alert" -#~ msgstr "Waarschuwing Service alarm" - -#~ msgid "Critical Service alert" -#~ msgstr "Kritiek Service alarm" - -#~ msgid "SLA critical service alert" -#~ msgstr "SLA kritiek service alarm" - -#~ msgid "Edit service elements" -#~ msgstr "Bewerk service elementen" - -#~ msgid "Error empty module" -#~ msgstr "Fout lege module" - -#~ msgid "Error empty agent" -#~ msgstr "Fout lege agent" - -#~ msgid "Error empty service" -#~ msgstr "Fout lege service" - -#~ msgid "Service element created successfully" -#~ msgstr "Service element succesvol verwijderd" - -#~ msgid "Error creating service element" -#~ msgstr "Fout maken service element" - -#~ msgid "Service element updated successfully" -#~ msgstr "Service element succesvol bijgewerkt" - -#~ msgid "Error updating service element" -#~ msgstr "Fout bijwerken service element" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Service element succesvol verwijderd" - -#~ msgid "Error deleting service element" -#~ msgstr "Fout verwijderen service element" - -#~ msgid "Edit element service" -#~ msgstr "Bewerk element service" - -#~ msgid "Create element service" -#~ msgstr "Maak element service" - -#~ msgid "First select an agent" -#~ msgstr "Selecteer eerst een agent" - -#~ msgid "Critical weight" -#~ msgstr "Kritiek gewicht" - -#~ msgid "Warning weight" -#~ msgstr "Waarschuwing gewicht" - -#~ msgid "Unknown weight" -#~ msgstr "Onbekend gewicht" - -#~ msgid "Ok weight" -#~ msgstr "Ok gewicht" - -#~ msgid "Show extended info" -#~ msgstr "Toon verlengde info" - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Misschien verwijderen van de uitgebreide data of de controle data is " -#~ "voorafgaand aan tabel tsession_extended." - -#~ msgid "Security check is ok." -#~ msgstr "Beveiligingscheck is ok." - -#~ msgid "Security check is fail." -#~ msgstr "Beveiligingscheck is mislukt." - -#~ msgid "Extended info:" -#~ msgstr "Verlengde info:" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "" -#~ "De veranderingen op dit veld zijn gekoppeld met de configuratie data." - -#~ msgid "Using local component" -#~ msgstr "Gebruik maken van lokaal component" - -#~ msgid "Show configuration data" -#~ msgstr "Toon configuratie data" - -#~ msgid "Hide configuration data" -#~ msgstr "Verberg configuratie data" - -#~ msgid "Data configuration" -#~ msgstr "Data configuratie" - -#~ msgid "Load basic" -#~ msgstr "Laad basis" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Laad een basis structuur op data configuratie" - -#~ msgid "Check" -#~ msgstr "Controle" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Controleer de correcte structuur van de data configuratie" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "Eerste lijn moet zijn \"module_begin\"" - -#~ msgid "Data configuration is empty" -#~ msgstr "Data configuratie is leeg" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Laatste lijn moet zijn \"module_end\"" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Naam is missend. Voeg alstublieft een lijn toe met \"module_name " -#~ "yourmodulename\" aan data configuratie" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Type is missend Voeg alstublieft een lijn toe met \"module_type " -#~ "yourmoduletype\" aan data configuratie" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Type is verkeerd. Stel alstublieft een correct type in" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Er is een lijn met een onbekend token 'token_fail'." - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Fout in de syntax, controleer a.u.b. de data configuratie." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "Data configuratie is succesvol gebouwd" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plug-in succesvol verwijderd" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Plug-in kan niet worden verwijderd" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plug-in succesvol toegevoegd" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Plug-in kan niet worden toegevoegd" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plug-in succesvol uitgeschakeld" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Plug-in kan niet worden uitgeschakeld" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plug-in succesvol ingeschakeld" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Plug-in kan niet worden ingeschakeld" - -#~ msgid "New plug-in" -#~ msgstr "Nieuwe plug-in" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Succesvol toegevoegd voorraad module" - -#~ msgid "Error adding inventory module" -#~ msgstr "Fout toevoegen voorraad module" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Succesvol verwijderd voorraad module" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Fout verwijderen voorraad module" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Succesvol geforceerd voorraad module" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Fout geforceerd voorraad module" - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Succesvol bijgewerkt voorraad module" - -#~ msgid "Error updating inventory module" -#~ msgstr "Fout bijwerken voorraad module" - -#~ msgid "Inventory module error" -#~ msgstr "Voorraad module fout" - -#~ msgid "Target" -#~ msgstr "Doel" - -#~ msgid "7 days" -#~ msgstr "7 dagen" - -#~ msgid "Update all" -#~ msgstr "Alles Bijwerken" - -#~ msgid "Manager configuration > New" -#~ msgstr "Beheer configuratie > Nieuw" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Beheer configuratie > Bewerk " - -#~ msgid "Unable to create the collection" -#~ msgstr "Niet mogelijk de collectie te maken" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Nog een collectie met dezelfde korte naam" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Ongeldige leestekens in korte naam" - -#~ msgid "Empty name" -#~ msgstr "Lege naam" - -#~ msgid "Unable to create the collection." -#~ msgstr "Niet mogelijk de collectie te maken." - -#~ msgid "Correct create collection" -#~ msgstr "Corrigeer maken collectie" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Niet mogelijk de collectie te bewerken, lege naam." - -#~ msgid "Unable to edit the collection." -#~ msgstr "Niet mogelijk de collectie te bewerken." - -#~ msgid "Recreate file" -#~ msgstr "Hermaken bestand" - -#~ msgid "Short name:" -#~ msgstr "Korte naam:" - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "De korte naam van de collectie is de naam van map in de bijlage map en de " -#~ "pakket collectie." - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "Korte naam mag alleen alfanumerieke leestekens bevatten, - of _ ." - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "Leeg voor standaard korte naam fc_X waarbij X de collectie id is." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Synthetische rekenkunst" - -#~ msgid "Synthetic average" -#~ msgstr "Synthetisch gemiddelde" - -#~ msgid "Group filter" -#~ msgstr "Groep filter" - -#~ msgid "Fixed value" -#~ msgstr "Vaste waarde" - -#~ msgid "Add module to operation as add" -#~ msgstr "Toevoegen module aan bewerking als toevoeging" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Toevoegen module aan bewerking als aftrekking" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Toevoegen module aan bewerkingen als vermeerdering " - -#~ msgid "Add module to operations as divide" -#~ msgstr "Toevoegen module aan bewerkingen als deling" - -#~ msgid "Remove selected modules" -#~ msgstr "Verwijder geselecteerde modules" - -#~ msgid "Add module to average operation" -#~ msgstr "Toevoegen module aan gemiddelde bewerking" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Verwijder geselecteerde modules van bewerkingsstapel" - -#~ msgid "Move down selected modules" -#~ msgstr "Beweeg geselecteerde modules naar beneden" - -#~ msgid "Move up selected modules" -#~ msgstr "Beweeg geselecteerde modules naar boven" - -#~ msgid "Select Service" -#~ msgstr "Selecteer Service" - -#~ msgid "Netflow filter" -#~ msgstr "Netflow filter" - -#~ msgid "Select filter" -#~ msgstr "Selecteer filter" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Fout: Het conf bestand van agent is niet leesbaar." - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Fout: Het conf bestand van agent is niet schrijfbaar." - -#~ msgid "Add module" -#~ msgstr "Toevoegen module" - -#~ msgid "No module was found" -#~ msgstr "Geen module was gevonden" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Verwijder extern conf agent bestanden in Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "Deze agent heeft geen configuratie op afstand, stel dit a.u.b. in." - -#~ msgid "Succesful add the collection" -#~ msgstr "Succesvol toegevoegd de collectie" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Niet succesvol toegevoegd de collectie" - -#~ msgid "Short Name" -#~ msgstr "Korte Naam" - -#~ msgid "Show files" -#~ msgstr "Toon bestanden" - -#~ msgid "Outdate" -#~ msgstr "Verouderd" - -#~ msgid "Dir" -#~ msgstr "Map" - -#~ msgid "Create a new web Server module" -#~ msgstr "Maak een nieuwe web Server module" - -#~ msgid "Files in " -#~ msgstr "Bestanden in " - -#~ msgid "Back to file explorer" -#~ msgstr "Terug naar bestand verkenner" - -#~ msgid "Compatibility mode" -#~ msgstr "Compatibiliteitsmodus" - -#~ msgid "Correct update file." -#~ msgstr "Corrigeer update bestand." - -#~ msgid "Incorrect update file." -#~ msgstr "Ongeldig update bestand." - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "Sla a.u.b. eerst een nieuwe collectie op voordat u bestand gaat uploaden." - -#~ msgid "No source agent selected" -#~ msgstr "Geen bron agent geselecteerd" - -#~ msgid "Error copying md5 file " -#~ msgstr "Fout bij het kopieren van md5 bestand " - -#~ msgid " md5 file" -#~ msgstr " md5 bestand" - -#~ msgid "Copied " -#~ msgstr "Gekopieerd " - -#~ msgid "Error copying " -#~ msgstr "Fout bij kopieren " - -#~ msgid " config file" -#~ msgstr " config bestand" - -#~ msgid "Web server module" -#~ msgstr "Web server module" - -#~ msgid "Web checks" -#~ msgstr "Web controles" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Laad een basisstructuur op Web Checks" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Controleer de correcte structuur van de WebCheck" - -#~ msgid "Requests" -#~ msgstr "Aanvragen" - -#~ msgid "Agent browser id" -#~ msgstr "Agent browser id" - -#~ msgid "Proxy URL" -#~ msgstr "Proxy URL" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP auth (login)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP auth (pas)" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP auth (server)" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP auth (realm)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "Eerste lijn moet zijn \"task_begin\"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "Webchecks configuratie is leeg" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Laatste lijn moet zijn \"task_end\"" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Web checks zijn correct gebouwd" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Mislukt aanmaken van de map: %s" - -#~ msgid "No files in collection" -#~ msgstr "Geen bestanden in collectie" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Bestand van collectie is groter dan de limiet (" - -#~ msgid "Success: recreate file" -#~ msgstr "Succes: hermaken bestand" - -#~ msgid "Error: recreate file " -#~ msgstr "Fout: hermaken bestand " - -#~ msgid "Collections Management" -#~ msgstr "Collecties Beheer" - -#~ msgid "Manager collection" -#~ msgstr "Beheerder collectie" - -#~ msgid "Successful create collection package." -#~ msgstr "Succesvol maken collectie pakket." - -#~ msgid "Can not create collection package." -#~ msgstr "Kan niet maken collectie pakket." - -#~ msgid "Are you sure to delete?" -#~ msgstr "Weet u zeker dat u wilt verwijderen?" - -#~ msgid "Delete collection" -#~ msgstr "Verwijderen collectie" - -#~ msgid "Re-Apply changes" -#~ msgstr "Opnieuw toepassen veranderingen" - -#~ msgid "Apply changes" -#~ msgstr "Wijzigingen toepassen" - -#~ msgid "Edit template" -#~ msgstr "Bewerk sjabloon" - -#~ msgid "Create template" -#~ msgstr "Maak sjabloon" - -#~ msgid "List templates" -#~ msgstr "Lijst sjablonen" - -#~ msgid "Graph template editor" -#~ msgstr "Grafiek sjabloon editor" - -#~ msgid "Exact match" -#~ msgstr "Exacte overeenkomst" - -#~ msgid "Elements to apply" -#~ msgstr "Elementen om toe te passen" - -#~ msgid "SLA min value" -#~ msgstr "SLA min waarde" - -#~ msgid "SLA min Value" -#~ msgstr "SLA min Waarde" - -#~ msgid "SLA max value" -#~ msgstr "SLA max waarde" - -#~ msgid "SLA max Value" -#~ msgstr "SLA max Waarde" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA Limiet %" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA Limiet Waarde" - -#~ msgid "Sum" -#~ msgstr "Som" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid "Graph template management" -#~ msgstr "Grafiek sjabloon beheer" - -#~ msgid "There are no defined graph templates" -#~ msgstr "Er zijn geen gedefinieerde grafiek sjablonen" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Opschoning succesvol" - -#~ msgid "Cleanup error" -#~ msgstr "Opschoning fout" - -#~ msgid "Wizard template" -#~ msgstr "Wizard sjabloon" - -#~ msgid "Clean up template" -#~ msgstr "Opschonen sjabloon" - -#~ msgid "Filter agent" -#~ msgstr "Filter agent" - -#~ msgid "Agents available" -#~ msgstr "Agents beschikbaar" - -#~ msgid "Select all" -#~ msgstr "Selecteer alles" - -#~ msgid "Agents to apply" -#~ msgstr "Agents om toe te passen" - -#~ msgid "Add agents to template" -#~ msgstr "Agents toevoegen aan sjabloon" - -#~ msgid "Undo agents to template" -#~ msgstr "Ongedaan maken agents aan sjabloon" - -#~ msgid "Apply template" -#~ msgstr "Toepassen sjabloon" - -#~ msgid "Please set template distinct than " -#~ msgstr "Stel alstublieft sjabloon uniek in " - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Dit zal alle verslagen verwijderen die gemaakt zijn in vorige sjabloon " -#~ "applicaties. Wilt u doorgaan?" - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Aangepast Mysql sjabloon opbouwfunctie" - -#~ msgid "Create custom SQL" -#~ msgstr "Maak aangepaste SQL" - -#~ msgid ": Create new custom" -#~ msgstr ": Maak nieuwe aanpassing" - -#~ msgid ": Edit: " -#~ msgstr ": Bewerk: " - -#~ msgid "Successfully operation" -#~ msgstr "Succesvolle bewerking" - -#~ msgid "Could not be operation" -#~ msgstr "Zou geen bewerking kunnen zijn" - -#~ msgid "Sucessfully applied" -#~ msgstr "Succesvol toegepast" - -#~ msgid "reports" -#~ msgstr "verslagen" - -#~ msgid "items" -#~ msgstr "items" - -#~ msgid "Could not be applied" -#~ msgstr "Kon niet worden toegepast" - -#~ msgid "Create report per agent" -#~ msgstr "Maken verslag per agent" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Hoofdletter ongevoelig reguliere expressie voor agent naam. Bijvoorbeeld: " -#~ "Network.* zal overeenkomen met de volgende agent namen: network_agent1, " -#~ "NetworK CHECKS" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Hoofdletter ongevoelige reguliere expressie of string voor module naam. " -#~ "Bijvoorbeeld: als u dit veldt gebruikt met \"Module preciese overeenkomst\" " -#~ "ingeschakeld dan moet dit veld worden gevuld met de letterlijke string van " -#~ "de module naam, zo niet dan kunt u een reguliere expressie gebruiken. " -#~ "Voorbeeld: .*usage.* zal overeenkomsten hebben met: cpu_usage, vram usage in " -#~ "machine 1." - -#~ msgid "Module exact match" -#~ msgstr "Module exacte overeenkomst" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "Controleer dit als u wil dat de module naam letterlijk overeenkomt" - -#~ msgid "Query SQL" -#~ msgstr "Query SQL" - -#~ msgid "SQL preview" -#~ msgstr "SQL voorbeeld" - -#~ msgid "Modules to match" -#~ msgstr "Modules om overeen te komen" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Selecteer de modules om overeen te komen wanneer een verslag word gemaakt " -#~ "voor agents" - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Modules om overeen te komen (Vrije tekst)" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Vrije tekst om de modules van agents te filteren wanneer dit sjabloon wordt " -#~ "toegepast." - -#~ msgid "Create a graph for each agent" -#~ msgstr "Maak een grafiek voor elke agent" - -#~ 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 "" -#~ "Als deze is aangevinkt, de regexp of naam van moduls komen overeen alleen " -#~ "elke met elke agent, in plaats van het maken van een grote grafiek met alle " -#~ "modules van alle agents." - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Sla alstublieft de SLA sjabloon op voor het beginnen van het toevoegen van " -#~ "items in deze lijst." - -#~ msgid "Not literally" -#~ msgstr "Niet letterlijk" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Hoofdletter ongevoelig reguliere expressie voor agent naam. Voorbeeld: " -#~ "Network* zal overeenkomen met de volgende agent namen: network_agent1, " -#~ "NetworK CHECKS" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "Sla alstublieft de sjabloon op om te beginnen met het toevoegen van items in " -#~ "de lijst." - -#~ msgid "Template updated successfully" -#~ msgstr "Sjabloon succesvol bijgewerkt" - -#~ msgid "Error updating template" -#~ msgstr "Fout bijwerken sjabloon" - -#~ msgid "Policies Management" -#~ msgstr "Beleidsbeheer" - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Alle beleidsagenten toegevoegd aan te verwijderen wachtrij" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "" -#~ "Beleidsagenten kunnen niet worden toegevoegd aan de te verwijderen wachtrij" - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "Policy updated" -#~ msgstr "Beleid bijgewerkt" - -#~ msgid "Pending update policy only database" -#~ msgstr "In behandeling bijwerken beleid alleen database" - -#~ msgid "Pending update policy" -#~ msgstr "In behandeling bijwerken beleid" - -#~ msgid "Linking" -#~ msgstr "Koppelen" - -#~ msgid "External alerts" -#~ msgstr "Externe alarmen" - -#~ msgid "Queue" -#~ msgstr "Wachtrij" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "Een beleid met agenten kan niet worden verwijderd. Zuiver deze eerst" - -#~ msgid "Deleting all policy agents" -#~ msgstr "Alle beleidsagenten aan het verwijderen" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Al de beleidsagenten zullen worden verwijderd" - -#~ msgid "Delete all agents" -#~ msgstr "Verwijder alle agenten" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Als u deze beschrijving veranderd, dan moet u deze veranderen naar de tekst " -#~ "van Data configuratie." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "Kon niet worden toegevoegd module(s). U moet een beleid selecteren" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Succesvol toevoegd module(s) (%s/%s) aan beleid %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "Kon niet worden toegevoegd module(s) (%s/%s) aan beleid %s" - -#~ msgid "Successfully added module." -#~ msgstr "Succesvol toegevoegd module." - -#~ msgid "Could not be added module." -#~ msgstr "Kon niet worden toegevoegd module." - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "Het module type in Data configuratie is leeg, neem uit combo box van " -#~ "formulier." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "De module naam in Data configuratie is leeg, neem uit tekst veld van " -#~ "formulier." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Succesvol toegevoegd aan te verwijderen modules in behandeling Zal worden " -#~ "verwijderd in de volgende beleidsapplicatie." - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Succesvol teruggedraaide verwijdering" - -#~ msgid "Could not be reverted" -#~ msgstr "Kon niet worden teruggedraaid" - -#~ msgid "Local component" -#~ msgstr "Lokaal component" - -#~ msgid "Undo deletion" -#~ msgstr "Ongedaan maken verwijdering" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Kopieer geselecteerde modules naar beleid: " - -#~ msgid "Variable" -#~ msgstr "Variabel" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Weer u zeker dat u modules wilt kopiëren naar beleid?\\n" - -#~ msgid "Please select any module to copy" -#~ msgstr "Selecteer alstublieft een module om te kopiëren" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Succesvol toegevoegd aan te verwijderen agenten in behandeling. Zal worden " -#~ "verwijderd in de volgende beleidsapplicatie." - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Succesvol toegevoegd aan wachtrij om te verwijderen" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Kon niet worden toegevoegd aan wachtrij om te verwijderen" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Succesvol verwijderd van te verwijderen agenten in behandeling" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "" -#~ "Kon niet worden verwijdered van te verwijderen agenten in behandeling" - -#~ msgid "Agents in Policy" -#~ msgstr "Agenten in Beleid" - -#~ msgid "Add agents to policy" -#~ msgstr "Toevoegen agenten aan beleid" - -#~ msgid "Delete agents from policy" -#~ msgstr "Verwijder agenten uit beleid" - -#~ msgid "Applied" -#~ msgstr "Toegepast" - -#~ msgid "Not applied" -#~ msgstr "Niet toegepast" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Ontkoppelde modules" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "Laatste applicatie" - -#~ msgid "Add to delete queue" -#~ msgstr "Toevoegen om te verwijderen wachtrij" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Deze agent kan niet extern worden geconfigureerd" - -#~ msgid "Add to apply queue" -#~ msgstr "Toevoegen aan toe te passen wachtrij" - -#~ msgid "Policy applied" -#~ msgstr "Beleid toegepast" - -#~ msgid "Need apply" -#~ msgstr "Nodig toevoegen" - -#~ msgid "Applying policy" -#~ msgstr "Toevoegen beleid" - -#~ msgid "Deleting from policy" -#~ msgstr "Verwijderen van beleid" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Succesvol toegevoegd om de collectie te verwijderen. Zal worden verwijderd " -#~ "in de volgende beleidsapplicatie." - -#~ msgid "Created successfuly" -#~ msgstr "Succesvol gemaakt" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Succesvol toegevoegd aan te verwijderen alarmen in behandeling. Zal worden " -#~ "verwijderd in de volgende beleidsapplicatie." - -#~ msgid "Added action successfuly" -#~ msgstr "Succesvol toevoegen actie" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Succesvol verwijderd actie" - -#~ msgid "Policy module" -#~ msgstr "Beleid module" - -#~ msgid "Module is not selected" -#~ msgstr "Module is niet geselecteerd" - -#~ msgid "Select inventory module" -#~ msgstr "Selecteer voorraad module" - -#~ msgid "Linking modules" -#~ msgstr "Koppelen modules" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Fout: Bijwerken koppeling modules aan beleid" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Succes: Bijwerken koppeling modules aan beleid" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Vrije tekst voor filter (*)" - -#~ msgid "Free text for filter" -#~ msgstr "Vrije tekst voor filter" - -#~ msgid "List of modules unlinked" -#~ msgstr "Lijst van modules ontkoppeld" - -#~ msgid "Add policy" -#~ msgstr "Beleid toevoegen" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Bewerking succesvol verwijderd uit de wachtrij" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "Bewerking kan niet worden verwijderd uit de wachtrij" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Bewerkingen succesvol verwijderd van de wachtrij" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Bewerkingen kunnen niet worden verwijderd van de wachtrij" - -#~ msgid "Update pending" -#~ msgstr "Bijwerken in behandeling" - -#~ msgid "Update pending agents" -#~ msgstr "Bijwerken agenten in behandeling" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Toevoegen aan wachtrij om toe te passen alleen voor database" - -#~ msgid "Link pending modules" -#~ msgstr "Koppelen modules in behandeling" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Zal worden gekoppeld in de volgende beleidsapplicatie" - -#~ msgid "Unlink pending modules" -#~ msgstr "Ontkoppel modules in behandeling" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Zal worden ontkoppeld in de volgende beleidsapplicatie" - -#~ msgid "Delete pending" -#~ msgstr "Verwijderen in behandeling" - -#~ msgid "Delete pending agents" -#~ msgstr "Verwijderen agenten in behandeling" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Zal worden verwijderd in de volgende beleidsapplicatie" - -#~ msgid "Delete pending modules" -#~ msgstr "Verwijderen modules in behandeling" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Verwijderen voorraad modules in behandeling" - -#~ msgid "Delete pending alerts" -#~ msgstr "Verwijderen alarmen in behandeling" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Verwijderen externe alarmen in behandeling" - -#~ msgid "Delete pending file collections" -#~ msgstr "Verwijderen bestand collecties in behandeling" - -#~ msgid "Delete pending plugins" -#~ msgstr "Verwijder plugins in behandeling" - -#~ msgid "Advices" -#~ msgstr "Adviezen" - -#~ msgid "Queue summary" -#~ msgstr "Wachtrij samenvatting" - -#~ msgid "This operation could take a long time" -#~ msgstr "Deze bewerking zou een lange tijd kunnen duren" - -#~ msgid "Apply (database and files)" -#~ msgstr "Toepassen (database en bestanden)" - -#~ msgid "Apply (only database)" -#~ msgstr "Toepassen (alleen database)" - -#~ msgid "Complete" -#~ msgstr "Compleet" - -#~ msgid "Incomplete" -#~ msgstr "Onvolledig" - -#~ msgid "Queue filter" -#~ msgstr "Wachtrij filter" - -#~ msgid "Finished" -#~ msgstr "Beëindigd" - -#~ msgid "Delete from queue" -#~ msgstr "Verwijder uit wachtrij" - -#~ msgid "Empty queue" -#~ msgstr "Lege wachtrij" - -#~ msgid "Delete all" -#~ msgstr "Alles verwijderen" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Bewerking succesvol toegevoegd aan de wachtrij" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "Bewerking kan niet worden toegevoegd aan de wachtrij" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Herhaalde of onverenigbare bewerking in de wachtrij" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Succesvol toegevoegd om plugins in afwachting te verwijderen Zal worden " -#~ "verwijderd in de volgende beleidsapplicatie." - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Kan niet worden toegevoegd om plugins in afwachting te verwijderen." - -#~ msgid "Duplicated alert" -#~ msgstr "Herhaald alarm" - -#~ msgid "Modules in policy agents" -#~ msgstr "Modules in beleidsagenten" - -#~ msgid "Alert Template" -#~ msgstr "Alarm Sjabloon" - -#~ msgid "List event alerts" -#~ msgstr "Lijst gebeurtenis alarmen" - -#~ msgid "Builder event alert" -#~ msgstr "Opbouwfunctie gebeurtenis alarm" - -#~ msgid "Error processing action" -#~ msgstr "Fout verwerken actie" - -#~ msgid "Error validating alert(s)" -#~ msgstr "Fout valideren alarm(en)" - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Move up" -#~ msgstr "Verplaats naar boven" - -#~ msgid "Move down" -#~ msgstr "Verplaats naar beneden" - -#~ msgid "View associated rules" -#~ msgstr "Toon gekoppelde regels" - -#~ msgid "List event rules" -#~ msgstr "Lijst gebeurtenis regels" - -#~ msgid "Configure event rule" -#~ msgstr "Configureer gebeurtenis regel" - -#~ msgid "User comment" -#~ msgstr "Gebruiker commentaar" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Dit veld zal worden verwerkt met regexp" - -#~ msgid "Window" -#~ msgstr "Venster" - -#~ msgid "Configure event alert" -#~ msgstr "Configureer gebeurtenis alarm" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Kon niet worden gemaakt, vul alstublieft in alarm naam" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Regel evaluatie modus" - -#~ msgid "Please Read" -#~ msgstr "Lees Alstublieft" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Aangezien het alarm meerdere acties kan hebben. U kan ze bewerken van de " -#~ "alarm lijst van gebeurtenissen." - -#~ msgid "Group by" -#~ msgstr "Groepeer door" - -#~ msgid "Event rules" -#~ msgstr "Gebeurtenis regels" - -#~ msgid "Error creating rule" -#~ msgstr "Fout maken regel" - -#~ msgid "Successfully created rule" -#~ msgstr "Succesvol gemaakt regel" - -#~ msgid "Error updating rule" -#~ msgstr "Fout bijwerken regel" - -#~ msgid "Successfully updating rule" -#~ msgstr "Succesvol bijwerken regel" - -#~ msgid "Error updating rule operators" -#~ msgstr "Fout bijwerken regel operators" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Succesvol bijwerken regel operators" - -#~ msgid "(Agent)" -#~ msgstr "(Agent)" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Logische expressie voor deze regels:" - -#~ msgid "Update operators" -#~ msgstr "Bijwerken operators" - -#~ msgid "Success: create the alerts." -#~ msgstr "Succes: maken van de alarmen." - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Mislukt: maak de alarmen voor deze modules, controleer a.u.b.." - -#~ msgid "Modules agents in policy" -#~ msgstr "Modules agenten in beleid" - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "SNMP Alarmen om te worden verwijderd" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Succes: verwijderen van de alarmen." - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "Mislukt: verwijder de alarmen voor deze modules, controleer a.u.b.." - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Succesvol bijgewerkt alarmen (%s / %s)" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Niet succesvol bijgewerk alarmen (%s / %s)" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "SNMP Alarmen om te worden bewerkt" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Massale alarmen beleid toevoeging" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Massale alarmen beleid verwijdering" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Massaal alarm SNMP verwijdering" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Massaal alarm SNMP editie" - -#~ msgid "Custom OID" -#~ msgstr "Aangepaste OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Fout parsering MIB" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Succesvol toegevoegd trap aangepaste waardes" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Fout toevoegen trap aangepaste waardes" - -#~ msgid "No change in data" -#~ msgstr "Geen verandering in data" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Succesvol bijgewerkte trap aangepaste waardes" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Fout bijwerken trap aangepaste waardes" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Succesvol verwijderd trap aangepaste waardes" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Fout verwijderen trap aangepaste waardes" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Bijgewerkt %s/%s trappen" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Mislukt uploaden %s/%s trappen" - -#~ msgid "Fail uploaded file" -#~ msgstr "Mislukt uploaden bestand" - -#~ msgid "Load MIB" -#~ msgstr "Laad MIB" - -#~ msgid "Upload MIB" -#~ msgstr "Uploaden MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Log opslag map" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Map waar log data zal worden opgeslagen" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Stelt de maximale levensduur in voor log data in dagen." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Enterprise ACL instellen" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Voeg nieuw ACL element aan het profiel toe" - -#~ msgid "Section" -#~ msgstr "Sectie" - -#~ msgid "Page" -#~ msgstr "Pagina" - -#~ msgid "Filter by profile" -#~ msgstr "Filter per profiel" - -#~ msgid "Skins configuration" -#~ msgstr "Weergave configuratie" - -#~ msgid "Error deleting skin" -#~ msgstr "Fout verwijderen weergave" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Succesvol verwijderd weergave" - -#~ msgid "Create skin" -#~ msgstr "Maken weergave" - -#~ msgid "Skin name" -#~ msgstr "Weergave naam" - -#~ msgid "Relative path" -#~ msgstr "Relatief pad" - -#~ msgid "Successfully updated skin" -#~ msgstr "Succesvol bijgewerkte weergave" - -#~ msgid "Error updating skin" -#~ msgstr "Fout bijwerken weergave" - -#~ msgid "Error creating skin" -#~ msgstr "Fout maken weergave" - -#~ msgid "Successfully created skin" -#~ msgstr "Succesvol gemaakte weergave" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Zip bestand met weergave submap. De naam van het zip bestand kan alleen " -#~ "alfanumerieke tekens gebruiken." - -#~ msgid "Group/s" -#~ msgstr "Groep(en)" - -#~ msgid "Metaconsole setup" -#~ msgstr "Metaconsole instellen" - -#~ msgid "Successfully update" -#~ msgstr "Succesvol bijgewerjt" - -#~ msgid "Could not be update" -#~ msgstr "Kon niet worden bijgewerkt" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Pandora FMS Metaconsole item editie" - -#~ msgid "Auth token" -#~ msgstr "Auth token" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token voorheen geconfigureerd op het doel Pandora console om mogelijk te " -#~ "maken gedelegeerde authenticatie te gebruiken." - -#~ msgid "Console URL" -#~ msgstr "Console URL" - -#~ msgid "DB Host" -#~ msgstr "DB Host" - -#~ msgid "DB Name" -#~ msgstr "DB Naam" - -#~ msgid "DB User" -#~ msgstr "DB Gebruiker" - -#~ msgid "DB Password" -#~ msgstr "DB Wachtwoord" - -#~ msgid "Console User" -#~ msgstr "Console Gebruiker" - -#~ msgid "Console Password" -#~ msgstr "Console Wachtwoord" - -#~ msgid "DB" -#~ msgstr "DB" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "Compatibility" -#~ msgstr "Compatibiliteit" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "Aantal dagen voordat data is overgezet naar geschiedenis database." - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Data grootte van mechanisme gebruikt om data over te zetten (vergelijkbaar " -#~ "met een data buffer.)" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Tijd interval tussen data overdracht" - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Voor het activeren van deze optie controleer uw ACL Setup. Het is mogelijk " -#~ "dat u toegang verliest tot de console." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "Only validated events" -#~ msgstr "Alleen gevalideerde gebeurtenissen" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "De voorraad modules meegenomen in de veranderingen zwarte lijst zal niet " -#~ "gebeurtenissen genereren wanneer het verandert." - -#~ msgid "Out of black list" -#~ msgstr "Uit de zwarte lijst" - -#~ msgid "In black list" -#~ msgstr "In zwarte lijst" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Duw geselecteerde modules in zwarte lijst" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Haal geselecteerde modules uit de zwarte lijst" - -#~ msgid "Enterprise options" -#~ msgstr "Enterprise opties" - -#~ msgid " Caracters" -#~ msgstr " Leestekens" - -#~ msgid "Set 0 if never expire." -#~ msgstr "0 instellen indien nooit laten verlopen" - -#~ msgid " Days" -#~ msgstr " Dagen" - -#~ msgid " Minutes" -#~ msgstr " Minuten" - -#~ msgid "Two attempts minimum" -#~ msgstr "Twee pogingen minimum" - -#~ msgid " Attempts" -#~ msgstr " Pogingen" - -#~ msgid "Enterprise password policy" -#~ msgstr "Enterprise wachtwoordbeleid" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Regels toegepast aan het beheer van wachtwoorden. Dit beleid is toepasbaar " -#~ "aan alle gebruikers behalve de beheerder." - -#~ msgid "Active directory" -#~ msgstr "Actieve map" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Externe Pandora FMS" - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Externe Babel Enterprise" - -#~ msgid "Remote Integria" -#~ msgstr "Externe Integria" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Local component management" -#~ msgstr "Lokale component beheer" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Succesvol gemaakt voorraad module" - -#~ msgid "Error creating inventory module" -#~ msgstr "Fout maken voorraad module" - -#~ msgid "Interpreter" -#~ msgstr "Tolk" - -#~ msgid "separate fields with " -#~ msgstr "afgescheide velden met " - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Of schakel Pandora FMS enterprise uit" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ "Deze licentie is verlopen. " -#~ "

U kunt geen nieuwe updates verkrijgen totdat u de licentie heeft " -#~ "vernieuwd." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "Licentie buiten de limieten " -#~ "

Deze licentie laat %d agenten toe en u heeft %d agenten " -#~ "geconfigureerd." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Om Pandora FMS te blijven gebruiken, schakel dan a.u.b. enterprise uit door " -#~ "de Enterprise map in de console te hernoemen.

Of neem contact op met " -#~ "Artica op info@artica.es voor een geldige licentie:" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Neem a.u.b. contact op met Artica op info@artica.es om de licentie te " -#~ "vernieuwen." - -#~ msgid "Renew" -#~ msgstr "Hernieuwen" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Configureer a.u.b. deze widget voordat u deze gebruikt" - -#~ msgid "Latest events list" -#~ msgstr "Laatste gebeurtenissen lijst" - -#~ msgid "Limit" -#~ msgstr "Limiet" - -#~ msgid "Map made by user" -#~ msgstr "Kaart gemaakt door gebruiker" - -#~ msgid "Show a map made by user" -#~ msgstr "Toon een kaart gemaakt door gebruiker" - -#~ msgid "Alerts Fired" -#~ msgstr "Alarmen Afgegaan" - -#~ msgid "Alerts Fired report" -#~ msgstr "Alarmen Afgegaan verslag" - -#~ msgid "Show a report made by user" -#~ msgstr "Toon een verslag gemaakt door gebruiker" - -#~ msgid "Single graph" -#~ msgstr "Enkele grafiek" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Toon een grafiek van een agent module" - -#~ msgid "Show the URL content" -#~ msgstr "Toon de URL inhoud" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Hoogte in px (nul voor automatisch)" - -#~ msgid "My URL" -#~ msgstr "Mijn URL" - -#~ msgid "Invalid URL" -#~ msgstr "Ongeldige URL" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Welkomstbericht aan Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Welkom" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Dit is een voorbeeld van een dashboard widget. Een widget kan elementen " -#~ "bevatten" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Om meer elementen toe te voegen, klik op \"Toevoegen widgets\" " -#~ "bovenaan deze pagina." - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Om dit bericht te verwijderen, klik op de verwijderen-knop in de " -#~ "rechterboven hoek van dit element." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Om dit te doen, hoeft u slechts op de titel te klikken en deze te slepen en " -#~ "los te laten op de gewenste plek." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Dank voor gebruiken Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Toon een kaart van het gemonitorde netwerk" - -#~ msgid "No overlap" -#~ msgstr "Geen overlap" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "Maps status" -#~ msgstr "Kaarten status" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Algemene en snelle visuele kaarten verslag" - -#~ msgid "Panel with a message" -#~ msgstr "Paneel met een bericht" - -#~ msgid "My Post" -#~ msgstr "Mijn Post" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Toon een gedefinieerde aangepaste grafiek" - -#~ msgid "Groups status" -#~ msgstr "Groepen status" - -#~ msgid "General and quick group status report" -#~ msgstr "Algemene en snelle groep status verslag" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Toon een lijst van algemene monitor status" - -#~ msgid "Dashboard replicate" -#~ msgstr "Dashboard replicatie" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "Niet gekopieerd. Fout kopiëren data U moet een dashboard selecteren" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Niet gekopieerd. Fout bij kopieren van gegevens" - -#~ msgid "Successfully copyed" -#~ msgstr "Succesvol gekopieerd." - -#~ msgid "Source user's group" -#~ msgstr "Bron gebruiker's groep" - -#~ msgid "Destination user's group" -#~ msgstr "Doel gebruiker's groep" - -#~ msgid "Group Dashboards" -#~ msgstr "Groep Dashboards" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Replicatie Dashboard" - -#~ msgid "Configure widget" -#~ msgstr "Configureer widget" - -#~ msgid "Delete widget" -#~ msgstr "Verwijder widget" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Widget kan niet worden geladen" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Configureer a.u.b. de widget opnieuw om deze te herstellen" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Dashboard succesvol bijgewerkt" - -#~ msgid "Could not update dashboard" -#~ msgstr "Kon niet worden bijgewerkt dashboard" - -#~ msgid "Could not create dashboard" -#~ msgstr "Kon dashboard niet maken" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Dashboard succesvol gemaakt" - -#~ msgid "Slides mode" -#~ msgstr "Dia-modus" - -#~ msgid "Next Dashboard" -#~ msgstr "Volgende Dashboard" - -#~ msgid "Play" -#~ msgstr "Speel" - -#~ msgid "Previous Dashboard" -#~ msgstr "Voorafgaand Dashboard" - -#~ msgid "Pause" -#~ msgstr "Pauze" - -#~ msgid "Next slide in" -#~ msgstr "Volgende slide" - -#~ msgid "Add dashboard" -#~ msgstr "Toevoegen dashboard" - -#~ msgid "Add widget" -#~ msgstr "Toevoegen widget" - -#~ msgid "Update dashboard" -#~ msgstr "Bijwerken dashboard" - -#~ msgid "Delete dashboard" -#~ msgstr "Verwijderen dashboard" - -#~ msgid "Dashboard options" -#~ msgstr "Dashboard opties" - -#~ msgid "Private dashboard" -#~ msgstr "Privé dashboard" - -#~ msgid "Add new dashboard view" -#~ msgstr "Toevoegen nieuw dashboard weergave" - -#~ msgid "Add new widget" -#~ msgstr "Toevoegen nieuwe widget" - -#~ msgid "Search results for" -#~ msgstr "Zoek resultaten voor" - -#~ msgid "Screens" -#~ msgstr "Schermen" - -#~ msgid "Create visualmap" -#~ msgstr "Maken visuele kaart" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "De gebruiker is geen van beiden groepen met EW profiel" - -#~ msgid "Succesful updated" -#~ msgstr "Succesvol bijgewerkt" - -#~ msgid "Unsucessful updated" -#~ msgstr "Niet succesvol bijgewerkt" - -#~ msgid "Fields" -#~ msgstr "Velden" - -#~ msgid "Tactical View" -#~ msgstr "Tactische Weergave" - -#~ msgid "More events" -#~ msgstr "Meer gebeurtenissen" - -#~ msgid "Create module" -#~ msgstr "Maak module" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Kan niet verbinden met Pandora FMS exemplaar" - -#~ msgid "Web check" -#~ msgstr "Web controle" - -#~ msgid "Module description" -#~ msgstr "Module beschrijving" - -#~ msgid "Step by step wizard" -#~ msgstr "Stap voor stap wizard" - -#~ msgid "Click Create to continue" -#~ msgstr "Klik Maak om verder te gaan" - -#~ msgid "Please, select a module" -#~ msgstr "Selecteer alstublieft een module" - -#~ msgid "Edit module" -#~ msgstr "Bewerk module" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "" -#~ "Het alarm dat u probeert toe te voegen is al aanwezig in de lijst van alarmen" - -#~ msgid "Please, select an alert" -#~ msgstr "Selecteer alstublieft een alarm" - -#~ msgid "Please, select an agent" -#~ msgstr "Selecteer alstublief een agent" - -#~ msgid "String" -#~ msgstr "String" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Een andere agent bestaat al met dezelfde naam" - -#~ msgid "Preview" -#~ msgstr "Vooruitblik" - -#~ msgid "Edit agent" -#~ msgstr "Bewerk agent" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Stel alstublieft een geldig IP adres in" - -#~ msgid "Advanced configuration" -#~ msgstr "Geavanceerde configuratie" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Ongeldige leestekens gevonden in module naam" - -#~ msgid "Please, set a name" -#~ msgstr "Stel alsublieft een naam in" - -#~ msgid "Please, set an interval" -#~ msgstr "Stel alstublieft een interval in" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Selecteer de agent om te worden bewerkt of verwijderd" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Selecteer de agent waar de module zal worden gemaakt" - -#~ msgid "Create Module" -#~ msgstr "Maak Module" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Selecteer de module om te worden bewerkt of verwijderd" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Selecteer de module waar het alarm zal worden aangemaakt" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Selecteer het alarm om te worden bewerkt of verwijderd" - -#~ msgid "Group View" -#~ msgstr "Groep Weergave" - -#~ msgid "Synchronizing" -#~ msgstr "Synchroniseren" - -#~ msgid "Users synchronization" -#~ msgstr "Gebruikers synchronisatie" - -#~ msgid "Groups synchronization" -#~ msgstr "Groepen synchronisatie" - -#~ msgid "Alerts synchronization" -#~ msgstr "Alarmen synchronisatie" - -#~ msgid "Components synchronization" -#~ msgstr "Compenenten synchronizatie" - -#~ msgid "Tags synchronization" -#~ msgstr "Labels synchronisati" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Kon niet worden bijgewerkt: Fout in %s" - -#~ msgid "Customize sections" -#~ msgstr "Aanpassen secties" - -#~ msgid "Disabled sections" -#~ msgstr "Uitgeschakelde secties" - -#~ msgid "Enabled sections" -#~ msgstr "Ingeschakelde secties" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Duw geselcteerde secties om deze in te schakelen" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "" -#~ "Voer pop-bewerkingen uit op geselecteerde secties om deze uit te schakelen" - -#~ msgid "Passwords" -#~ msgstr "Wachtwoorden" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Fout bijwerken gebruiker %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Bijgewerkte gebruiker %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Fout maken gebruiker %s" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Gemaakte gebruiker %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Fout maken/bijwerken van de volgende elementen " -#~ "groepen/profielen/gebruikersprofielen (%d/%d/%d)" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "De volgende elementen groepen/profielen/gebruikersprofielen zijn succesvol " -#~ "gemaakt/bijgewerkt (%d/%d/%d)" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Fout verbinden met %s" - -#~ msgid "This metaconsole" -#~ msgstr "Deze metaconsole" - -#~ msgid "Profile mode" -#~ msgstr "Profiel modus" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Profieel synchronisatie modus." - -#~ msgid "New profile" -#~ msgstr "Nieuw profiel" - -#~ msgid "Copy profile" -#~ msgstr "Kopieer profiel" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "" -#~ "Controleer deze om de originele profielen van de gebruiker te kopieëren" - -#~ msgid "Sync" -#~ msgstr "Sync" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Fout maken %s componenten groepen " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Gemaakt %s componenten groepen" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Fout maken/bijwerken %s/%s lokale componenten " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s lokale componenten" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Fout maken/bijwerken %s/%s netwerk componenten " - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s netwerk componenten" - -#~ msgid "Metaconsole elements" -#~ msgstr "Metaconsole elementen" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "Het aantal van elementen opgehaald voor elke instantie in sommige weergaves." - -#~ msgid "Visual" -#~ msgstr "Visueel" - -#~ msgid "Could not be delete" -#~ msgstr "Kon niet worden verwijderd" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Compleet pad naar Pandora console zonder laatste \"/\" leesteken. Voorbeeld " - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "Er zijn geen servers toegevoegd aan metaconsole" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Fout maken/bijwerken %s/%s opdrachten" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s opdrachten" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Fout maken/bijwerken %s/%s acties" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s acties" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Fout maken/bijwerken %s/%s sjablonen" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s sjablonen" - -#~ msgid "Propagation" -#~ msgstr "Doorgifte" - -#~ msgid "Only database" -#~ msgstr "Alleen database" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Fout maken/bijwerken %s/%s labels" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s labels" - -#~ msgid "Active events history" -#~ msgstr "Actieve gebeurtenissen geschiedenis" - -#~ msgid "Please search for anything text." -#~ msgstr "Zoek voor alles tekst" - -#~ msgid "Original string" -#~ msgstr "Originele string" - -#~ msgid "Translation in selected language" -#~ msgstr "Vertaling in geselecteerde taal" - -#~ msgid "Customize translation" -#~ msgstr "Aanpassen vertaling" - -#~ msgid "Consoles Setup" -#~ msgstr "Consoles Installatie" - -#~ msgid "General setup" -#~ msgstr "Algemene installatie" - -#~ msgid "Passwords setup" -#~ msgstr "Wachtwoorden instellen" - -#~ msgid "Visual setup" -#~ msgstr "Visueel instellen" - -#~ msgid "Performance setup" -#~ msgstr "Prestatie instellingen" - -#~ msgid "Strings translation" -#~ msgstr "Strings vertaling" - -#~ msgid "Consoles setup" -#~ msgstr "Consoles installatie" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Fout maken/bijwerken %s/%s groepen" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s groepen" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "omgeleide ip server in conf in bron DB" - -#~ msgid "created agent in destination DB" -#~ msgstr "gemaakte agent in doel DB" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "gemaakte agent modules in doel DB" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "gemaakte agent alarmen in doel DB" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "gemaakte alarmen acties in doel DB" - -#~ msgid "disabled agent in source DB" -#~ msgstr "uitgeschakelde agent in bron DB" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Niet ingesteld metaconsole IP in de \"IP lijst met API toegang\" raden " -#~ "Pandora Console." - -#~ msgid "Successfully moved" -#~ msgstr "Succesvol verplaatst" - -#~ msgid "Could not be moved" -#~ msgstr "Kon niet worden verplaatst" - -#~ msgid "Source Server" -#~ msgstr "Bron Server" - -#~ msgid "Destination Server" -#~ msgstr "Doel Server" - -#~ msgid "Add agents to destination server" -#~ msgstr "Toevoegen agenten aan doel server" - -#~ msgid "Move" -#~ msgstr "Verplaatsen" - -#~ msgid "Policy Manager" -#~ msgstr "Beleidsbeheer" - -#~ msgid "Apply policies" -#~ msgstr "Toepassen beleid" - -#~ msgid "Policies queue" -#~ msgstr "Beleid wachtwij" - -#~ msgid "Policies apply" -#~ msgstr "Beleid toepassen" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Fout maken %s beleid" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Gemaakt %s beleid" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Fout maken/bijwerken %s/%s beleidsmodules" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Gemaakt/Bijgewerkt %s/%s beleidsmodules" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Fout verwijderen %s beleidsmodules" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Verwijderd %s beleidsmodules" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Fout maken %s beleidsalarmen" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Gemaakt %s beleidsalarmen" - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Fout verwijderen %s beleidsalarmen" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Verwijderd %s beleidsalarmen" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Metaconsole heeft vorige activatie nodig van normale console, neem s.v.p. " -#~ "contact op met de systeembeheerder als u assistentie nodig heeft.
" - -#~ msgid "Network traffic" -#~ msgstr "Netwerk verkeer" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Om de beste gebruikerservaring te hebben met Pandora FMS, adviseren wij u " -#~ "ten sterkste om te gebruiken" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox of Google Chrome browsers." - -#~ msgid "Monitors view" -#~ msgstr "Monitors weergave" - -#~ msgid "Create new report" -#~ msgstr "Maak nieuw verslag" - -#~ msgid "Report templates" -#~ msgstr "Verslag sjablonen" - -#~ msgid "Templates wizard" -#~ msgstr "Sjablonen wizard" - -#~ msgid "Live view" -#~ msgstr "Live weergave" - -#~ msgid "Agent management" -#~ msgstr "Agent management" - -#~ msgid "Alert management" -#~ msgstr "Alarm beheer" - -#~ msgid "Tag management" -#~ msgstr "Label beheer" - -#~ msgid "Policy management" -#~ msgstr "Beleidsbeheer" - -#~ msgid "Category management" -#~ msgstr "Categorie beheer" - -#~ msgid "Metasetup" -#~ msgstr "Metasetup" - -#~ msgid "Back to login" -#~ msgstr "Terug naar login" - -#~ msgid "Agents movement" -#~ msgstr "Agents beweging" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Succesvolle update van de netwerkkaart." - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Niet succesvol update van de netwerkkaart." - -#~ msgid "Unnamed " -#~ msgstr "Naamloos " - -#~ msgid "Filter by agents" -#~ msgstr "Filter per agents" - -#~ msgid "Filter by modules" -#~ msgstr "Filter per modules" - -#~ msgid "Show modules" -#~ msgstr "Toon modules" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Toon onderliggenden Metaconsole" - -#~ msgid "Show modulegroup" -#~ msgstr "Toon modulegroep" - -#~ msgid "There is no group selected" -#~ msgstr "Er is geen groep geselecteerd" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Kan niet verbinden met %s Pandora om netwerkkaart te genereren." - -#~ msgid "Agent modules" -#~ msgstr "Agent modules" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Toevoegen geselecteerde modules aan agent" - -#~ msgid "Undo changes" -#~ msgstr "Ongedaan maken veranderingen" - -#~ msgid "Latency" -#~ msgstr "Wachttijd" - -#~ msgid "Response" -#~ msgstr "Antwoord" - -#~ msgid "Check type" -#~ msgstr "Controleer type" - -#~ msgid "String to check" -#~ msgstr "String om te controleren" - -#~ msgid "Add check" -#~ msgstr "Controle toevoegen" - -#~ msgid "Delete check" -#~ msgstr "Verwijder controle" - -#~ msgid "Various" -#~ msgstr "Verscheidene" - -#~ msgid "Thresholds" -#~ msgstr "Drempelwaardes" - -#~ msgid "Web configuration" -#~ msgstr "Web configuratie" - -#~ msgid "Alerts in module" -#~ msgstr "Alarmen in module" - -#~ msgid "Checks" -#~ msgstr "Controles" - -#~ msgid "Deleted modules" -#~ msgstr "Verwijderde modules" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Fout toevoegen module %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Er was een fout bij het maken van de alarmen, de bewerking is geannuleerd" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Kon niet maken agent %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agent succesvol toegevoegd" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s Modules aangemaakt" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Kon niet bijwerken agent %s" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent succesvol bijgewerkt" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Modules verwijderd" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Fout bijwerken module %s" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Er was een fout bij het bijwerken van de alarmen, de bewerken is geannuleerd" - -#~ msgid "Successfully updated module." -#~ msgstr "Succesvol bijgewerkt module." - -#~ msgid "Manage agent modules" -#~ msgstr "Beheer agent modules" - -#~ msgid "No admin user" -#~ msgstr "Geen admin gebruiker" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Netflow uitschakelen aangepast live weergave filters" - -#~ msgid "Customizable section" -#~ msgstr "Aanpasbare sectie" - -#~ msgid "User synchronization" -#~ msgstr "Gebruiker synchronisatie" - -#~ msgid "Group synchronization" -#~ msgstr "Groep synchronisatie" - -#~ msgid "Go to agent detail" -#~ msgstr "Ga naar agent detail" - -#~ msgid "Create new module" -#~ msgstr "Maken nieuwe module" - -#~ msgid "Go to module detail" -#~ msgstr "Ga naar module detail" - -#~ msgid "Create new alert" -#~ msgstr "Maken nieuw alarm" - -#~ msgid "Stand By" -#~ msgstr "Stand By" - -#~ msgid "Go to Alert detail" -#~ msgstr "Ga naar Alarm detail" - -#~ msgid "Delete alert" -#~ msgstr "Verwijderen alarm" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Er was een probleem met het laden van label" - -#~ msgid "Plugin management" -#~ msgstr "Plugin beheer" - -#~ msgid "Create plugin" -#~ msgstr "Maken plugin" - -#~ msgid "Edit plugin" -#~ msgstr "Bewerk plugin" - -#~ msgid "Log viewer" -#~ msgstr "Log weergave" - -#~ msgid "Start date" -#~ msgstr "Start datum" - -#~ msgid "Copy Dashboard" -#~ msgstr "Kopieer Dashboard" - -#~ msgid "Network console" -#~ msgstr "Netwerk console" - -#~ msgid "Custom SQL" -#~ msgstr "Aangepaste SQL" - -#~ msgid "Export this list to CSV" -#~ msgstr "Exporteer deze lijst naar CSV" - -#~ msgid "List of elements" -#~ msgstr "Lijst van elementen" - -#~ msgid "Service Map" -#~ msgstr "Service Kaart" - -#~ msgid "Service deleted successfully" -#~ msgstr "Service succesvol verwijderd" - -#~ msgid "Error deleting service" -#~ msgstr "Fout verwijderen service" - -#~ msgid "Success be updated." -#~ msgstr "Succes is bijgewerkt." - -#~ msgid "Could not be updated." -#~ msgstr "Kan niet worden bijgewerkt." - -#~ msgid "Policy: " -#~ msgstr "Beleid: " - -#~ msgid "Status: " -#~ msgstr "Status: " - -#~ msgid "Data: " -#~ msgstr "Data: " - -#~ msgid "Last contact: " -#~ msgstr "Laatste contact: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Netwerkkaart enterprise" - -#~ msgid "Not found networkmap." -#~ msgstr "Niet gevonden netwerkkaart." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Netwerkkaart enterprise - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Succesvol gemaakt" - -#~ msgid "Succesfully updated" -#~ msgstr "Succesvol bijgewerkt" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Succesvol duplicaat" - -#~ msgid "Could not be duplicated" -#~ msgstr "Kon niet worden gedupliceerd" - -#~ msgid "Succesfully deleted" -#~ msgstr "Succesvol verwijderd" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Geen collectie toegekend aan deze agent" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "De netwerkkaart is al gegenereerd." - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Afmeting van netwerkkaart (Breedte x Hoogte)" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Method generation networkmap" -#~ msgstr "Methode generatie netwerkkaart" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Ververs netwerkkaart status" - -#~ msgid "Resize the networkmap" -#~ msgstr "Wijzig formaat van de netwerkkaart" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "" -#~ "Deze operatie kan niet ongedaan worden gemaakt, aangezien deze op de DB zit." - -#~ msgid "Save networkmap" -#~ msgstr "Opslaan netwerkkaart" - -#~ msgid "Update networkmap" -#~ msgstr "Bijwerken netwerkkaart" - -#~ msgid "Networkmap resized." -#~ msgstr "Afmeting netwerkkaart gewijzigd." - -#~ msgid "Error process map" -#~ msgstr "Fout verwerking kaart" - -#~ msgid "Details of node:" -#~ msgstr "Details van knooppunt:" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Deze agent heeft geen beleid toegekend" - -#~ msgid "Policy outdate" -#~ msgstr "Beleid outdate" - -#~ msgid "Toggle the collection table" -#~ msgstr "Omschakelen van de collectie tabel" - -#~ msgid "Descripttion" -#~ msgstr "Beschrijving" - -#~ msgid "Show Collection" -#~ msgstr "Toon Collectie" - -#~ msgid "Toggle the alert table" -#~ msgstr "Omschakelen van de alarm tabel" - -#~ msgid "Show Alert" -#~ msgstr "Toon Alarm" - -#~ msgid "Toggle the module table" -#~ msgstr "Omschakelen van de module tabel" - -#~ msgid "Relationship" -#~ msgstr "Relatie" - -#~ msgid "Show Modules" -#~ msgstr "Toon Modules" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Niet-geadopteerd)" - -#~ msgid "(Adopted)" -#~ msgstr "(Geadopteerd)" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Niet-geadopteerd) (Ontkoppeld)" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Geadopteerd) (Ontkoppeld)" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Export to PDF" -#~ msgstr "Exporteer naar PDF" - -#~ msgid "Backup" -#~ msgstr "Backup" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Pandora database backup hulpprogramma" - -#~ msgid "Lost" -#~ msgstr "Verloren" - -#~ msgid "Backups list" -#~ msgstr "Backups lijst" - -#~ msgid "Create backup" -#~ msgstr "Maak backup" - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "Fout maken '%s' beleid, de naam bestaat en er is geen vrije naam." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Waarschuwing maken '%s' beleid, de naam bestaat, het beleid heeft een naam " -#~ "%s." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Fout het beleid heeft geen naam." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Succes maken '%s' beleid." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Fout maken '%s' beleid." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Succes toevoegen '%s' agent." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Fout toevoegen '%s' agent." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Succes toevoegen '%s' collectie." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Fout toevoegen '%s' collectie." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Fout toevoegen van de module, heeft het type niet." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Fout toevoegen van de module, fout in label component." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Succes toevoegen '%s' module." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Fout toevoegen '%s' module." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Fout toevoegen van het alarm, het sjabloon '%s' bestaat niet." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Fout toevoegen van het alarm, de module '%s' bestaat niet." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Succes toevoegen '%s' alarm." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Fout toevoegen '%s' alarm." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Fout toevoegen van het alarm, de actie '%s' bestaat niet." - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Succes toevoegen '%s' actie." - -#~ msgid "Report to build" -#~ msgstr "Verslag te bouwen" - -#~ msgid "Send to email" -#~ msgstr "Stuur naar e-mail" - -#~ msgid "Save to disk into path" -#~ msgstr "Opslaan naar schijf in pad" - -#~ msgid "Send custom report by email" -#~ msgstr "Stuur aangepast verslag per e-mail" - -#~ msgid "Save custom report to disk" -#~ msgstr "Opslaan aangepast verslag naar schijf" - -#~ msgid "Backup Pandora database" -#~ msgstr "Backup Pandora database" - -#~ msgid "Not scheduled" -#~ msgstr "Niet gepland" - -#~ msgid "Hourly" -#~ msgstr "Uurlijk" - -#~ msgid "Yearly" -#~ msgstr "Jaarlijks" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Dit is het automatisch gegenereerde verslag" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Open het bijgevoegde bestand om het te bekijken" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Beantwoord deze e-mail alstublieft niet" - -#~ msgid "Cron jobs" -#~ msgstr "Cron taken" - -#~ msgid "Add new job" -#~ msgstr "Voeg nieuwe taak toe" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Pad bestaat niet of is niet beschrijfbaar" - -#~ msgid "Edit job" -#~ msgstr "Bewerk taak" - -#~ msgid "Cron extension is not running" -#~ msgstr "Cron extensie is niet draaiende" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "" -#~ "Cron extensie is nooit draaiende geweest of is niet correct geconfigureerd" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Deze extensie is afhankelijk van een juiste setup van cron, de tijd-" -#~ "gebaseerde planningsdienst" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Voeg a.u.b. de volgende regel toe aan uw crontab bestand" - -#~ msgid "Last execution" -#~ msgstr "Laatste uitvoering" - -#~ msgid "Cron extension is running" -#~ msgstr "Cron extensie is draaiende" - -#~ msgid "Scheduled jobs" -#~ msgstr "Geplande taken" - -#~ msgid "Task" -#~ msgstr "Taak" - -#~ msgid "Scheduled" -#~ msgstr "Gepland" - -#~ msgid "First_execution" -#~ msgstr "First_execution" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Misschien is de eerste uitvoering niet precies gelijk aan deze waarde omdat " -#~ "de cron configuratie anders is." - -#~ msgid "Last run" -#~ msgstr "Laatste uitvoering" - -#~ msgid "Force run" -#~ msgstr "Geforceerde uitvoering" - -#~ msgid "Path" -#~ msgstr "Pad" - -#~ msgid "First execution" -#~ msgstr "Eerste uitvoering" - -#~ msgid "Translate string" -#~ msgstr "Vertalen string" - -#~ msgid "CSV import" -#~ msgstr "CSV import" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Gemaakt agent %s" - -#~ msgid "File processed" -#~ msgstr "Bestand verwerkt" - -#~ msgid "CSV format" -#~ msgstr "CSV indeling" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "" -#~ "Het CSV bestand moet de volgende velden in de volgende volgorde hebben" - -#~ msgid "Separator" -#~ msgstr "Scheidingsteken" - -#~ msgid "Upload CSV file" -#~ msgstr "Upload CSV bestand" - -#~ msgid "Wizard SLA" -#~ msgstr "Wizard SLA" - -#~ msgid "Global" -#~ msgstr "Globaal" - -#~ msgid "Advance options" -#~ msgstr "Geavanceerde opties" - -#~ msgid "Templates list" -#~ msgstr "Sjablonen lijst" - -#~ msgid "Templates Wizard" -#~ msgstr "Sjablonen Wizard" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Grafiek agents(%s) - %s" - -#~ msgid "Template editor" -#~ msgstr "Sjablonen editor" - -#~ msgid "Get PDF file" -#~ msgstr "Haal PDF bestand op" - -#~ msgid "Generated" -#~ msgstr "Gegenereerde" - -#~ msgid "Simple Graph" -#~ msgstr "Simpele Grafiek" - -#~ msgid "% Limit" -#~ msgstr "% Limiet" - -#~ msgid "Report type" -#~ msgstr "Verslag type" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "% Wrong" -#~ msgstr "% Verkeerd" - -#~ msgid "MAX Value" -#~ msgstr "MAX Waarde" - -#~ msgid "MIN Value" -#~ msgstr "MIN Waarde" - -#~ msgid "Uknown agents" -#~ msgstr "Onbekende agenten" - -#~ msgid "Last 8 hours events" -#~ msgstr "Gebeurtenissen van de laatste 8 uur" - -#~ msgid "Modules under" -#~ msgstr "Modules minder dan" - -#~ msgid "Modules at normal status" -#~ msgstr "Modules op normale status" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Modules op kritieke of waarschuwende status" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "Er zijn geen Modules meer dan of gelijk aan %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "Er zijn geen Modules onder %s" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "Er zijn geen Modules op normale status" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "Er zijn geen Modules onder die voorwaarden" - -#~ msgid "Serialized data " -#~ msgstr "Geserialiseerde dats " - -#~ msgid "There are no data." -#~ msgstr "Er is geen data." - -#~ msgid "Crit:" -#~ msgstr "Krit:" - -#~ msgid "Warn:" -#~ msgstr "Waarsch:" - -#~ msgid "Ok:" -#~ msgstr "Ok:" - -#~ msgid "Value:" -#~ msgstr "Waarde:" - -#~ msgid "Add fictional point" -#~ msgstr "Toevoegen fictioneel punt" - -#~ msgid "Shape" -#~ msgstr "Vorm" - -#~ msgid "Radius" -#~ msgstr "Radius" - -#~ msgid "Color" -#~ msgstr "Kleur" - -#~ msgid "Network map linked" -#~ msgstr "Netwerk kaart gekoppeld" - -#~ msgid "Circle" -#~ msgstr "Cirkel" - -#~ msgid "Square" -#~ msgstr "Vierkant" - -#~ msgid "Rhombus" -#~ msgstr "Rhombus" - -#~ msgid "Open Minimap" -#~ msgstr "Open Minimap" - -#~ msgid "Show modules:" -#~ msgstr "Toon modules:" - -#~ msgid "Copy of " -#~ msgstr "Kopie van " - -#~ msgid "Module alert" -#~ msgstr "Module alarm" - -#~ msgid "Empty configuration" -#~ msgstr "Lege configuratie" - -#~ msgid "Empty OS" -#~ msgstr "Lege OS" - -#~ msgid "Lines" -#~ msgstr "Regels" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsole" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "" -#~ "Geautomatiseerd Pandora FMS verslag voor gebruiker gedefinieerd verslag" - -#~ msgid "There are no agents with modules." -#~ msgstr "Er zijn geen agenten met modules." - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "Er zijn geen Agent/Modules gedefinieerd." - -#~ msgid "Exception - Equal to" -#~ msgstr "Uitzondering - Gelijk aan" - -#~ msgid "There are no alerts for this module." -#~ msgstr "Er zijn geen alarmen voor deze module." - -#~ msgid "Modules detailed event" -#~ msgstr "Modules gedetailleerd gebeurtenis" - -#~ msgid "There are no events for this module." -#~ msgstr "Er zijn geen gebeurtenissen voor deze module." - -#~ msgid "There are no events in group." -#~ msgstr "Er zijn geen gebeurtenissen in groep." - -#~ msgid "There are no Events." -#~ msgstr "Er zijn geen Gebeurtenissen." - -#~ msgid "Agent:" -#~ msgstr "Agent:" - -#~ msgid "Module:" -#~ msgstr "Module:" - -#~ msgid "Generated: " -#~ msgstr "Gegenereerd: " - -#~ msgid "Report date: " -#~ msgstr "Verslag datum: " - -#~ msgid "CONTENTS" -#~ msgstr "INHOUD" - -#~ msgid "Untitled" -#~ msgstr "Naamloos" - -#~ msgid "Period: " -#~ msgstr "Periode: " - -#~ msgid "There are no modules." -#~ msgstr "Er zijn geen modules." - -#~ msgid "No description" -#~ msgstr "Geen omschrijving" - -#~ msgid "Restoring a backup" -#~ msgstr "Herstellen van een backup" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Het herstellen van een Pandora database backup moet handmatig gedaan worden" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "Het is een ingewikkelde bewerking die menselijke bemiddelijk nodig heeft om " -#~ "systeem fouten en data verlies te voorkomen." - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "" -#~ "Om de geselecteerde backup te herstellen, volg alstublief deze stappen" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Open een root shell in uw systeem dat is gelegen op " - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "" -#~ "Verbind met MySQL database door gebruik te maken van de volgende opdracht" - -#~ msgid "Create a new database" -#~ msgstr "Maak een nieuwe database" - -#~ msgid "Restore the backup" -#~ msgstr "Herstel de backup" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "Bewerk console configuratie om deze nieuwe database te gebruiken" - -#~ msgid "Open configuration file" -#~ msgstr "Open configuratie bestand" - -#~ msgid "Find" -#~ msgstr "Zoeken" - -#~ msgid "and replace with" -#~ msgstr "en vervang met" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "Bewerk servers configuratie om deze nieuwe database te gebruiken" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "Vind servers configuratie bestand en vervang de volgende regels" - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Herstart de servers en log opnieuw in in de console" - -#~ msgid "Run import command using the following command" -#~ msgstr "" -#~ "Uitvoeren import opdracht door gebruik te maken van de volgende opdracht" - -#~ msgid "Into your destination database." -#~ msgstr "In uw doel database." - -#~ msgid "Log collector" -#~ msgstr "Log verzamelaar" - -#~ msgid "Database credentials not found" -#~ msgstr "Database verificatiegegevens niet gevonden" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Fout verbinden met de opgegeven host" - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Verbonden met de host, maar deze kan de opgegeven database niet vinden" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "\"Vertalen string\" extensie is missende in de server. Deze extensie is " -#~ "verplicht om te worden geconfigureerd op metaconsole." - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Server naam komt niet overeen. Controleer de node server naam en configureer " -#~ "de zelfde op metasetup" - -#~ msgid "Last event replication" -#~ msgstr "Laatste gebeurtenis replicatie" - -#~ msgid "Tree view by tags" -#~ msgstr "Structuurweergave door labels" - -#~ msgid "No changes found" -#~ msgstr "Er zijn geen veranderingen" - -#~ msgid "Get CSV file" -#~ msgstr "Verkrijgen CSV bestand" - -#~ msgid "Service does not exist." -#~ msgstr "Service bestaat niet." - -#~ msgid "Module store the service does not exist." -#~ msgstr "Module archief de service bestaat niet." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Module archief SLA service bestaat niet." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Agent archief de service bestaat niet." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Agent archief SLA service bestaat niet." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Alarm kritiek SLA service bestaat niet." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Alarm waarschuwing service bestaat niet." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Alarm kritiek service bestaat niet." - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Alarm onbekend service bestaat niet." - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Module automatisch maken voor de service %s" - -#~ msgid "Critical (Alert)" -#~ msgstr "Kritiek (Alarm)" - -#~ msgid "Unknow" -#~ msgstr "Onbekend" - -#~ msgid "There are no service elements defined" -#~ msgstr "Er zijn geen dienst elementen gedefinieerd" - -#~ msgid "Weight Critical" -#~ msgstr "Gewicht Kritiek" - -#~ msgid "Weight Warning" -#~ msgstr "Gewicht Waarschuwing" - -#~ msgid "Weight Unknown" -#~ msgstr "Gewicht Onbekend" - -#~ msgid "Weight Ok" -#~ msgstr "Gewicht OK" - -#~ msgid "Delete service element" -#~ msgstr "Verwijderen dienst element" - -#~ msgid "FAIL" -#~ msgstr "GEFAALD" - -#~ msgid "Policy linkation" -#~ msgstr "Beleid koppelen" - -#~ msgid "Module linked" -#~ msgstr "Module gekoppeld" - -#~ msgid "Unlink from policy" -#~ msgstr "Onkoppel van beleid" - -#~ msgid "Module unlinked" -#~ msgstr "Module ontkoppeld" - -#~ msgid "Relink to policy" -#~ msgstr "Herkoppelen aan beleid" - -#~ msgid "Module pending to link" -#~ msgstr "Module in behandeling om te koppelen" - -#~ msgid "Module pending to unlink" -#~ msgstr "Module in behandeling om te ontkoppelen" - -#~ msgid "Create a new policy map" -#~ msgstr "Maak een nieuwe beleidskaart" - -#~ msgid "You must change password" -#~ msgstr "U moet uw wachtwoord veranderen" - -#~ msgid "NEW PASS: " -#~ msgstr "NIEUW PAS: " - -#~ msgid "CONFIRM: " -#~ msgstr "BEVESTIGEN: " - -#~ msgid "Change" -#~ msgstr "Veranderen" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "Gebruiker is geblokkeerd. Probeer opnieuw in " - -#~ msgid " minutes" -#~ msgstr " minuten" - -#~ msgid "Password must be different from the " -#~ msgstr "Wachtwoord moet anders zijn dan de " - -#~ msgid " previous changes." -#~ msgstr " vorige veranderingen." - -#~ msgid "Password must be different" -#~ msgstr "Wachtwoord moet anders zijn" - -#~ msgid "Password too short" -#~ msgstr "Wachtwoord te kort" - -#~ msgid "Password must contain numbers" -#~ msgstr "Wachtwoord moet nummers bevatten" - -#~ msgid "Password must contain symbols" -#~ msgstr "Wachtwoord moet symbolen bevatten" - -#~ msgid "User pass successfully updated" -#~ msgstr "Gebruikerspas succesvol bijgewerkt" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Fout bijwerken gebruikerspas (geen verandering?)" - -#~ msgid "Password confirm does not match" -#~ msgstr "Wachtwoord bevestiging komt niet overeen" - -#~ msgid "Password empty" -#~ msgstr "Wachtwoord leeg" diff --git a/pandora_console/include/languages/pl.mo b/pandora_console/include/languages/pl.mo index 341c41254db436b507ebc2e81c3d3a430690b424..2e8ea22c4a2e6b3a05b40ebd5ba30b44743abe0a 100644 GIT binary patch delta 10149 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 delta 10123 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 y$Dm\n" +"PO-Revision-Date: 2015-06-29 18:49+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: pl\n" #: ../../godmode/groups/configure_group.php:68 @@ -20288,1288 +20288,3 @@ msgstr "" #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "" - -#~ msgid "Logged Out" -#~ msgstr "Wylogowano" - -#~ msgid "Autorefresh" -#~ msgstr "Autoodświeżanie" - -#~ msgid "General information" -#~ msgstr "Informacje ogólne" - -#~ msgid "Authentication Error" -#~ msgstr "Błąd uwierzytelniania" - -#~ msgid "Map builder" -#~ msgstr "Kreator map" - -#~ msgid "preview" -#~ msgstr "podgląd" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Przeciągnij tutaj element aby edytować jego właściwości" - -#~ msgid "Map element editor" -#~ msgstr "Edytor elementów mapy" - -#~ msgid "Last Month" -#~ msgstr "Ostatni miesiąc" - -#~ msgid "Two Months" -#~ msgstr "Dwa miesiące" - -#~ msgid "Six Months" -#~ msgstr "Sześć miesięcy" - -#~ msgid "Label color" -#~ msgstr "Kolor etykiety" - -#~ msgid "Render now" -#~ msgstr "Renderuj" - -#~ msgid "Factor" -#~ msgstr "Współczynnik" - -#~ msgid "Store" -#~ msgstr "Zapisz" - -#~ msgid "Add item to report" -#~ msgstr "Dodaj element do raportu" - -#~ msgid "Reporting type" -#~ msgstr "Typ raportu" - -#~ msgid "Up" -#~ msgstr "W górę" - -#~ msgid "Data Server" -#~ msgstr "Serwer danych" - -#~ msgid "Master" -#~ msgstr "Element główny" - -#~ msgid "Network profile" -#~ msgstr "Profil sieciowy" - -#~ msgid "week" -#~ msgstr "tydzień" - -#~ msgid "day" -#~ msgstr "dzień" - -#~ msgid "month" -#~ msgstr "miesiąc" - -#~ msgid "Manage modules" -#~ msgstr "Zarządzanie modułami" - -#~ msgid "Report builder" -#~ msgstr "Kreator raportów" - -#~ msgid "General configuration" -#~ msgstr "Konfiguracja ogólna" - -#~ msgid "Link successfully created" -#~ msgstr "Łącze utworzone pomyślnie" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profil usunięty pomyślnie" - -#~ msgid "Profile successfully created" -#~ msgstr "Profil utworzony pomyślnie" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profil zaktualizowany pomyślnie" - -#~ msgid "Manage Database" -#~ msgstr "Zarządzaj bazą danych" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Powiadomienie usinięte pomyślnie" - -#~ msgid "Alert successfully created" -#~ msgstr "Powiedomienie utworzone pomyślnie" - -#~ msgid "There was a problem updating module" -#~ msgstr "Wystąpił problem podczas aktualizacji modułu" - -#~ msgid "Module deleted successfully" -#~ msgstr "Moduł usunięty pomyślnie" - -#~ msgid "There was a problem adding module" -#~ msgstr "Wystąpił problem podczas dodawania modułu" - -#~ msgid "Assigned modules" -#~ msgstr "Przypisane moduły" - -#~ msgid "Available templates" -#~ msgstr "Dostępne szablony" - -#~ msgid "Modules successfully added " -#~ msgstr "Moduły dodane pomyślnie " - -#~ msgid "Configuration Management" -#~ msgstr "Zarządzanie konfiguracją" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Przeciągnij tutaj element aby usunąć go z mapy" - -#~ msgid "Module is not set" -#~ msgstr "Moduł nie jest ustawiony" - -#~ msgid "Link successfully updated" -#~ msgstr "Łącze zaktualizowane pomyślnie" - -#~ msgid "Link successfully deleted" -#~ msgstr "Łącze usunięte pomyślnie" - -#~ msgid "TCP port" -#~ msgstr "Port TCP" - -#~ msgid "Plugin Server" -#~ msgstr "Serwer wtyczek" - -#~ msgid "Alert type" -#~ msgstr "Typ powiadomienia" - -#~ msgid "User successfully deleted" -#~ msgstr "Użtrkownik usunięty pomyślnie" - -#~ msgid "Standard user" -#~ msgstr "Użytkownik standardowy" - -#~ msgid "Database Information" -#~ msgstr "Informacja o bazie danych" - -#~ msgid "Total data" -#~ msgstr "Wszystkie dane" - -#~ msgid "Alert successfully updated" -#~ msgstr "Powiadomienie zaktualizowane pomyślnie" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Nie masz wystarczających uprawnień aby mieć dostęp do tych zasobów" - -#~ msgid "You don't have access" -#~ msgstr "Nie masz dostępu" - -#~ msgid "Wrong module type" -#~ msgstr "Błędny typ modułu" - -#~ msgid "Network Map" -#~ msgstr "Mapa Sieci" - -#~ msgid "Validated event" -#~ msgstr "Zatwierdzone zdarzenie" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Przełącz między Zielonym / Czerwomym stanem" - -#~ msgid "Raw Data" -#~ msgstr "Surowe dane" - -#~ msgid "Thurdsday" -#~ msgstr "Czwartek" - -#~ msgid "Database export results" -#~ msgstr "Rezultaty ekspotru bazy danych" - -#~ msgid "from" -#~ msgstr "z" - -#~ msgid "No module has been selected" -#~ msgstr "Nie wybrano żadnego modułu" - -#~ msgid "Download file" -#~ msgstr "Pobierz plik" - -#~ msgid " from " -#~ msgstr " z " - -#~ msgid " to " -#~ msgstr " do " - -#~ msgid "Event graph by group" -#~ msgstr "Wykres zdarzeń według grupy" - -#~ msgid "User activity statistics" -#~ msgstr "Statystyki aktywności użytkowników" - -#~ msgid "Pandora users" -#~ msgstr "Użytkownicy Pandory" - -#~ msgid "Full list of Monitors" -#~ msgstr "Pełna lista monitorów" - -#~ msgid "Agents detailed view" -#~ msgstr "Szczegółowy widok agentów" - -#~ msgid "SLA view" -#~ msgstr "Widok SLA" - -#~ msgid "At least one monitor fails" -#~ msgstr "Conajmniej jeden monitor zawiódł" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent bez monitorów" - -#~ msgid "There are no agents included in this group" -#~ msgstr "W tej grupie nie ma żadnych agentów" - -#~ msgid "Pandora Agents" -#~ msgstr "Agenci Pandory" - -#~ msgid "Agent general information" -#~ msgstr "Ogólne informacje o agencie" - -#~ msgid "Events generated -by module-" -#~ msgstr "Zdarzenia wygenerowane -przez moduł-" - -#~ msgid "Data from agent " -#~ msgstr "Dane od agenta " - -#~ msgid "Update agent" -#~ msgstr "Aktualizuj agenta" - -#~ msgid "Delete agents" -#~ msgstr "Usuń agentów" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Ten agent nie ma żadnych modułów" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Wystąpił problem podczas aktualizacji agenta" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent zaktualizowany pomyślnie" - -#~ msgid "Packets per agent" -#~ msgstr "Pakiety wg agenta" - -#~ msgid "Modules per agent" -#~ msgstr "Moduły wg agenta" - -#~ msgid "Agents in group" -#~ msgstr "Agenci w grupie" - -#~ msgid "Module assignment" -#~ msgstr "Przydzielanie modułów" - -#~ msgid "To Agent(s):" -#~ msgstr "Do Agenta(ów)" - -#~ msgid "Source group" -#~ msgstr "Grupa źródłowa" - -#~ msgid "Times Fired" -#~ msgstr "Ilość odpaleń" - -#~ msgid "Monitor up" -#~ msgstr "Monitor wł." - -#~ msgid "Monitor down" -#~ msgstr "Monitor wył." - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatyczne SLA dla monitorów" - -#~ msgid "Update layout successful" -#~ msgstr "Aktualizacja układu pomyślna" - -#~ msgid "Update layout failed" -#~ msgstr "Aktualizacja układu niepomyślna" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA utworzona pomyślnie" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Wystąpił problem podczas tworzenia SLA" - -#~ msgid "SLAs defined" -#~ msgstr "Zdefiniowane SLA" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Wystąpił problem podczas usuwania SLA" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA usunięte pomyślnie" - -#~ msgid "SLA report construction" -#~ msgstr "Konstrukcja raportu SLA" - -#~ msgid "MD5 Check" -#~ msgstr "Sprawdzenie MD5" - -#~ msgid "User option" -#~ msgstr "Opcja użytkownika" - -#~ msgid "Password option" -#~ msgstr "Opcja hasła" - -#~ msgid "Duplicate config" -#~ msgstr "Duplikuj config" - -#~ msgid "IP address option" -#~ msgstr "Opcja adresu IP" - -#~ msgid "Port option" -#~ msgstr "Opcja portu" - -#~ msgid "Only pending" -#~ msgstr "Tylko niezatwierdzone" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "System pomocy Pandory FMS" - -#~ msgid "Older" -#~ msgstr "Starsze" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Konsola sieciowa Pandory FMS" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Jest nowa aktualizacja dla Pandory" - -#~ msgid "Server authorization rejected" -#~ msgstr "Autoryzacja serwera odrzucona" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Overwrite local changes" -#~ msgstr "Nadpisz lokalne zmiany" - -#~ msgid "Settings" -#~ msgstr "Ustawienia" - -#~ msgid "More info" -#~ msgstr "Więcej informacji" - -#~ msgid "Update server port" -#~ msgstr "Aktualizuj port serwera" - -#~ msgid "Update server path" -#~ msgstr "Aktualizuj ścieżkę serwera" - -#~ msgid "Testing" -#~ msgstr "Testowanie" - -#~ msgid "3 hours" -#~ msgstr "3 godziny" - -#~ msgid "4 days" -#~ msgstr "4 dni" - -#~ msgid "hour" -#~ msgstr "godzina" - -#~ msgid "Manage Agents" -#~ msgstr "Zarządzaj Agentami" - -#~ msgid "Read Agent Information" -#~ msgstr "Czytaj Informacje Agenta" - -#~ msgid "Manage Incidents" -#~ msgstr "Zarządzaj Incydentami" - -#~ msgid "Create Incidents" -#~ msgstr "Twórz Incydenty" - -#~ msgid "Read Incidents" -#~ msgstr "Czytaj Incydenty" - -#~ msgid "Manage User Rights" -#~ msgstr "Zarządzaj Prawami Użytkowników" - -#~ msgid "Edit Alerts" -#~ msgstr "Edytuj Powiadomienia" - -#~ msgid "Pandora System Management" -#~ msgstr "Zarządzanie Systemem Pandory" - -#~ msgid "Database Management" -#~ msgstr "Zarządzanie Bazą Danych" - -#~ msgid "Alerts Management" -#~ msgstr "Zarządzanie Powiadomieniami" - -#~ msgid "Available Agents" -#~ msgstr "Dostępni Agenci" - -#~ msgid "Minimum Data" -#~ msgstr "Minimalne Dane" - -#~ msgid "Maximum Data" -#~ msgstr "Maksymalne Dane" - -#~ msgid "Database Maintenance" -#~ msgstr "Konserwacja Bazy Danych" - -#~ msgid "Data older than" -#~ msgstr "Dane starsze niż" - -#~ msgid "Event Database cleanup" -#~ msgstr "Czyszczenie Bazy Danych Zdarzeń" - -#~ msgid "Sumatory" -#~ msgstr "Podsumowanie" - -#~ msgid "Event report" -#~ msgstr "Raport zdarzenia" - -#~ msgid "Alert report" -#~ msgstr "Raport powiadomienia" - -#~ msgid "Agent down" -#~ msgstr "Agent nieaktywny" - -#~ msgid "Total Agents" -#~ msgstr "Wszystkich agentów" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Wystąpił problem podczas wczytywania powiadomienia" - -#~ msgid "SNMP server" -#~ msgstr "Serwer SNMP" - -#~ msgid "Seconds" -#~ msgstr "Sekund" - -#~ msgid "Alerts Fired" -#~ msgstr "Powiadomienia odpalona" - -#~ msgid "Your IP" -#~ msgstr "Twój Adres IP" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Sieciowy System Zarządzania dla Pandory FMS. Stąd można zarządzać jej " -#~ "agentami, powiadomieniami i incydentami. Sesja jest otwarta podczas aktywnej " -#~ "pracy." - -#~ msgid "Monitors normal" -#~ msgstr "Monitorów pracuje normalnie" - -#~ msgid "Monitors critical" -#~ msgstr "Monitorów w stanie Krytycznym" - -#~ msgid "Monitors warning" -#~ msgstr "Monitorów Ostrzega" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitorów poza kontrolą" - -#~ msgid "Alerts defined" -#~ msgstr "Zdefiniowanych Alarmów" - -#~ msgid "You are" -#~ msgstr "Jesteś" - -#~ msgid "Users defined" -#~ msgstr "Określonych przez użytkownika" - -#~ msgid "minute" -#~ msgstr "minuta" - -#~ msgid "Your system is up-to-date" -#~ msgstr "System jest w pełni zaktualizowany" - -#~ msgid "Server connection failed" -#~ msgstr "Nieudana próba połączenia z serwerem" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Generator kluczy nie jest plikiem wykonywalnym" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Znaleziono Nowe Aktualizacje dla Pandora FMS" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Nowy Manager " -#~ "Aktualizacji załączono w zestawie Pandora FMS 2.0. Pomaga on " -#~ "administratorom automatycznie aktualizować system Pandora FMS, ponieważ " -#~ "Manedżer Aktualizacji wykonuje zadanie pobierania nowych modułów, wtyczek i " -#~ "nowych funkcjonalnośći (nawet pełne migracje narzędzi do przyszłych wersji) " -#~ "automatycznie." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Menedżer Aktualizacji jest jednym z najbardziej zaawansowanych składników " -#~ "Pandora FMS 2.0 w wersji Enterprise. Aby uzyskać więcej informacji odwiedź " -#~ "stronę http://pandorafms.com." - -#~ msgid "Your system version number is" -#~ msgstr "Wersja twojego systemu to" - -#~ msgid "Update server host" -#~ msgstr "Serwer Aktualizacji" - -#~ msgid "Binary input path" -#~ msgstr "Ścieżka wejściowa binariów" - -#~ msgid "Keygen path" -#~ msgstr "Ścieżka generatora kluczy" - -#~ msgid "No layout with this id found" -#~ msgstr "Brak planu o takim Id" - -#~ msgid "Code / binary directory" -#~ msgstr "Katalog dla Kodu / Binariów" - -#~ msgid "Visual map wizard" -#~ msgstr "Kreator map" - -#~ msgid "Image range (px)" -#~ msgstr "Zakres obrazka" - -#~ msgid "Image size (px)" -#~ msgstr "Rozmiar obrazka (piksele)" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Brak generatora kluczy" - -#~ msgid "Development" -#~ msgstr "Programowanie i rozwój" - -#~ msgid "Map element trash" -#~ msgstr "Kosz na elementy mapy" - -#~ msgid "Graph builder module list" -#~ msgstr "Lista modułów kreatora wykresów" - -#~ msgid "Combined image render" -#~ msgstr "Rysunek złożony" - -#~ msgid "Redraw" -#~ msgstr "Przerysuj" - -#~ msgid "Custom graph store" -#~ msgstr "Zapisz dowolny wykres" - -#~ msgid "Reporting successfully created" -#~ msgstr "Raport utworzono" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Zaistniał problem podczas tworzenia raportu" - -#~ msgid "Custom reporting builder" -#~ msgstr "Kreator raportów dowolnych" - -#~ msgid "Custom graph name" -#~ msgstr "Nazwa tworzonego wykresu" - -#~ msgid "Error creating export target" -#~ msgstr "Błąd podczas tworzenia obiektu eksportu" - -#~ msgid "Successfully created export target" -#~ msgstr "Stworzono obiekt eksportu" - -#~ msgid "Error updating export target" -#~ msgstr "Błąd podczas aktualizacji obiektu eksportu" - -#~ msgid "Successfully updated export target" -#~ msgstr "Udało się zaktualizować obiekt eksportu" - -#~ msgid "Error deleting export target" -#~ msgstr "Błąd podczas usuwania obiektu eksportu" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Usunięto obiekt eksportu" - -#~ msgid "There are no export targets configured" -#~ msgstr "Nie skonfigurowano żadnych obiektów do eksportu" - -#~ msgid "Preffix" -#~ msgstr "Prefiks" - -#~ msgid "Export targets" -#~ msgstr "Obiekty eksportowane" - -#~ msgid "Transfer mode" -#~ msgstr "Tryb transferu" - -#~ msgid "MD5 check" -#~ msgstr "Kontrola MD5" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d godzina" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d godzin" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d tydzień" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d dzień" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dni" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d miesiąc" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d tygodni" - -#~ msgid "Extra options" -#~ msgstr "Opcje dodatkowe" - -#~ msgid "Target directory" -#~ msgstr "Katalog Docelowy" - -#~ msgid "Group management" -#~ msgstr "Zarządzanie grupą" - -#~ msgid "Correlation" -#~ msgstr "Korelacja" - -#~ msgid "Custom Value" -#~ msgstr "Własna wartość" - -#~ msgid "Alert trigger" -#~ msgstr "Wyzwalacz Powiadomienia" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Pole #1 (Alias, nazwa)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Pole #3 (Pełnotekstowe)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Pole #2 (Pojedyńcza linia)" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Okres SLA (sekundy)" - -#~ msgid "Automatic update check" -#~ msgstr "Automatycznie szukanie aktualizacji" - -#~ msgid "Deleting file" -#~ msgstr "Usuwanie pliku" - -#~ msgid "attach_error" -#~ msgstr "błąd dołączania" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Pakuj CSS i JS w nagłówku" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Aktualny katalog nie jest zapisywalny przez serwer HTTP" - -#~ msgid "Deleting" -#~ msgstr "Usuwanie" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Utworzoni katalog %s" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Proszę sprawdzić, czy nadano prawa zapisu dla serwera HTTP w aktualnym " -#~ "katalogu" - -#~ msgid "Upload file" -#~ msgstr "Prześlij plik" - -#~ msgid "Visual configuration" -#~ msgstr "Konfiguracja wizualna" - -#~ msgid "Pandora Setup" -#~ msgstr "Ustawienia Pandory" - -#~ msgid "Flash charts" -#~ msgstr "Wykresy w technologii Flash" - -#~ msgid "Read agent information" -#~ msgstr "Wczytaj infrmacje agenta" - -#~ msgid "Create incidents" -#~ msgstr "Twórz Incydenty" - -#~ msgid "Read incidents" -#~ msgstr "Wczytaj incydenty" - -#~ msgid "Manage user rights" -#~ msgstr "Zarządzaj prawami użytkownika" - -#~ msgid "Pandora system management" -#~ msgstr "Zarządzanie systemem Pandora" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Monitor podtrzymania agenta" - -#~ msgid "Error adding module" -#~ msgstr "Błąd podczas dodawania modułu" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Tworzenie kopii pliku konfiguracji dla" - -#~ msgid "Data Copy" -#~ msgstr "Kopia Danych" - -#~ msgid "No selected agents to copy" -#~ msgstr "Nie zaznaczono żadnego agenta do kopiowania" - -#~ msgid "Replicate configuration" -#~ msgstr "Replikacja konfiguracji" - -#~ msgid "Remote configuration management" -#~ msgstr "Zdalne zarządzanie konfiguracją" - -#~ msgid "To agent(s):" -#~ msgstr "Do agent(ów):" - -#~ msgid "Timestamp to" -#~ msgstr "Czas zakończenia" - -#~ msgid "Timestamp from" -#~ msgstr "Czas rozpoczęcia" - -#~ msgid "Delete modules" -#~ msgstr "Usuwanie modułów" - -#~ msgid "Edit modules" -#~ msgstr "Edycja modułów" - -#~ msgid "Delete alerts" -#~ msgstr "Usuwanie powiadomień" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "" -#~ "Wystąpił problem podczas usuwania tego agenta, operacja została anulowana" - -#~ msgid "Massive agent deletion" -#~ msgstr "Masowe usuwanie agentów" - -#~ msgid "Could not delete agent" -#~ msgstr "Nie można usunąć agenta" - -#~ msgid "Could not delete alerts" -#~ msgstr "Nie można usunąć powiadomień" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "" -#~ "Wystąpił problem podczas usuwania powiadomień, operacja została anulowana" - -#~ msgid "Configuration management" -#~ msgstr "Zarządzanie konfiguracją" - -#~ msgid "Could not delete modules" -#~ msgstr "Nie można usunąć modułów" - -#~ msgid "Module component management" -#~ msgstr "Zarządzanie składnikami modułu" - -#~ msgid "N/A\t" -#~ msgstr "N/D\t" - -#~ msgid "Module Interval" -#~ msgstr "Interwał modułu" - -#~ msgid "WMI component management" -#~ msgstr "Zarządzanie składnikiem WMI" - -#~ msgid "Network component" -#~ msgstr "Składnik sieciowy" - -#~ msgid "Last name" -#~ msgstr "Nazwisko" - -#~ msgid "First name" -#~ msgstr "Imię" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Ten użytkownik ma uprawnienia do zarządzania całością systemu. Jest to " -#~ "administrator i ma nadrzędne wszystkie uprawnienia w profilach/grupach." - -#~ msgid "Group name" -#~ msgstr "Nazwa grupy" - -#~ msgid "Deleting non-init data" -#~ msgstr "Usuwanie niezainicjalizowanych danych" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Kliknij tutaj aby otrzymać informacje o bazie danych w formie tekstu" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "" -#~ "Kliknij tutaj aby otrzymać informacje o bazie danych w formie wykresu" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Sprawdzanie tablicy tagente_estado" - -#~ msgid "Checking database consistency" -#~ msgstr "Sprawdzanie zawartości bazy danych" - -#~ msgid "Database sanity tool" -#~ msgstr "Narzędzia Sanatorium bazy danych" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Narzędzia Sanatorium Pandora FMS jest używane do usuwania niepoprawnych " -#~ "struktur danych z bazy, modułów dla których brak statusu oraz modułów, dla " -#~ "których brak statusu (lub nie raportują poprawnie danych), ale ponawiają " -#~ "próby przesyłania danych, każda z własnym interwałem. Takie niepoprawne " -#~ "moduły mogą znacząco obniżyć wydajność systemu Pandora FMS. Narzędzie " -#~ "Sanatorium Bazy Danych jest również zaimplementowane w skrypcie " -#~ "pandora_db.pl, który powinien być codziennie uruchamiany. Narzędzie " -#~ "to NIE KOMPAKTUJE bazy danych, tylko usuwa niepoprawne struktury danych." - -#~ msgid "Purge task launched for agent" -#~ msgstr "Przeczyść zadania odpalone dla agenta" - -#~ msgid "Deleting records for module" -#~ msgstr "Usuwanie rekordów modułu." - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Usuń niezainicjalizowane moduły - natychmiastowo" - -#~ msgid "Sanitize my database now" -#~ msgstr "Baza do sanatorium - natychmiastowo" - -#~ msgid "Field 1" -#~ msgstr "Pole 1" - -#~ msgid "Field 2" -#~ msgstr "Pole 2" - -#~ msgid "Field 3" -#~ msgstr "Pole 3" - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, dla warunku różnego od " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, dla warunku nie pasującego do wartości " -#~ "" - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, dla warunku równego " - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, gdy warunek jest mniejszy od " - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, gdy warunek jest powyżej wartości " - -#~ msgid "Correlated alerts" -#~ msgstr "Powiadomienia powiązane" - -#~ msgid "Assigned actions" -#~ msgstr "Przypisane działania" - -#~ msgid "matches of the alert" -#~ msgstr "dopasowania do powiadomienia" - -#~ msgid "Configure correlated alert" -#~ msgstr "Konfiguruj powiadomienie powiązane" - -#~ msgid "No agent was given" -#~ msgstr "Nie podano agenta" - -#~ msgid "No name was given" -#~ msgstr "Nie podano nazwy" - -#~ msgid "Add condition" -#~ msgstr "Dodaj warunek" - -#~ msgid "Operator" -#~ msgstr "Operator" - -#~ msgid "Assigned to" -#~ msgstr "Przypisano do" - -#~ msgid "No conditions were given" -#~ msgstr "Nie podano warunków" - -#~ msgid "Unmanaged error" -#~ msgstr "Nieobsługiwany błąd" - -#~ msgid "General group report" -#~ msgstr "Raport grupy głównej" - -#~ msgid "Agent detailed event" -#~ msgstr "Szczegóły powiadomień agentów" - -#~ msgid "Software agent data" -#~ msgstr "Dane agenta oprogramowania" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitor agenta oprogramowania" - -#~ msgid "Network agent data" -#~ msgstr "Dane agenta sieciowego" - -#~ msgid "Network agent monitor" -#~ msgstr "Minitor agenta sieciowego" - -#~ msgid "Desc" -#~ msgstr "Malejąco" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMaks.Wsz" - -#~ msgid "Last hour" -#~ msgstr "Ostatnia godzina" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Ostatnie %s dni" - -#~ msgid "Info" -#~ msgstr "Informacje" - -#~ msgid "Agents detailed event" -#~ msgstr "Zdarzenia agenta - szczegółowo" - -#~ msgid "Global health" -#~ msgstr "Działanie ogółem" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Nie przypisano żadnych zadań zwiadu dla tego serwera" - -#~ msgid "Configuration detail" -#~ msgstr "Szczegóły konfiguracji" - -#~ msgid "Load" -#~ msgstr "Wczytaj" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Modułów opóźnionych / Maks. Opóźnienie (sek.)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "" -#~ "Modułów uruchomionych na tym serwerze / Ilość wszystkich modułów tego typu" - -#~ msgid "No layouts found" -#~ msgstr "Nie znaleziono planów rozkładu" - -#~ msgid "Search value" -#~ msgstr "Wartość poszukiwana" - -#~ msgid "Pandora agents" -#~ msgstr "Agenci Pandory" - -#~ msgid "Flag" -#~ msgstr "Flaga" - -#~ msgid "Modules normal" -#~ msgstr "Modułów w stanie normalnym" - -#~ msgid "Modules critical" -#~ msgstr "Modułów w stanie krytycznym" - -#~ msgid "Modules warning" -#~ msgstr "Modułów w stanie ostrzegawczym" - -#~ msgid "Agents down" -#~ msgstr "Agentów nieaktywnych" - -#~ msgid "Compound alerts" -#~ msgstr "Powiadomienia złożone" - -#~ msgid "int" -#~ msgstr "liczba całkowita" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Pokaż ostatnie partie danych otrzymane przez agenta" - -#~ msgid "No simple alerts found" -#~ msgstr "Nie znaleziono prostych powiadomień" - -#~ msgid "Single alerts" -#~ msgstr "Pojedyńcze powiadomienia" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Ten agent nie posiada żadnych aktywnych monitorów" - -#~ msgid "Invalid method supplied" -#~ msgstr "Wskazano złą metodę" - -#~ msgid "End date (*)" -#~ msgstr "Data końcowa (*)" - -#~ msgid "Begin date (*)" -#~ msgstr "Data początkowa (*)" - -#~ msgid "Alerts disabled" -#~ msgstr "Powiadomień wyłączonych" - -#~ msgid "Module Down" -#~ msgstr "Moduł nie działa" - -#~ msgid "Module Up" -#~ msgstr "Moduł działa" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Brak modułów, wg których można by wyznaczyć SLA" - -#~ msgid "Uninitialized modules" -#~ msgstr "Niezainicjalizowane moduły" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Brak skonfigurowanych serwerów w bazie danych" - -#~ msgid "Monitors not init" -#~ msgstr "Monitorów niezainicjalizowanych" - -#~ msgid "User-defined SLA items" -#~ msgstr "Pozycje SLA zdefiniowane przez użytkownika" - -#~ msgid "System Events" -#~ msgstr "Zdarzenia Systemowe" - -#~ msgid "Go to alert overview" -#~ msgstr "Do przeglądu powiadomień" - -#~ msgid "Create incident from event" -#~ msgstr "Utwórz incydent na podst. zdarzenia" - -#~ msgid "Read message" -#~ msgstr "Przeczytaj wiadomość" - -#~ msgid "-Select group-" -#~ msgstr "-Wybierz Grupę-" - -#~ msgid "-Select user-" -#~ msgstr "-Wybierz Użytkownika-" - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, gdy warunek będzie się zawierał pomiędzy " -#~ "wartościami i " - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, gdy warunek pasuje do wartości " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Powiadomienie zostanie odpalone, gdy warunek nie będzie się zawierał się " -#~ "pomiędzy wartościami i " - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "Lista adresów IP oddzielonych znakiem końca linii (enter)." - -#~ msgid "Graphs management" -#~ msgstr "Zarządzanie wykresami" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Nie zaznaczono agenta, proszę wybrać jakiegokolwiek agenta" - -#~ msgid " seconds." -#~ msgstr " sekund" - -#~ msgid "Event not validate" -#~ msgstr "Niezatwierdzone zdarzenie" - -#~ msgid "Event validate" -#~ msgstr "Zatwierdzone zdarzenie" - -#~ msgid "The colours meaning:" -#~ msgstr "Oznaczenia kolorów:" - -#~ msgid "None agent in this category" -#~ msgstr "Brak agentów w tej kategorii" - -#~ msgid "Local modules rate" -#~ msgstr "Wskaźnik modułów lokalnych" - -#~ msgid "Remote modules rate" -#~ msgstr "Wskaźnik modułów zdalnych" - -#~ msgid "View users" -#~ msgstr "Przegląd użytkowników" - -#~ msgid "Manage SNMP console" -#~ msgstr "Zarządzanie konsolą SNMP" - -#~ msgid "Manage profiles" -#~ msgstr "Zarządzanie profilami" - -#~ msgid "Plugin component" -#~ msgstr "Składnik rozszerzenia" - -#~ msgid "Plugin parameters" -#~ msgstr "Parametry rozszerzenia" - -#~ msgid "Manage plugins" -#~ msgstr "Zarządzanie wtyczkami" - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "To rozszerzenie upraszcza rejestrację nowych wtyczek. Można tu załadować " -#~ "wtyczki dla Pandory 3.x w skompresowanym formacie (.pspz). Aby uzyskać " -#~ "informacje na temat instalacji oraz sposobu uzyskania wtyczek należy " -#~ "przejrzeć dokumentację.

Więcej wtyczek można znaleźć na stronie P" -#~ "ublic Resource Library" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Nowy klientNarzędzia " -#~ "Aktualizacji jest dostarczany wraz z Pandora FMS 3.0. Umożliwia on " -#~ "administratorom systemu automatyczną aktualizację systemu Pandora FMS. " -#~ "Menedżer Aktualizacji automatycznie pobiera nowe moduły, wtyczki oraz nowe " -#~ "funkcje (wykonuje nawet pełne migracje narzędzi pakietu dla przyszłych " -#~ "wersji)." - -#~ msgid "Update manager settings" -#~ msgstr "Ustawienia narzędzia aktualizacji" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Narzędzie aktualizacji to jedna z najbardziej zaawansowanych funkcji Pandora " -#~ "FMS 3.0 w wersji Enterprise. Więcej informacji można znaleźć pod adresem http://pandorafms.com." - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Narzędzie aktualizacji wysyła anonimowe informacje o sposobie użytkowania " -#~ "Pandory FMS (ilość aktywnych agentów i modułów). Aby wyłączyć tą opcję, po " -#~ "prostu usuń to rozszerzenie z systemu lub usuń adres zdalnego serwera z " -#~ "ustawień wtyczek Menedżera Aktualizacji." - -#~ msgid "Update manager settings updated" -#~ msgstr "Konfiguracja narzędzia aktualizacji zaktualizowana" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Zaplanowana przerwa techniczna" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "System ma zaplanowane przerwy techniczne" - -#~ msgid "Select an element to delete:" -#~ msgstr "Wybierz element do usunięcia" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Proszę wybrać obrazek, lub wpisać nazwę elementu" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Wpisz conajmniej 2 znaki, by wyszukać" - -#~ msgid "From the last" -#~ msgstr "Od ostatniego" - -#~ msgid "secs." -#~ msgstr "sek." - -#~ msgid "No news articles at this moment" -#~ msgstr "Aktualnie brak ogłoszeń" - -#~ msgid "Event not validated" -#~ msgstr "Zdarzenie niezatwierdzone" - -#~ msgid "Report name is empty" -#~ msgstr "Nazwa raportu jest pusta" - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Zielona komórka występuje gdy grupa modułów i agent mają wszystkie moduły w " -#~ "OK stanie." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Żółta komórka występuje gdy grupa modułów i agent mają przynajmniej jeden " -#~ "moduł w stanie ostrzegawczym, a pozostałe w stanie zielonym." - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Czerwona komórka występuje gdy grupa modułów i agent mają przynajmniej jeden " -#~ "moduł w stanie krytycznym, a pozostałe w obojętnie jakim stanie." - -#~ msgid "Modules groups" -#~ msgstr "Grupy modułów" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "" -#~ "Szara komórka występuje gdy grupa modułów i agent nie mają żadnych modułów." - -#~ msgid "Decrease Weight" -#~ msgstr "Zmniejsz wagę" - -#~ msgid "Increase Weight" -#~ msgstr "Zwiększ wagę" - -#~ msgid "Group detailed event" -#~ msgstr "Detale zdarzeń grupy" diff --git a/pandora_console/include/languages/pt.mo b/pandora_console/include/languages/pt.mo index a073a330b4d32186f89ade33a4fb43ce56f991f3..0a9fa543b6c6db337b5cebb8a53d7dba15a2d5b6 100644 GIT binary patch delta 26014 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%0DeceBCTPVI5*m_1p0mh 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 Hj!FJM;azSe diff --git a/pandora_console/include/languages/pt.po b/pandora_console/include/languages/pt.po index 420fa67e73..572a50c904 100644 --- a/pandora_console/include/languages/pt.po +++ b/pandora_console/include/languages/pt.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: pandora-pt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2013-05-16 03:00+0000\n" -"Last-Translator: Maria Loureiro \n" +"PO-Revision-Date: 2015-06-29 18:50+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: Portugues \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: \n" #: ../../godmode/groups/configure_group.php:68 @@ -19889,7 +19889,7 @@ msgstr "" #: ../../include/functions_config.php:1406 msgid "files" -msgstr "" +msgstr "ficheiros" #: ../../include/functions_config.php:1407 msgid "Too much files in your tempora/attachment directory" @@ -20324,1325 +20324,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "Ficheiro em falta no disco de armazenamento. Por favor contacte o " "administrador." - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Settings" -#~ msgstr "Definições" - -#~ msgid "Development" -#~ msgstr "Desenvolvimento" - -#~ msgid "preview" -#~ msgstr "antever" - -#~ msgid "Factor" -#~ msgstr "Factor" - -#~ msgid "Store" -#~ msgstr "Armazenar" - -#~ msgid "Up" -#~ msgstr "Acima" - -#~ msgid "Master" -#~ msgstr "Mestre" - -#~ msgid "hour" -#~ msgstr "hora" - -#~ msgid "day" -#~ msgstr "dia" - -#~ msgid "week" -#~ msgstr "semana" - -#~ msgid "month" -#~ msgstr "mês" - -#~ msgid "Manage plugins" -#~ msgstr "Gerir plugins" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Oper" -#~ msgstr "Operador" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Load" -#~ msgstr "Carga" - -#~ msgid "int" -#~ msgstr "int" - -#~ msgid "from" -#~ msgstr "de" - -#~ msgid " from " -#~ msgstr " de " - -#~ msgid " to " -#~ msgstr " para " - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "SNMP server" -#~ msgstr "Servidor SNMP" - -#~ msgid "Seconds" -#~ msgstr "Segundos" - -#~ msgid "Your IP" -#~ msgstr "O seu IP" - -#~ msgid "minute" -#~ msgstr "minuto" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Este é o Sistema de Gestão Online do Pandora FMS. A partir daqui, poderá " -#~ "gerir agentes, alertas e incidentes. A sessão permanecerá aberta enquanto " -#~ "houver actividade" - -#~ msgid "No news articles at this moment" -#~ msgstr "Sem noticias de momento" - -#~ msgid "Monitors critical" -#~ msgstr "Monitores criticos" - -#~ msgid "Monitors normal" -#~ msgstr "Monitores normais" - -#~ msgid "Monitors warning" -#~ msgstr "Aviso de Monitores" - -#~ msgid "Alerts defined" -#~ msgstr "Alertas definidos" - -#~ msgid "Users defined" -#~ msgstr "Utilizadores definidos" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitores desconhecidos" - -#~ msgid "Autorefresh" -#~ msgstr "Actualizar" - -#~ msgid "Global health" -#~ msgstr "Saúde Global" - -#~ msgid "Only pending" -#~ msgstr "Apenas pendentes" - -#~ msgid "You don't have access" -#~ msgstr "Não tem acesso" - -#~ msgid "Remote modules rate" -#~ msgstr "Taxa de módulos remotos" - -#~ msgid "Local modules rate" -#~ msgstr "Taxa de módulos locais" - -#~ msgid "Monitors not init" -#~ msgstr "Monitores não inicializados" - -#~ msgid "Uninitialized modules" -#~ msgstr "Módulos não inicializados" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Não existem agentes incluídos neste grupo" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "D." - -#~ msgid "Go to alert overview" -#~ msgstr "Ir para vista geral de alertas" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Digite pelo menos dois caractéres para procurar" - -#~ msgid " seconds." -#~ msgstr " segundos." - -#~ msgid "Automatic update check" -#~ msgstr "Verificação automática de actualização" - -#~ msgid "Custom Value" -#~ msgstr "Valor Personalizado" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Campo #1 (Ou, nome)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Campo #2 (Linha Única)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Campo #3 (Texto Completo)" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configurar alertas correlacionados" - -#~ msgid "Assigned actions" -#~ msgstr "Acções atribuídas" - -#~ msgid "Field 2" -#~ msgstr "Campo 2" - -#~ msgid "Field 3" -#~ msgstr "Campo 3" - -#~ msgid "Add condition" -#~ msgstr "Adicionar condição" - -#~ msgid "No name was given" -#~ msgstr "Não foi atribuído um nome" - -#~ msgid "No agent was given" -#~ msgstr "Não foi atribuído um agente" - -#~ msgid "No conditions were given" -#~ msgstr "Não foram atribuídas condições" - -#~ msgid "Field 1" -#~ msgstr "Campo 1" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "O alerta ficará activo quando os valores igualarem " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "O alerta ficará activo quando os valores forem diferentes de " - -#~ msgid "Code / binary directory" -#~ msgstr "Código / Directoria binária" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "O Gerenciador de Actualizações envia informação anónima sobre a utilização " -#~ "do Pandora FMS (número de agentes e módulos em execução). Para o desactivar, " -#~ "apague a extensão ou remova o endereço do servidor remoto na configuração do " -#~ "módulo do Gerenciador de Actualizações." - -#~ msgid "Server connection failed" -#~ msgstr "Falhou a conexão ao servidor" - -#~ msgid "Server authorization rejected" -#~ msgstr "Negada a autorização ao servidor" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Existe uma nova actualização para o Pandora FMS" - -#~ msgid "Your system version number is" -#~ msgstr "A sua versão do sistema é" - -#~ msgid "Update server path" -#~ msgstr "Actualize o caminho do servidor" - -#~ msgid "Update server port" -#~ msgstr "Actualize a porta do servidor" - -#~ msgid "Binary input path" -#~ msgstr "Caminho de entrada binário" - -#~ msgid "Last hour" -#~ msgstr "Última hora" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Últimos %s dias" - -#~ msgid "Agents in group" -#~ msgstr "Agentes no grupo" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "O servidor HTTP não consegue escrever nesta directoria" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Por favor verifique que esta directoria tem permissão de escrita pelo " -#~ "servidor HTTP" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Não tem permissão de acesso a este recurso" - -#~ msgid "Delete agents" -#~ msgstr "Apagar agentes" - -#~ msgid "None agent in this category" -#~ msgstr "Não existe agente nesta categoria" - -#~ msgid "Upload file" -#~ msgstr "Carregar ficheiro" - -#~ msgid "Group detailed event" -#~ msgstr "Detalhe de eventos de grupo" - -#~ msgid "Sumatory" -#~ msgstr "Resumo" - -#~ msgid "Agents detailed event" -#~ msgstr "Eventos detalhados de agentes" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Módulos a correr neste servidor / Total de módulos deste tipo" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Tempo de espera de módulos / Tempo máx. (sec)" - -#~ msgid "Event graph by group" -#~ msgstr "Gráfico de eventos por grupo" - -#~ msgid "Create incident from event" -#~ msgstr "Criar incidente a partir de evento" - -#~ msgid "No layouts found" -#~ msgstr "Não foram encontrados layouts" - -#~ msgid "Search value" -#~ msgstr "Valor de procura" - -#~ msgid "Read message" -#~ msgstr "Ler mensagem" - -#~ msgid "-Select user-" -#~ msgstr "Seleccione utilizador" - -#~ msgid "-Select group-" -#~ msgstr "Seleccione grupo" - -#~ msgid "Agent detailed event" -#~ msgstr "Evento detalhado de agente" - -#~ msgid "User defined graph" -#~ msgstr "Gráfico definido por utilizador" - -#~ msgid "Agent down" -#~ msgstr "Agente em baixo" - -#~ msgid "Alerts disabled" -#~ msgstr "Alertas desactivados" - -#~ msgid "At least one monitor fails" -#~ msgstr "Pelo menos um monitor falhou" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Alternar entre estado vermelho/verde" - -#~ msgid "Invalid method supplied" -#~ msgstr "Fornecido método inválido" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Este agente não possuí nenhum monitor activo" - -#~ msgid "Module Down" -#~ msgstr "Módulo em baixo" - -#~ msgid "Module Up" -#~ msgstr "Modulo em cima" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Não existem módulos apartir dos quais se possa avaliar o SLA" - -#~ msgid "User-defined SLA items" -#~ msgstr "Itens de SLA definidos pelo utilizador" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "SLA automatico para monitores" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Este agente não possuí nenhum módulo" - -#~ msgid "Raw Data" -#~ msgstr "Dados RAW" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Mostrar os últimos dados de módulos recebidos pelo agente" - -#~ msgid "secs." -#~ msgstr "Segundos" - -#~ msgid "Flag" -#~ msgstr "Bandeira" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hora" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d houras" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d semanas" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d semana" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dias" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d dia" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mês" - -#~ msgid "Last name" -#~ msgstr "Apelido" - -#~ msgid "Manage Database" -#~ msgstr "Gerir Base de Dados" - -#~ msgid "First name" -#~ msgstr "Nome próprio" - -#~ msgid "Combined image render" -#~ msgstr "Imagem renderizada combinada" - -#~ msgid "Events generated -by module-" -#~ msgstr "Evento gerado -por módulo-" - -#~ msgid "From the last" -#~ msgstr "A partir do último" - -#~ msgid "Compound alerts" -#~ msgstr "Alertas de componentes" - -#~ msgid "No simple alerts found" -#~ msgstr "Não foram encontrados alertas simples" - -#~ msgid "Single alerts" -#~ msgstr "Alertas simples" - -#~ msgid "MD5 check" -#~ msgstr "Verificação MD5" - -#~ msgid "User option" -#~ msgstr "Opção de utilizador" - -#~ msgid "Password option" -#~ msgstr "Opção de paçavra-chave" - -#~ msgid "IP address option" -#~ msgstr "Opção de endereço IP" - -#~ msgid "Port option" -#~ msgstr "Opção de porto" - -#~ msgid "Error updating export target" -#~ msgstr "Erro ao actualizar destino de exportação" - -#~ msgid "Successfully updated export target" -#~ msgstr "Actualizado com sucesso destino de exportação" - -#~ msgid "Error deleting export target" -#~ msgstr "Erro ao apagar destino de exportação" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Removido com sucesso destinho de exportação" - -#~ msgid "Error creating export target" -#~ msgstr "Erro ao criar destino de exportação" - -#~ msgid "Export targets" -#~ msgstr "Destinos de exportação" - -#~ msgid "Successfully created export target" -#~ msgstr "Destino de exportação criado com sucesso" - -#~ msgid "There are no export targets configured" -#~ msgstr "Não existem destinos de exportação configurados" - -#~ msgid "Preffix" -#~ msgstr "Prefixo" - -#~ msgid "Transfer mode" -#~ msgstr "Modo de transferência" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Este utilizador pode gerir tudo. Este utilizador é administrador e tem " -#~ "sobrepõe-se a todas as permissões existentes em perfis/grupos" - -#~ msgid "N/A\t" -#~ msgstr "N/D\t" - -#~ msgid "Minimum Data" -#~ msgstr "Dados mínimos" - -#~ msgid "Maximum Data" -#~ msgstr "Dados máximos" - -#~ msgid "Module Interval" -#~ msgstr "Intervalo de módulo" - -#~ msgid "WMI component management" -#~ msgstr "Gestão de componentes WMI" - -#~ msgid "Network component" -#~ msgstr "Componente de rede" - -#~ msgid "Plugin component" -#~ msgstr "Componente Plugin" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Período de SLA (segundos)" - -#~ msgid "Visual configuration" -#~ msgstr "Configuração visual" - -#~ msgid "Flash charts" -#~ msgstr "Gráficos flash" - -#~ msgid "General configuration" -#~ msgstr "Configurações base" - -#~ msgid "Assigned to" -#~ msgstr "Assignado a" - -#~ msgid "Operator" -#~ msgstr "Operador" - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "O alerta é disparado quando o valor for acima de " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "O alerta é disparado quando o valor for entre e " -#~ "" - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "O alerta é disparado quando o valor for " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "O alerta é disparado quando o valor não for " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "O alerta é disparado quando o valor não for entre e " - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "O alerta é disparado quando o valor for abaixo de " - -#~ msgid "Correlated alerts" -#~ msgstr "Alertas correlacionados" - -#~ msgid "Graphs management" -#~ msgstr "Gestão de gráficos" - -#~ msgid "Decrease Weight" -#~ msgstr "Retirar peso" - -#~ msgid "Increase Weight" -#~ msgstr "Aumentar peso" - -#~ msgid "Visual map wizard" -#~ msgstr "Assistente de mapa visual" - -#~ msgid "Image range (px)" -#~ msgstr "Range de imagem (px)" - -#~ msgid "Image size (px)" -#~ msgstr "Tamanho de imagem (px)" - -#~ msgid "Map builder" -#~ msgstr "Construtor de mapa" - -#~ msgid "No layout with this id found" -#~ msgstr "Não foi encontrado nenhum layout com este ID" - -#~ msgid "Label color" -#~ msgstr "Cor de etiqueta" - -#~ msgid "Assigned modules" -#~ msgstr "Módulos assignados" - -#~ msgid "Plugin parameters" -#~ msgstr "Parâmetros do Plug-in" - -#~ msgid "Module assignment" -#~ msgstr "Tarefas atribuidas aos Módulos" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Não existem servidores configurados na base de dados" - -#~ msgid "Update server host" -#~ msgstr "Actualize o anfitrião do servidor" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Não existem tarefas de reconhecimento atribuídas a este servidor" - -#~ msgid "Duplicate config" -#~ msgstr "Duplicar configuração" - -#~ msgid "Manage modules" -#~ msgstr "Gestão de módulos" - -#~ msgid "Manage SNMP console" -#~ msgstr "Gestão da consola SNMP" - -#~ msgid "Correlation" -#~ msgstr "Correlação" - -#~ msgid "Report builder" -#~ msgstr "Criador de relatórios" - -#~ msgid "There was a problem adding module" -#~ msgstr "Ocorreu um problema ao adicionar o módulo" - -#~ msgid "There was a problem updating module" -#~ msgstr "Ocorreu um problema ao actualizar o módulo" - -#~ msgid "Timestamp to" -#~ msgstr "Selo de hora para" - -#~ msgid "Timestamp from" -#~ msgstr "Selo de hora a partir de" - -#~ msgid "Replicate configuration" -#~ msgstr "Replicar configuração" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "A fazer a cópia do ficheiro de configuração de" - -#~ msgid "Remote configuration management" -#~ msgstr "Gestão de configuração remota" - -#~ msgid "To agent(s):" -#~ msgstr "Para o(s) agente(s):" - -#~ msgid "No selected agents to copy" -#~ msgstr "Nenhum agente seleccionado para cópia" - -#~ msgid "Data Copy" -#~ msgstr "Cópia de dados" - -#~ msgid "Source group" -#~ msgstr "Grupo de origem" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Aviso: Quando mudar a posição do agente, o agente auto-activa a opção " -#~ "'Ignorar novos dados GIS'" - -#~ msgid "Available templates" -#~ msgstr "Modelos disponíveis" - -#~ msgid "Error adding module" -#~ msgstr "Erro ao adicionar o módulo" - -#~ msgid "Modules successfully added " -#~ msgstr "Os módulos foram adicionados com sucesso " - -#~ msgid "Data older than" -#~ msgstr "Dados mais antigos que" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Tarefa de purga lançada para o agente" - -#~ msgid "Deleting records for module" -#~ msgstr "A apagar registos do módulo" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Paragem planeada presente no sistema" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulário de Paragem planeada" - -#~ msgid "Could not delete agent" -#~ msgstr "Não foi possível apagar o agente" - -#~ msgid "Could not delete modules" -#~ msgstr "Não foi possível apagar os módulos" - -#~ msgid "Database sanity tool" -#~ msgstr "Ferramenta da Sanidade da base de dados" - -#~ msgid "Checking database consistency" -#~ msgstr "A verificar a consistência da base de dados" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "A verificar tabela tagente_estado" - -#~ msgid "Deleting non-init data" -#~ msgstr "A apagar dados não-iniciados" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Apagar módulos não-inicializados agora" - -#~ msgid "Sanitize my database now" -#~ msgstr "Devolver a 'sanidade' à minha BD agora" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "A ferramenta da Sanidade do Pandora FMS é usada para remover dados de " -#~ "estrutura da base de dados incorrectos, para verificar módulos criados sem " -#~ "definição de estado ou módulos que não puderam ser inicializados (e não " -#~ "relatam dados válidos) mas que voltar a tentar obter dados cada um a seu " -#~ "tempo. Estes módulos em mau estado podem degradar a performance do Pandora " -#~ "FMS. Esta ferramenta de Sanidade da Base de dados é também implementada no " -#~ "pandora_db.pl que você deve executar diária ou semanalmente. Esta " -#~ "consola Sanidade NÂO COMPACTA a sua base de dados, apenas apaga os dados mal " -#~ "estruturados." - -#~ msgid "Press here to get database information as text" -#~ msgstr "Clique aqui para obter a info. da BD em formato texto" - -#~ msgid "Packets per agent" -#~ msgstr "Pacotes por agente" - -#~ msgid "Modules per agent" -#~ msgstr "Módulos por agente" - -#~ msgid "Total data" -#~ msgstr "Total de dados (registos)" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Clique aqui para obter a info. da BD em forma de gráfico" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "Ocorreu um erro ao apagar o agente, a operação foi cancelada" - -#~ msgid "Update manager settings" -#~ msgstr "Definições do Gestor de actualização" - -#~ msgid "More info" -#~ msgstr "Mais informações" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Existe uma nova actualização para o Pandora" - -#~ msgid "Your system is up-to-date" -#~ msgstr "O seu sistema está actualizado!" - -#~ msgid "Testing" -#~ msgstr "Testando" - -#~ msgid "Modules groups" -#~ msgstr "Grupos de módulos" - -#~ msgid "The colours meaning:" -#~ msgstr "Significado das cores:" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Houve um problema ao criar o SLA" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA foi criado com sucesso" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Houve um problema ao criar o relatório" - -#~ msgid "Reporting successfully created" -#~ msgstr "Relatório criado com sucesso" - -#~ msgid "SLAs defined" -#~ msgstr "SLAs definidos" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Houve um problema ao apagar o SLA" - -#~ msgid "Custom reporting builder" -#~ msgstr "Criador personalizado de relatórios" - -#~ msgid "Module is not set" -#~ msgstr "Módulo não definido" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA foi apagado com sucesso" - -#~ msgid "SLA report construction" -#~ msgstr "Construção de relatório do SLA" - -#~ msgid "Reporting type" -#~ msgstr "Tipo de relatório" - -#~ msgid "Add item to report" -#~ msgstr "Adicionar item ao relatório" - -#~ msgid "Graph builder module list" -#~ msgstr "Lista de módulos criadores de gráficos" - -#~ msgid "Report name is empty" -#~ msgstr "Nome do relatório está vazio" - -#~ msgid "No items defined" -#~ msgstr "Sem itens definidos" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Arraste um elemento para aqui para editar as propriedades" - -#~ msgid "Map element editor" -#~ msgstr "Editor do mapa de elementos" - -#~ msgid "Render now" -#~ msgstr "Processar agora" - -#~ msgid "Map element trash" -#~ msgstr "Lixo do mapa de elementos" - -#~ msgid "Update layout successful" -#~ msgstr "Actualizar design bem sucedido" - -#~ msgid "Update layout failed" -#~ msgstr "Falhou a actualização do design" - -#~ msgid "Select an element to delete:" -#~ msgstr "Escolha um elemento a apagar:" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Por favor escolha uma imagem, ou digite um nome para o elemento." - -#~ msgid "Redraw" -#~ msgstr "Redesenhar" - -#~ msgid "Custom graph store" -#~ msgstr "Depósito de gráficos personalizados" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "A lista de IPs separados por \"Enter\"." - -#~ msgid "Deleting file" -#~ msgstr "A apagar ficheiro" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#~ msgid "Pandora Setup" -#~ msgstr "Configuração de Pandora" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compactar CSS e JS no cabeçalho" - -#~ msgid "Deleting" -#~ msgstr "A remover" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Nenhum agente seleccionado. Por favor escolha um agente." - -#~ msgid "Pandora users" -#~ msgstr "Utilizadores de Pandora" - -#~ msgid "matches of the alert" -#~ msgstr "ocorrências do alerta" - -#~ msgid "Configuration management" -#~ msgstr "Gestor da configuração" - -#~ msgid "Group name" -#~ msgstr "Nome do Grupo" - -#~ msgid "Could not delete alerts" -#~ msgstr "Não foi possível apagar os alertas" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "Houve um erro ao apagar os alertas. A operação foi cancelada" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Criada a pasta %s" - -#~ msgid "TCP port" -#~ msgstr "Porta TCP" - -#~ msgid "Update agent" -#~ msgstr "Actualizar agente" - -#~ msgid "Edit modules" -#~ msgstr "Editar módulos" - -#~ msgid "Delete modules" -#~ msgstr "Apagar módulos" - -#~ msgid "Delete alerts" -#~ msgstr "Apagar alertas" - -#~ msgid "Massive agent deletion" -#~ msgstr "Remoção em massa de agentes" - -#~ msgid "Manage profiles" -#~ msgstr "Gerir perfis" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Monitor de residência dos agentes" - -#~ msgid "Read agent information" -#~ msgstr "Ler informação do agente" - -#~ msgid "Create incidents" -#~ msgstr "Criar incidentes" - -#~ msgid "Pandora system management" -#~ msgstr "Gestão do sistema Pandora" - -#~ msgid "Read incidents" -#~ msgstr "Ler incidentes" - -#~ msgid "Manage user rights" -#~ msgstr "Gerir direitos de utilizador" - -#~ msgid "Group management" -#~ msgstr "Gestão de grupos" - -#~ msgid "Extra options" -#~ msgstr "Opções adicionais" - -#~ msgid "Target directory" -#~ msgstr "Pasta-Alvo" - -#~ msgid "Event not validate" -#~ msgstr "Não-validação de evento" - -#~ msgid "Event validate" -#~ msgstr "Validação de evento" - -#~ msgid "Older" -#~ msgstr "Mais antigo" - -#~ msgid "Agents detailed view" -#~ msgstr "Vista de agentes em detalhe" - -#~ msgid "Unmanaged error" -#~ msgstr "Erro não gerido" - -#~ msgid "General group report" -#~ msgstr "Relatório geral de grupo" - -#~ msgid "Event report" -#~ msgstr "Relatório de evento" - -#~ msgid "Alert report" -#~ msgstr "Relatório de alerta" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "System Events" -#~ msgstr "Eventos de Sistema" - -#~ msgid "Event not validated" -#~ msgstr "Evento não validado" - -#~ msgid "Agent without monitors" -#~ msgstr "Agente sem monitores" - -#~ msgid "Modules warning" -#~ msgstr "Aviso de módulos" - -#~ msgid "Agents down" -#~ msgstr "Agentes em baixo" - -#~ msgid "SLA view" -#~ msgstr "Vista SLA" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Sistema de ajuda do Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Consola on-line do Pandora FMS" - -#~ msgid "Keygen file is not executable" -#~ msgstr "O ficheiro Keygen não é executável" - -#~ msgid "Keygen file does not exists" -#~ msgstr "O ficheiro Keygen não existe" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "O gestor de actualizações é uma das mais avançadas funcionalidades do " -#~ "Pandora FMS 2.0 versão empresarial. Para mais informação, por favor, vá a http://pandorafms.com." - -#~ msgid "You are" -#~ msgstr "Você é" - -#~ msgid "Overwrite local changes" -#~ msgstr "Substituir alterações locais" - -#~ msgid "Authentication Error" -#~ msgstr "Erro de Autenticação" - -#~ msgid "General information" -#~ msgstr "Informação geral" - -#~ msgid "4 days" -#~ msgstr "4 dias" - -#~ msgid "Last Month" -#~ msgstr "Mês passado" - -#~ msgid "Two Months" -#~ msgstr "Dois Meses" - -#~ msgid "Update manager settings updated" -#~ msgstr "Actualize o gestor de definições actualizado" - -#~ msgid "Six Months" -#~ msgstr "Seis Meses" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Arraste um elemento para aqui para o apagar do mapa" - -#~ msgid "3 hours" -#~ msgstr "3 horas" - -#~ msgid "Keygen path" -#~ msgstr "endereço interno do Keygen" - -#~ msgid "Network Server" -#~ msgstr "Servidor de rede" - -#~ msgid "Data Server" -#~ msgstr "Servidor de dados" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "O objectivo de exportação foi apagado com sucesso" - -#~ msgid "export targets" -#~ msgstr "Objectivos de exportação" - -#~ msgid "MD5 Check" -#~ msgstr "Verificação do MD5" - -#~ msgid "Transfer Mode" -#~ msgstr "Modo de transferência" - -#~ msgid "DB Maintenance" -#~ msgstr "Manutenção da DB" - -#~ msgid "DB Information" -#~ msgstr "Informação da DB" - -#~ msgid "Network profile" -#~ msgstr "Perfil de rede" - -#~ msgid "Create Incidents" -#~ msgstr "Criar incidentes" - -#~ msgid "Read Incidents" -#~ msgstr "Incidentes lidos" - -#~ msgid "Link successfully deleted" -#~ msgstr "Link apagado com sucesso" - -#~ msgid "Profile successfully created" -#~ msgstr "Perfil creado com sucesso" - -#~ msgid "Link successfully created" -#~ msgstr "Link creado com sucesso" - -#~ msgid "Link successfully updated" -#~ msgstr "Link actualizado com sucesso" - -#~ msgid "Profile successfully updated" -#~ msgstr "Perfil actualizado com sucesso" - -#~ msgid "Manage Agents" -#~ msgstr "Gerir agentes" - -#~ msgid "Read Agent Information" -#~ msgstr "Informação do agente de informação" - -#~ msgid "Manage Incidents" -#~ msgstr "Gestão de incidentes" - -#~ msgid "Manage User Rights" -#~ msgstr "Gerir direitos dos utilizadores" - -#~ msgid "Edit Alerts" -#~ msgstr "Editar alertas" - -#~ msgid "Pandora System Management" -#~ msgstr "Gestão do sistema Pandora" - -#~ msgid "Database Management" -#~ msgstr "Gestão da base de dados" - -#~ msgid "Alerts Management" -#~ msgstr "Gestão de alertas" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alerta apagado com sucesso" - -#~ msgid "Alert successfully updated" -#~ msgstr "Alerta actualizado com sucesso" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Houve um problema na actualização do agente" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agente actualizado com sucesso" - -#~ msgid "Alert successfully created" -#~ msgstr "Alerta criado com sucesso" - -#~ msgid "Module deleted successfully" -#~ msgstr "Módulo apagado com sucesso" - -#~ msgid "To Agent(s):" -#~ msgstr "Para agente(s)" - -#~ msgid "Configuration Management" -#~ msgstr "Gestor de definições" - -#~ msgid "WMI Query" -#~ msgstr "WMI Query" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Estado inicial sem sucesso" - -#~ msgid "Available Agents" -#~ msgstr "Agentes Disponíveis" - -#~ msgid "Upd" -#~ msgstr "Upd" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Crie um novo módulo de Servidor de Extensão" - -#~ msgid "Prediction Server" -#~ msgstr "Servidor de Prognóstico" - -#~ msgid "WMI Server" -#~ msgstr "Servidor WMI" - -#~ msgid "Plugin Server" -#~ msgstr "Servidor de Extensão" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Crie um novo módulo de Servidor de Prognóstico" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Crie um novo módulo de Servidor WMI" - -#~ msgid "Alert type" -#~ msgstr "Tipo de Alerta" - -#~ msgid "User successfully deleted" -#~ msgstr "Utilizador apagado com sucesso" - -#~ msgid "Add Modules" -#~ msgstr "Adicionar Módulos" - -#~ msgid "Module component management" -#~ msgstr "Componente do módulo de gestão" - -#~ msgid "NC.Group" -#~ msgstr "NC.Group" - -#~ msgid "Standard user" -#~ msgstr "Utilizador padrão" - -#~ msgid "Database Information" -#~ msgstr "Informação da Base de Dados" - -#~ msgid "Database Audit purge" -#~ msgstr "Purga dos ficheiros de auditoria da Base de Dados" - -#~ msgid "Database Maintenance" -#~ msgstr "Manutenção da Base de Dados" - -#~ msgid "Event Database cleanup" -#~ msgstr "Limpeza de eventos da Base de Dados" - -#~ msgid "Monitor down" -#~ msgstr "Monitor para baixo" - -#~ msgid "Monitor up" -#~ msgstr "Monitor para cima" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Houve um problema ao ler o alerta" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "Software agent data" -#~ msgstr "Dados do agente de software" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitor do agente de software" - -#~ msgid "Network agent data" -#~ msgstr "Dados do agente de rede" - -#~ msgid "Times Fired" -#~ msgstr "Tempos disparados" - -#~ msgid "Network agent monitor" -#~ msgstr "Monitor do agente de rede" - -#~ msgid "Wrong module type" -#~ msgstr "Módulo de tipo errado" - -#~ msgid "Search text" -#~ msgstr "Pesquisar texto" - -#~ msgid "Configuration detail" -#~ msgstr "Detalhe de definição" - -#~ msgid "View users" -#~ msgstr "Vista de utlizadores" - -#~ msgid "Network Map" -#~ msgstr "Mapa de rede" - -#~ msgid "Pandora Agents" -#~ msgstr "Agentes Pandora" - -#~ msgid "Validated event" -#~ msgstr "Evento validado" - -#~ msgid "Full list of Monitors" -#~ msgstr "Lista completa de monitores" - -#~ msgid "Free text" -#~ msgstr "Texto livre" - -#~ msgid "Agent general information" -#~ msgstr "Agente de informação geral" - -#~ msgid "Thurdsday" -#~ msgstr "Quinta-Feira" - -#~ msgid "Data from agent " -#~ msgstr "Dados do agente " - -#~ msgid "Database export results" -#~ msgstr "Resultados de exportação da base de dados" - -#~ msgid "Hr" -#~ msgstr "Hr" - -#~ msgid "No module has been selected" -#~ msgstr "Nenhum módulo foi seleccionado" - -#~ msgid "Download file" -#~ msgstr "Transferir ficheiro" - -#~ msgid "End date (*)" -#~ msgstr "Data de termo (*)" - -#~ msgid "Begin date (*)" -#~ msgstr "Data de inicio (*)" - -#~ msgid "Total Agents" -#~ msgstr "Total de agentes" - -#~ msgid "Alerts Fired" -#~ msgstr "Alertas disparados" - -#~ msgid "User activity statistics" -#~ msgstr "Estatísticas da actividade do utilizador" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Perfil apagado com sucesso" - -#~ msgid "Config" -#~ msgstr "Configurar" - -#~ msgid "Create networkmap" -#~ msgstr "Criar o mapa de rede" - -#~ msgid "Custom graph name" -#~ msgstr "Nome de grapho personalizado" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Célula vermelha quando o módulo de grupo e agente têm pelo menos um módulo " -#~ "em estado crítico e outros em qualquer outro estado." - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Célula verde quando o módulo de grupo e agente têm todos os módulos em " -#~ "estado OK." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Célula amarela quando quando o módulo de grupo e agente têm pelo menos um " -#~ "módulo em estado de alerta e outros em estado verde." - -#~ msgid "Modules normal" -#~ msgstr "Módulos em estado normal" - -#~ msgid "Pandora agents" -#~ msgstr "Agentes Pandora" - -#~ msgid "Modules critical" -#~ msgstr "Módulos em estado crítico" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "Célula cinzenta quando o módulo de grupo e agente não têm módulos." - -#~ msgid "Illegal query" -#~ msgstr "Pesquisa não autorizada" - -#~ msgid "Modules over or equal to" -#~ msgstr "Modulos maiores ou iguais a" diff --git a/pandora_console/include/languages/pt_BR.mo b/pandora_console/include/languages/pt_BR.mo index 02b442e7e4788cbdb176e1d18b56557acfc57cb4..c2095e6a4d077207590d7192ce5bcbc3262032d8 100644 GIT binary patch delta 61 zcmdmcgm3Q=zJ?aYEldv#cujQ;%yf+`6$~w`Obw^MHDG$mWu|LvpkQcXWneu0jv\n" "Language-Team: pt_br \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:02+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: \n" -#: ../../godmode/users/profile_list.php:305 -msgid "System incidents reading" -msgstr "Lendo incidentes do sistema" - #: ../../godmode/groups/configure_group.php:68 #: ../../godmode/groups/configure_modu_group.php:47 msgid "There was a problem loading group" @@ -8397,6 +8393,10 @@ msgstr "O nome do perfil não pode ficar vazio" msgid "There was a problem creating this profile" msgstr "Houve um problema ao criar este perfil" +#: ../../godmode/users/profile_list.php:305 +msgid "System incidents reading" +msgstr "Lendo incidentes do sistema" + #: ../../godmode/users/profile_list.php:306 msgid "System incidents writing" msgstr "Escrevendo incidentes do sistema" @@ -20708,4601 +20708,3 @@ msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "O arquivo está em falta no disco. Por favor, entre em contato com o " "administrador." - -#~ msgid "NC.Group" -#~ msgstr "Grupo C.R." - -#~ msgid "Module component management" -#~ msgstr "Gestão dos componentes de rede" - -#~ msgid "Module Interval" -#~ msgstr "Intervalo módulo" - -#~ msgid "TCP port" -#~ msgstr "Porta TCP" - -#~ msgid "Minimum Data" -#~ msgstr "Dados mín." - -#~ msgid "Maximum Data" -#~ msgstr "Dados máx." - -#~ msgid "Map builder" -#~ msgstr "Gerador de mapas" - -#~ msgid "Label color" -#~ msgstr "Cor do rótulo" - -#~ msgid "Graph builder module list" -#~ msgstr "Lista do construtor de imagens" - -#~ msgid "Combined image render" -#~ msgstr "Visualização de imagens combinadas" - -#~ msgid "Factor" -#~ msgstr "Fator" - -#~ msgid "Render now" -#~ msgstr "Ver agora" - -#~ msgid "Redraw" -#~ msgstr "Redesenhar" - -#~ msgid "Custom graph store" -#~ msgstr "Guardar imagem customizada do usuário" - -#~ msgid "Store" -#~ msgstr "Guardar" - -#~ msgid "Reporting successfully created" -#~ msgstr "O relatório foi criado satisfatoriamente" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Houve um problema ao criar o relatório" - -#~ msgid "Custom reporting builder" -#~ msgstr "Gerador de relatórios personalizados" - -#~ msgid "Add item to report" -#~ msgstr "Adicionar elemento ao relatório" - -#~ msgid "Reporting type" -#~ msgstr "Tipo de relatório" - -#~ msgid "Custom graph name" -#~ msgstr "Nome do gráfico customizado" - -#~ msgid "Up" -#~ msgstr "Ativo" - -#~ msgid "User successfully deleted" -#~ msgstr "Usuário eliminado corretamente" - -#~ msgid "Standard user" -#~ msgstr "Usuário padrão" - -#~ msgid "Database Maintenance" -#~ msgstr "Manutenção da Base de Dados" - -#~ msgid "Total data" -#~ msgstr "Dados totais" - -#~ msgid "Event Database cleanup" -#~ msgstr "Limpeza da Base de Dados de eventos" - -#~ msgid "Database Audit purge" -#~ msgstr "Depuração da Base de Dados de auditoria" - -#~ msgid "Data from agent " -#~ msgstr "Dados do agente " - -#~ msgid "Database Information" -#~ msgstr "Informação da Base de Dados" - -#~ msgid "Modules per agent" -#~ msgstr "Módulos por agente" - -#~ msgid "Packets per agent" -#~ msgstr "Pacotes por agentes" - -#~ msgid "Pandora Setup" -#~ msgstr "Configuração" - -#~ msgid "General configuration" -#~ msgstr "Configuração geral" - -#~ msgid "Link successfully created" -#~ msgstr "O link foi criado corretamente" - -#~ msgid "Link successfully updated" -#~ msgstr "Link atualizado corretamente" - -#~ msgid "Manage modules" -#~ msgstr "Gerenciar módulos" - -#~ msgid "Report builder" -#~ msgstr "Gerador de relatórios" - -#~ msgid "Manage profiles" -#~ msgstr "Gestão de perfis" - -#~ msgid "DB Maintenance" -#~ msgstr "Manutenção do BD" - -#~ msgid "DB Information" -#~ msgstr "Informação do BD" - -#~ msgid "Modules successfully added " -#~ msgstr "Módulos adicionados corretamente " - -#~ msgid "Available templates" -#~ msgstr "Modelos disponíveis" - -#~ msgid "Assigned modules" -#~ msgstr "Módulos atribuídos" - -#~ msgid "Net. Templates" -#~ msgstr "Modelos de rede" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Alerta eliminado corretamente" - -#~ msgid "Alert successfully created" -#~ msgstr "Alerta criado corretamente" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agente atualizado corretamente" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Houve um problema ao atualizar o agente" - -#~ msgid "There was a problem updating module" -#~ msgstr "Houve um problema ao atualizar o módulo" - -#~ msgid "There was a problem adding module" -#~ msgstr "Houve um problema ao adicionar o módulo" - -#~ msgid "Alert type" -#~ msgstr "Tipo de alerta" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Campo #1 (Alias, nome)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Campo #2 (Linha simples)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Campo #3 (Texto completo)" - -#~ msgid "Data Copy" -#~ msgstr "Cópia de dados" - -#~ msgid "No selected agents to copy" -#~ msgstr "Não foram selecionados agentes de destino para a cópia" - -#~ msgid "Configuration Management" -#~ msgstr "Gerenciamento de Configurações" - -#~ msgid "To Agent(s):" -#~ msgstr "Agente(s) destino" - -#~ msgid "Update agent" -#~ msgstr "Atualizar agente" - -#~ msgid "Network Server" -#~ msgstr "Servidor de rede" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Este agente não tem nenhum módulo definido" - -#~ msgid "Group management" -#~ msgstr "Gerenciamento de grupos" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Perfil eliminado corretamente" - -#~ msgid "Profile successfully created" -#~ msgstr "Perfil criado corretamente" - -#~ msgid "Profile successfully updated" -#~ msgstr "Perfil atualizado corretamente" - -#~ msgid "Manage Database" -#~ msgstr "Gerenciamento do BD" - -#~ msgid "Alert successfully updated" -#~ msgstr "Agente atualizado corretamente" - -#~ msgid "Network profile" -#~ msgstr "Perfil da rede" - -#~ msgid "Recon Server" -#~ msgstr "Servidor Recon" - -#~ msgid "day" -#~ msgstr "dia" - -#~ msgid "week" -#~ msgstr "semana" - -#~ msgid "month" -#~ msgstr "mês" - -#~ msgid "Master" -#~ msgstr "Principal" - -#~ msgid "Data Server" -#~ msgstr "Servidor de dados" - -#~ msgid "MD5 Check" -#~ msgstr "Checar soma MD5" - -#~ msgid "Event report" -#~ msgstr "Relatório de eventos" - -#~ msgid "Alert report" -#~ msgstr "Relatório de alertas" - -#~ msgid "Pandora users" -#~ msgstr "Usuários do Pandora" - -#~ msgid "User activity statistics" -#~ msgstr "Estatísticas de atividade dos usuários" - -#~ msgid "Event graph by group" -#~ msgstr "Gráfico de eventos por grupo" - -#~ msgid "Validated event" -#~ msgstr "Evento validado" - -#~ msgid "View users" -#~ msgstr "Ver usuários" - -#~ msgid "Pandora Agents" -#~ msgstr "Agentes do Pandora" - -#~ msgid "Agent general information" -#~ msgstr "Informação geral sobre o agente" - -#~ msgid "Thurdsday" -#~ msgstr "Quinta-feira" - -#~ msgid "Hr" -#~ msgstr "Hr" - -#~ msgid "Database export results" -#~ msgstr "Resultados da exportação de dados da BD" - -#~ msgid " from " -#~ msgstr " desde " - -#~ msgid " to " -#~ msgstr " até " - -#~ msgid "Download file" -#~ msgstr "Baixar arquivo" - -#~ msgid "No module has been selected" -#~ msgstr "Não foi selecionado nenhum módulo" - -#~ msgid "Begin date (*)" -#~ msgstr "Data de início (*)" - -#~ msgid "End date (*)" -#~ msgstr "Data final (*)" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Formato CSV" - -#~ msgid "Full list of Monitors" -#~ msgstr "Lista completa de monitores" - -#~ msgid "Load" -#~ msgstr "Carga" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Alterna entre os estados verde e vermelho" - -#~ msgid "At least one monitor fails" -#~ msgstr "Ao menos um monitor falhou" - -#~ msgid "Agent without monitors" -#~ msgstr "Agente sem monitores" - -#~ msgid "Agent down" -#~ msgstr "Agente caiu" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Não há nenhum agente incluído neste grupo" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Conteúdo dos últimos pacotes enviados pelo agente:" - -#~ msgid "int" -#~ msgstr "int" - -#~ msgid "Raw Data" -#~ msgstr "Dados" - -#~ msgid "Times Fired" -#~ msgstr "Número de vezes lançada" - -#~ msgid "Configuration detail" -#~ msgstr "Detalhe da configuração" - -#~ msgid "General information" -#~ msgstr "Informação geral" - -#~ msgid "Authentication Error" -#~ msgstr "Erro de Autenticação" - -#~ msgid "Logged Out" -#~ msgstr "Desconectado/a" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Este é o Console de Administração do Pandora. A partir daqui você pode " -#~ "gerenciar seus agentes, alertas e incidentes. A sessão permancerá aberta " -#~ "enquanto exista atividade." - -#~ msgid "You don't have access" -#~ msgstr "Não tem acesso" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Não tem permissão necessária para acessar este recurso" - -#~ msgid "Software agent data" -#~ msgstr "Dados do agente de software" - -#~ msgid "Software agent monitor" -#~ msgstr "Monitores do agente de software" - -#~ msgid "Network agent data" -#~ msgstr "Dados do agente de rede" - -#~ msgid "Network agent monitor" -#~ msgstr "Monitores do agente de rede" - -#~ msgid "Group name" -#~ msgstr "Nome do grupo" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Houve um erro ao carregar a configuração do alerta" - -#~ msgid "Seconds" -#~ msgstr "Segundos" - -#~ msgid "Older" -#~ msgstr "Anterior" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Sistema de Ajuda do Pandora FMS" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Console Web do Pandora FMS" - -#~ msgid "Global health" -#~ msgstr "Saúde global" - -#~ msgid "Alerts defined" -#~ msgstr "Alertas definidos" - -#~ msgid "You are" -#~ msgstr "Você está" - -#~ msgid "Autorefresh" -#~ msgstr "Auto atualização" - -#~ msgid "Your system is up-to-date" -#~ msgstr "Seu sistema está atualizado" - -#~ msgid "Server authorization rejected" -#~ msgstr "A autorização do servidor foi rejeitada" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Arquivo de keygen não é executável" - -#~ msgid "Keygen file does not exists" -#~ msgstr "Arquivo de keygen não existe" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "O novo cliente do Gerenciador de " -#~ "Atualizações é distribuído com o Pandora FMS 2.0. Ele ajuda os " -#~ "administradores de sistema a atualizar seu Pandora FMS automaticamente, " -#~ "desde que o Gerenciador de Atualizações faça a tarefa de obter novos " -#~ "módulos, novos plugins e novos recursos (mesmo migrações completas para " -#~ "versões futuras) automaticamente." - -#~ msgid "Server connection failed" -#~ msgstr "A conexão com o servidor falhou" - -#~ msgid "Update server port" -#~ msgstr "Atualizar porta do servidor" - -#~ msgid "Your system version number is" -#~ msgstr "O número de versão do seu sistema é" - -#~ msgid "Update manager settings updated" -#~ msgstr "As configurações do gerenciador de atualizações foi atualizada" - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Overwrite local changes" -#~ msgstr "Sobreescrever alterações locais" - -#~ msgid "Update server path" -#~ msgstr "Atualizar caminho do servidor" - -#~ msgid "Settings" -#~ msgstr "Configurações" - -#~ msgid "Update server host" -#~ msgstr "Atualizar máquina servidora" - -#~ msgid "Development" -#~ msgstr "Desenvolvimento" - -#~ msgid "Binary input path" -#~ msgstr "Caminho de entrada do binário" - -#~ msgid "Testing" -#~ msgstr "Testes" - -#~ msgid "Keygen path" -#~ msgstr "Caminho para o keygen" - -#~ msgid "Update manager settings" -#~ msgstr "Configurações do gerenciador de atualizações" - -#~ msgid "More info" -#~ msgstr "Mais informações" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Não existem atualizações para o Pandora" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Arraste um elemento aqui para excluí-lo do mapa" - -#~ msgid "Update layout successful" -#~ msgstr "Atualização do layout realizada com sucesso" - -#~ msgid "Update layout failed" -#~ msgstr "A atualização do layout falhou" - -#~ msgid "preview" -#~ msgstr "visualizar" - -#~ msgid "Code / binary directory" -#~ msgstr "Diretório do código / binário" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Arraste um elemento aqui para editar as propriedades" - -#~ msgid "Map element editor" -#~ msgstr "Editor de elementos do mapa" - -#~ msgid "Last Month" -#~ msgstr "Último mês" - -#~ msgid "Two Months" -#~ msgstr "Dois meses" - -#~ msgid "Six Months" -#~ msgstr "Seis meses" - -#~ msgid "SLA was successfully created" -#~ msgstr "O SLA foi criado com sucesso" - -#~ msgid "3 hours" -#~ msgstr "3 horas" - -#~ msgid "4 days" -#~ msgstr "4 dias" - -#~ msgid "SLA report construction" -#~ msgstr "Construção de relatório de SLA" - -#~ msgid "SLAs defined" -#~ msgstr "SLAs definidos" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Houve um problema durante a exclusão do SLA" - -#~ msgid "Module is not set" -#~ msgstr "O módulo não está definido" - -#~ msgid "SLA was successfully delete" -#~ msgstr "O SLA foi excluído com sucesso" - -#~ msgid "Transfer Mode" -#~ msgstr "Modo de Transferência" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Houve um problema durante a criação do SLA" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "O Gerenciador de Atualizações envia informações anônimas sobre o uso do " -#~ "Pandora FMS (número de agentes e módulos em execução). Para desabilitar " -#~ "isso, apenas exclua a extensão ou remova o endereço do servidor remoto do " -#~ "configurador de plugins do Gerenciador de Atualizações." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "O Gerenciador de Atualizações é um dos recursos mais avançados da versão " -#~ "Enterprise do Pandora FMS 2.0, para maiores informações visite http://pandorafms.com." - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Existe uma nova atualização para o Pandora FMS" - -#~ msgid "No news articles at this moment" -#~ msgstr "Sem novos artigos neste momento" - -#~ msgid "Your IP" -#~ msgstr "Seu IP" - -#~ msgid "Successfully updated export target" -#~ msgstr "Erro atualizando exportação do destino" - -#~ msgid "Error deleting export target" -#~ msgstr "Erro removendo exportação do destino" - -#~ msgid "Map element trash" -#~ msgstr "Lixo de elementos do mapa" - -#~ msgid "Users defined" -#~ msgstr "Usuários definidos" - -#~ msgid "Successfully created export target" -#~ msgstr "Exportação do destino criada com sucesso" - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Remoção do destino executada com sucesso" - -#~ msgid "Error creating export target" -#~ msgstr "Erro criando exportação do destino" - -#~ msgid "export targets" -#~ msgstr "exportar destinos" - -#~ msgid "There are no export targets configured" -#~ msgstr "Não existem destinos a exportar configurados" - -#~ msgid "Preffix" -#~ msgstr "Prefixo" - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Tarefa de reconhecimento removida com sucesso" - -#~ msgid "hour" -#~ msgstr "hora" - -#~ msgid "Transfer mode" -#~ msgstr "Modo de transferência" - -#~ msgid "Target directory" -#~ msgstr "Diretório destino" - -#~ msgid "Max.Timeout" -#~ msgstr "Tempo máximo de expiração" - -#~ msgid "User option" -#~ msgstr "Opção de usuário" - -#~ msgid "Password option" -#~ msgstr "Opção de senha" - -#~ msgid "Duplicate config" -#~ msgstr "Duplicar configuração" - -#~ msgid "IP address option" -#~ msgstr "Opção de endereçamento IP" - -#~ msgid "Port option" -#~ msgstr "Opção de porta" - -#~ msgid "Manage SNMP console" -#~ msgstr "Gerenciar console SNMP" - -#~ msgid "Manage plugins" -#~ msgstr "Gerenciar Plugins" - -#~ msgid "Export targets" -#~ msgstr "Exportar destinos" - -#~ msgid "Alert Overview" -#~ msgstr "Resumo de alertas" - -#~ msgid "Custom Value" -#~ msgstr "Valor customizado" - -#~ msgid "Alert trigger" -#~ msgstr "Disparar alerta" - -#~ msgid "Link successfully deleted" -#~ msgstr "Link removido com sucesso" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Período do SLA (segundos)" - -#~ msgid "Automatic update check" -#~ msgstr "Verificação automática de atualização" - -#~ msgid "Manage Agents" -#~ msgstr "Gerenciar agentes" - -#~ msgid "Read Agent Information" -#~ msgstr "Ver informações do agente" - -#~ msgid "Manage Incidents" -#~ msgstr "Gerenciar incidentes" - -#~ msgid "Create Incidents" -#~ msgstr "Criar incidentes" - -#~ msgid "Read Incidents" -#~ msgstr "Ver incidentes" - -#~ msgid "Edit Alerts" -#~ msgstr "Editar alertas" - -#~ msgid "Manage User Rights" -#~ msgstr "Gerenciar permissões de usuários" - -#~ msgid "Pandora System Management" -#~ msgstr "Gerenciamento do sistema Pandora" - -#~ msgid "Database Management" -#~ msgstr "Gerenciamento do banco de dados" - -#~ msgid "Alerts Management" -#~ msgstr "Gerenciamento de alertas" - -#~ msgid "Module deleted successfully" -#~ msgstr "Módulo removido com sucesso" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Inicialização do status falhou" - -#~ msgid "Error adding module" -#~ msgstr "Erro adicionando o módulo" - -#~ msgid "Replicate configuration" -#~ msgstr "Duplicar configuração" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulário de agendamento de indisponibilidade" - -#~ msgid "Timestamp to" -#~ msgstr "Timbre de data para" - -#~ msgid "Source group" -#~ msgstr "Grupo de origem" - -#~ msgid "Available Agents" -#~ msgstr "Agentes disponíveis" - -#~ msgid "Timestamp from" -#~ msgstr "Timbre de data de" - -#~ msgid "Del" -#~ msgstr "Apagar" - -#~ msgid "Upd" -#~ msgstr "Atualizar" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Indisponibilidades agendadas presentes no sistema" - -#~ msgid "Plugin parameters" -#~ msgstr "Parâmetros do plugin" - -#~ msgid "matches of the alert" -#~ msgstr "Combinações do alerta" - -#~ msgid "Prediction Server" -#~ msgstr "Servidor de previsão" - -#~ msgid "WMI Server" -#~ msgstr "Servidor WMI" - -#~ msgid "Plugin Server" -#~ msgstr "Servidor de plugin" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Criar um novo módulo de servidor de previsões" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Criar um novo módulo de servidor WMI" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Criar um novo módulo de servidor de plugin" - -#~ msgid "Oper" -#~ msgstr "Operador" - -#~ msgid "WMI component management" -#~ msgstr "Gerenciamento de componente WMI" - -#~ msgid "Press here to get database information as text" -#~ msgstr "" -#~ "Clique aqui para visualizar as informações do banco de dados como texto" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "" -#~ "Clique aqui para visualizar as informações do bando de dados como gráfico" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Esse usuário tem permissão total de gerencimaneto. Esse é um usuário " -#~ "administrativo e sobrepõe todas as permissões dadas em perfis/grupos" - -#~ msgid "Add Modules" -#~ msgstr "Adicionar Módulos" - -#~ msgid "Data older than" -#~ msgstr "Dados mais antigos que" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Tarefa de remoção disparada para o agente" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "A ferramenta de sanidade do Pandora FMS é utilizada para remover dados " -#~ "inadequados da estrutura de dados, módulos criados sem status ou módulos que " -#~ "não podem ser inicializados (e não fornecem dados válidos) mas tentam " -#~ "novamente pegar dados em intervalos regulares. Este tipo de módulos ruins " -#~ "podem degradar a perfomance do Pandora FMS. Essa ferramenta de sanidade de " -#~ "dados também é implementada no pandora_db.pl que você deve executar " -#~ "semanalmente. Esse console de sanidade NÃO compacta sua base de dados, mas " -#~ "apenas remove dados inadequados." - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Verificando tabela tagente_estado" - -#~ msgid "Checking database consistency" -#~ msgstr "Verificando consistência do banco de dados" - -#~ msgid "Deleting records for module" -#~ msgstr "Removendo entradas para o módulo" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Remova módulos não-inicializados agora" - -#~ msgid "Sanitize my database now" -#~ msgstr "Higienize minha base de dados agora" - -#~ msgid "Deleting non-init data" -#~ msgstr "Removendo dados não inicializados" - -#~ msgid "Field 1" -#~ msgstr "Campo 1" - -#~ msgid "Field 2" -#~ msgstr "Campo 2" - -#~ msgid "Field 3" -#~ msgstr "Campo 3" - -#~ msgid "Monitor down" -#~ msgstr "Monitor inativo" - -#~ msgid "Monitor up" -#~ msgstr "Monitor ativo" - -#~ msgid "Unmanaged error" -#~ msgstr "Erro não gerenciado" - -#~ msgid "General group report" -#~ msgstr "Relatório geral do grupo" - -#~ msgid "Agents detailed view" -#~ msgstr "Visualização detalhada de agentes" - -#~ msgid "Desc" -#~ msgstr "Desc" - -#~ msgid "Wrong module type" -#~ msgstr "Tipo inválido de módulo" - -#~ msgid "Agents in group" -#~ msgstr "Agentes no grupo" - -#~ msgid "Info" -#~ msgstr "Info" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Este servidor não tem nenhuma tarefa de reconhecimento designada" - -#~ msgid "No layouts found" -#~ msgstr "Nenhum layout encontrado" - -#~ msgid "Network Map" -#~ msgstr "Mapa de rede" - -#~ msgid "Search value" -#~ msgstr "Localizar valor" - -#~ msgid "Events generated -by module-" -#~ msgstr "Eventos gerados - pelo módulo -" - -#~ msgid "Flag" -#~ msgstr "Sinalizar" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitores indefinidos" - -#~ msgid "Free text" -#~ msgstr "Texto livre" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Este agente não tem nenhum monitor ativado" - -#~ msgid "Modules critical" -#~ msgstr "Módulos críticos" - -#~ msgid "Modules normal" -#~ msgstr "Módulos normais" - -#~ msgid "Modules warning" -#~ msgstr "Módulos de alerta" - -#~ msgid "Agents down" -#~ msgstr "Agentes indisponíveis" - -#~ msgid "from" -#~ msgstr "de" - -#~ msgid "SLA view" -#~ msgstr "Visualizar SLA" - -#~ msgid "User-defined SLA items" -#~ msgstr "Items de SLA definidos por usuário" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "SLA automático para monitores" - -#~ msgid "No simple alerts found" -#~ msgstr "Nenhum alerta simples encontrado" - -#~ msgid "Monitors not init" -#~ msgstr "Monitores não inicializados" - -#~ msgid "Single alerts" -#~ msgstr "Alertas individuais" - -#~ msgid "System Events" -#~ msgstr "Eventos do sistema" - -#~ msgid "Uninitialized modules" -#~ msgstr "Módulos não inicializados" - -#~ msgid "Total Agents" -#~ msgstr "Total de agentes" - -#~ msgid "Only pending" -#~ msgstr "Apenas pendentes" - -#~ msgid "Error updating export target" -#~ msgstr "Erro ao atualizar destino a exportar" - -#~ msgid "minute" -#~ msgstr "minuto" - -#~ msgid "Last name" -#~ msgstr "Sobrenome" - -#~ msgid "First name" -#~ msgstr "Primeiro nome" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "O alerta deve ser disparado quando o valor casar " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "O alerta deve disparar se o valor não for " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "O alerta deve disparar quando o valor estiver entre e " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "O alerta deve disparar se o valor não casar " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "O alerta deve disparar se o valor for " - -#~ msgid "Sumatory" -#~ msgstr "Soma" - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "O alerta deve disparar quando o valor não estiver entre e " - -#~ msgid "Monitors normal" -#~ msgstr "Monitores normais" - -#~ msgid "Monitors critical" -#~ msgstr "Monitores críticos" - -#~ msgid "Monitors warning" -#~ msgstr "Monitores com aviso" - -#~ msgid "Module assignment" -#~ msgstr "Designação de módulo" - -#~ msgid "Extra options" -#~ msgstr "Opções extras" - -#~ msgid "SNMP server" -#~ msgstr "Servidor SNMP" - -#~ msgid "Search text" -#~ msgstr "Procurar texto" - -#~ msgid "MD5 check" -#~ msgstr "Checagem MD5" - -#~ msgid "Alerts Fired" -#~ msgstr "Alertas disparados" - -#~ msgid "Pandora system management" -#~ msgstr "Gerenciamento do sistema Pandora" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "WMI Query" -#~ msgstr "Consulta WMI" - -#~ msgid "Last hour" -#~ msgstr "Última hora" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Últimos %s dias" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hora" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d horas" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d dia" - -#~ msgid "Correlation" -#~ msgstr "Correlação" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d semanas" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d semana" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dias" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mês" - -#~ msgid "Delete modules" -#~ msgstr "Apagar módulos" - -#~ msgid "Delete alerts" -#~ msgstr "Apagar alertas" - -#~ msgid "Edit modules" -#~ msgstr "Editar módulos" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "Houve um erro ao apagar o agente, a operação foi cancelada" - -#~ msgid "Could not delete agent" -#~ msgstr "Não foi possível apagar agente" - -#~ msgid "Delete agents" -#~ msgstr "Apagar agentes" - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "O alerta será dado quando o valor estiver abaixo de " - -#~ msgid "No agent was given" -#~ msgstr "Não foi fornecido o agente" - -#~ msgid "No name was given" -#~ msgstr "Não foi fornecido o nome" - -#~ msgid "Add condition" -#~ msgstr "Adicionar condição" - -#~ msgid "Operator" -#~ msgstr "Operador" - -#~ msgid "No conditions were given" -#~ msgstr "Não foram fornecidas as condições" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "Não há servidores configurados no banco de dados" - -#~ msgid "Alerts disabled" -#~ msgstr "Alertas desativados" - -#~ msgid "Event not validated" -#~ msgstr "Evento não validado" - -#~ msgid "Visual map wizard" -#~ msgstr "Assistente de mapa visual" - -#~ msgid "Image size (px)" -#~ msgstr "Tamanho da imagem (px)" - -#~ msgid "Image range (px)" -#~ msgstr "Área da imagem (px)" - -#~ msgid "No layout with this id found" -#~ msgstr "Nenhum layout com esse id encontrado" - -#~ msgid "Deleting file" -#~ msgstr "Apagando arquivo" - -#~ msgid "Visual configuration" -#~ msgstr "Configuração visual" - -#~ msgid "Deleting" -#~ msgstr "Apagando" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "O diretório atual não pode ser escrito pelo Servidor HTTP" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Por favor verifique se o diretório atual tem permissão de escrita para o " -#~ "Servidor HTTP" - -#~ msgid "Read agent information" -#~ msgstr "Ler informação do agente" - -#~ msgid "Create incidents" -#~ msgstr "Criar incidente" - -#~ msgid "Read incidents" -#~ msgstr "Ler incidentes" - -#~ msgid "Manage user rights" -#~ msgstr "Gerenciar direitos de usuário" - -#~ msgid "Remote configuration management" -#~ msgstr "Gerenciamento da configuração remota" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Alvo removido com sucesso" - -#~ msgid "attach_error" -#~ msgstr "erro no armazenamento" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Diretório criado %s" - -#~ msgid "Upload file" -#~ msgstr "Subir arquivo" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Fazendo cópia do arquivo de configuração para" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "Há um erro ao apagar os alertas, a operação será cancelada" - -#~ msgid "Could not delete alerts" -#~ msgstr "Não é possivel apagar os alertas" - -#~ msgid "Configuration management" -#~ msgstr "Gerenciamento de configuração" - -#~ msgid "Could not delete modules" -#~ msgstr "Não é possivewl apagar os módulos" - -#~ msgid "Massive agent deletion" -#~ msgstr "Apagamento em massa dos módulos" - -#~ msgid "Network component" -#~ msgstr "Componente de rede" - -#~ msgid "Assigned actions" -#~ msgstr "Ações atribuídas" - -#~ msgid "Assigned to" -#~ msgstr "Atribuída para" - -#~ msgid "Configure correlated alert" -#~ msgstr "Configuração de alertas correlacionados" - -#~ msgid "Correlated alerts" -#~ msgstr "Alertas correlacionados" - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Compactar cabeçalho em CSS e JS" - -#~ msgid "Database sanity tool" -#~ msgstr "Ferramenta de verificação da base de dados" - -#~ msgid "Select an element to delete:" -#~ msgstr "Selecione o elemento para apagar" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Por favor, selecione uma imagem ou digite um nome para o elemento" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Digite no mínimo dois caracteres para busca" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Modulos em Atraso / Delay Maximo (segundos)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Módulos em execução neste servidor / Total de modulos deste tipo" - -#~ msgid "Graphs management" -#~ msgstr "Gestão Gráficos" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Nenhum agente selecionado, selecione agente" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Agente Monitor keepalive" - -#~ msgid " seconds." -#~ msgstr " Segundos" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "Local modules rate" -#~ msgstr "Taxa de módulos local" - -#~ msgid "Remote modules rate" -#~ msgstr "Taxa de módulos remoto" - -#~ msgid "ALERTS FIRED" -#~ msgstr "ALERTAS DISPARADOS" - -#~ msgid "The colours meaning:" -#~ msgstr "A cor significa:" - -#~ msgid "Modules groups" -#~ msgstr "Grupos de módulos" - -#~ msgid "Flash charts" -#~ msgstr "A" - -#~ msgid "Module Down" -#~ msgstr "Módulo down" - -#~ msgid "Module Up" -#~ msgstr "Módulo up" - -#~ msgid "Report name is empty" -#~ msgstr "Nome do relatório está vazio" - -#~ msgid "No items defined" -#~ msgstr "Nenhum item definido" - -#~ msgid "Create incident from event" -#~ msgstr "Criar incidente para o evento" - -#~ msgid "Config" -#~ msgstr "Configurar" - -#~ msgid "Create networkmap" -#~ msgstr "Criar mapa de rede" - -#~ msgid "Tree View" -#~ msgstr "Visualização em árvore" - -#~ msgid "Illegal query" -#~ msgstr "Consulta ilegal" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Módulos em estado crítico ou em alerta" - -#~ msgid "Modules under those conditions" -#~ msgstr "Módulos sob essas condições" - -#~ msgid "There are no" -#~ msgstr "Não há" - -#~ msgid "Last 8 hours" -#~ msgstr "Últimas 8 horas" - -#~ msgid "Inside limits" -#~ msgstr "Limites internos" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Aviso: Quano você altera a posição do Agente, o agente automaticamente ativa " -#~ "a opção 'Ignore novos dados GIS'" - -#~ msgid "Module macros" -#~ msgstr "Macros do módulo" - -#~ msgid "Decrease Weight" -#~ msgstr "Diminuir Peso" - -#~ msgid "Increase Weight" -#~ msgstr "Aumentar Peso" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Buscar por estes campos descrição, OID, Valor personalizado, Agente SNMP " -#~ "(IP), Valor simples, cada OID/Dados Personalizados." - -#~ msgid "License Info" -#~ msgstr "Informação de licença" - -#~ msgid "License info" -#~ msgstr "Informação de licença" - -#~ msgid "Form filter" -#~ msgstr "Formulário de filtro" - -#~ msgid "Agent detailed event" -#~ msgstr "Evento detalhado por agente" - -#~ msgid "Configuration report for group " -#~ msgstr "Relatório de configuração para o grupo " - -#~ msgid "Group detailed event" -#~ msgstr "Eventos detalhado por grupo" - -#~ msgid "Configuration report for agent " -#~ msgstr "Relatório de configuração para o agente " - -#~ msgid "Agents detailed event" -#~ msgstr "Evento detalhado por agentes" - -#~ msgid "Plannified downtime" -#~ msgstr "Indisponibilidade planejada" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Devido a restrições de segurança, você não pode usar alguns tokens ou " -#~ "palavras" - -#~ msgid "or" -#~ msgstr "ou" - -#~ msgid "On the edge" -#~ msgstr "Na borda" - -#~ msgid "Average" -#~ msgstr "Média" - -#~ msgid "User defined graph" -#~ msgstr "Gráfico definido pelo usuário" - -#~ msgid "Module detailed event" -#~ msgstr "Evento detalhado por módulo" - -#~ msgid "Modules over or equal to" -#~ msgstr "Módulos acima ou iguais a" - -#~ msgid "Modules less or equal to" -#~ msgstr "Módulos abaixo ou iguais a" - -#~ msgid "Exception - Equal to" -#~ msgstr "Exceção - Igual a" - -#~ msgid "Modules over" -#~ msgstr "Módulos acima" - -#~ msgid "Modules less" -#~ msgstr "Módulos abaixo" - -#~ msgid "Group configuration: " -#~ msgstr "Configuração de grupo: " - -#~ msgid "Modules normal status" -#~ msgstr "Módulos com estado normal" - -#~ msgid "Modules not equal to" -#~ msgstr "Módulos não iguais a" - -#~ msgid "Modules equal to" -#~ msgstr "Módulos iguais a" - -#~ msgid " MODULES" -#~ msgstr " MÓDULOS" - -#~ msgid "Agent configuration: " -#~ msgstr "Configuração do agente: " - -#~ msgid "Manage policies" -#~ msgstr "Gerenciar políticas" - -#~ msgid "Inventory modules" -#~ msgstr "Módulos de inventário" - -#~ msgid "SNMP operations" -#~ msgstr "Operações SNMP" - -#~ msgid "Collections" -#~ msgstr "Coleções" - -#~ msgid "Policies operations" -#~ msgstr "Operações de políticas" - -#~ msgid "Local components" -#~ msgstr "Componentes locais" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "Não foi possível criar o alvo de exportação: O usuário e senha devem ser " -#~ "preenchidos com o modo FTP" - -#~ msgid "Log Collector" -#~ msgstr "Coletor de logs" - -#~ msgid "Event alerts" -#~ msgstr "Alertas de eventos" - -#~ msgid "Skins" -#~ msgstr "Skins" - -#~ msgid "Service updated successfully" -#~ msgstr "Serviço atualizado com sucesso" - -#~ msgid "Error creating service" -#~ msgstr "Erro ao criar serviço" - -#~ msgid "Service created successfully" -#~ msgstr "Serviço criado com sucesso" - -#~ msgid "Create Service" -#~ msgstr "Criar Serviço" - -#~ msgid "Error updating service" -#~ msgstr "Erro ao atualizar serviço" - -#~ msgid "Not found" -#~ msgstr "Não localizado" - -#~ msgid "New Service" -#~ msgstr "Novo Serviço" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Estes valores são os padrão porque o serviço está no modo de cálculo " -#~ "automático" - -#~ msgid "Config Service" -#~ msgstr "Configurar Serviço" - -#~ msgid "Config Elements" -#~ msgstr "Configurar Elementos" - -#~ msgid "View Service" -#~ msgstr "Visualizar Serviço" - -#~ msgid "Service map" -#~ msgstr "Mapa de Serviço" - -#~ msgid "Agent to store data" -#~ msgstr "Agente para armazenamento de dados" - -#~ msgid "S.L.A. interval" -#~ msgstr "Intervalo de A.N.S." - -#~ msgid "Error empty module" -#~ msgstr "Erro módulo vazio" - -#~ msgid "Edit service elements" -#~ msgstr "Editar elementos do serviço" - -#~ msgid "Error empty service" -#~ msgstr "Erro serviço vazio" - -#~ msgid "Error empty agent" -#~ msgstr "Erro agente vazio" - -#~ msgid "Warning Service alert" -#~ msgstr "Alerta de Serviço em Advertência" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Por favor, defina o limite entre 0 e 100." - -#~ msgid "SLA critical service alert" -#~ msgstr "Alerta de ANS de serviço crítico" - -#~ msgid "Service element created successfully" -#~ msgstr "Elemento de serviço criado com sucesso" - -#~ msgid "S.L.A. limit" -#~ msgstr "Limite de A.N.S." - -#~ msgid "Critical Service alert" -#~ msgstr "Alerta de Serviço Crítico" - -#~ msgid "Error creating service element" -#~ msgstr "Erro ao criar elemento de serviço" - -#~ msgid "Warning weight" -#~ msgstr "Peso de alerta" - -#~ msgid "Error updating service element" -#~ msgstr "Erro ao atualizar elemento de serviço" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Elemento de serviço removido com sucesso" - -#~ msgid "Error deleting service element" -#~ msgstr "Erro ao remover elemento de serviço" - -#~ msgid "Service element updated successfully" -#~ msgstr "Elemento de serviço atualizado com sucesso" - -#~ msgid "First select an agent" -#~ msgstr "Primeiro selecione um agente" - -#~ msgid "Critical weight" -#~ msgstr "Peso crítico" - -#~ msgid "Edit element service" -#~ msgstr "Editar elemento de serviço" - -#~ msgid "Create element service" -#~ msgstr "Criar elemento de serviço" - -#~ msgid "Using local component" -#~ msgstr "Usando componente local" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "" -#~ "As mudanças neste campo estão relacionadas com os dados de configuração." - -#~ msgid "Extended info:" -#~ msgstr "Informações adicionais:" - -#~ msgid "Security check is fail." -#~ msgstr "A verificação de segurança é falha." - -#~ msgid "Security check is ok." -#~ msgstr "A verificação de segurança está ok." - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Talvez remover os dados adicionais ou os dados de auditoria esteja antes da " -#~ "tabela tsession_extended." - -#~ msgid "Show extended info" -#~ msgstr "Exibir informações adicionais" - -#~ msgid "Show configuration data" -#~ msgstr "Exibir dados de configuração" - -#~ msgid "Ok weight" -#~ msgstr "Peso Ok" - -#~ msgid "Unknown weight" -#~ msgstr "Peso desconhecido" - -#~ msgid "Hide configuration data" -#~ msgstr "Esconder dados de configuração" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Verificar a estrutura correta da configuração de dados" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "A primeira linha deve ser \"module_begin\"" - -#~ msgid "Data configuration is empty" -#~ msgstr "A configuração de dados está vazia" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "A última linha deve ser \"module_end\"" - -#~ msgid "Data configuration" -#~ msgstr "Configuração dos dados" - -#~ msgid "Load basic" -#~ msgstr "Carregar básico" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Carregar uma estrutura básica na configuração de dados" - -#~ msgid "Check" -#~ msgstr "Verificar" - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "O nome está faltando. Por favor, adicione a linha com \"module_name " -#~ "nomedoseumódulo\" à configuração dos dados" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Plug-in adicionado com sucesso" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "O plug-in não pôde ser adicionado" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Plug-in removido com sucesso" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "O plug-in não pôde ser removido" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Erro de sintaxe, por favor, verifique a configuração de dados." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "A configuração de dados foi feita corretamente" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "O tipo está errado. Por favor, defina um tipo correto" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Existe uma linha com um token desconhecido 'token_fail'." - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "O tipo está faltando. Por favor, adicione a linha com \"module_type " -#~ "seutipodemodulo\" à configuração de dados" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Plug-in desabilitado com sucesso" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "O plug-in não pôde ser desabilitado" - -#~ msgid "New plug-in" -#~ msgstr "Novo plug-in" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Módulo de inventário forçado com sucesso" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "O plug-in não pôde ser habilitado" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Plug-in habilitado com sucesso" - -#~ msgid "Error adding inventory module" -#~ msgstr "Erro ao adicionar módulo de inventário" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Módulo de inventário adicionado com sucesso" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Erro ao remover módulo de inventário" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Módulo de inventário removido com sucesso" - -#~ msgid "Unable to create the collection" -#~ msgstr "Não foi possível criar a coleção" - -#~ msgid "7 days" -#~ msgstr "7 dias" - -#~ msgid "Update all" -#~ msgstr "Atualizar tudo" - -#~ msgid "Manager configuration > New" -#~ msgstr "Configuração de gerenciador > Novo" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Configuração de gerenciador > Editar " - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Módulo de inventário atualizado com sucesso" - -#~ msgid "Inventory module error" -#~ msgstr "Erro no módulo de inventário" - -#~ msgid "Target" -#~ msgstr "Destino" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Erro ao forçar módulo de inventário" - -#~ msgid "Error updating inventory module" -#~ msgstr "Erro ao atualizar módulo de inventário" - -#~ msgid "Another collection with the same short name" -#~ msgstr "Outra coleção com o mesmo nome curto" - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "O nome curto da coleção é o nome do diretório no diretório de anexo e na " -#~ "coleção de pacotes." - -#~ msgid "Short name:" -#~ msgstr "Nome curto:" - -#~ msgid "Recreate file" -#~ msgstr "Recriar arquivo" - -#~ msgid "Unable to edit the collection." -#~ msgstr "Não foi possível editar a coleção." - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Não foi possível editar a coleção, nome vazio." - -#~ msgid "Correct create collection" -#~ msgstr "Criação de coleção correta" - -#~ msgid "Unable to create the collection." -#~ msgstr "Não foi possível criar a coleção." - -#~ msgid "Empty name" -#~ msgstr "Nome vazio" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Caracteres inválidos no nome curto" - -#~ msgid "Add module to operations as divide" -#~ msgstr "Adicionar módulo a operação como dividir" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "O nome curto deve conter apenas caracteres alfanuméricos, - ou _." - -#~ msgid "Synthetic average" -#~ msgstr "Média sintética" - -#~ msgid "Group filter" -#~ msgstr "Agrupar filtro" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Vazio para nome curto padrão fc_X onde X é o identificador da coleção." - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Adicionar módulo a operação como deduzir" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Adicionar módulo a operação como multiplicar " - -#~ msgid "Fixed value" -#~ msgstr "Valor fixo" - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Aritmética sintética" - -#~ msgid "Add module to operation as add" -#~ msgstr "Adicionar módulo a operação como adicionar" - -#~ msgid "Netflow filter" -#~ msgstr "Filtro Netflow" - -#~ msgid "Remove selected modules" -#~ msgstr "Remover módulos selecionados" - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Erro: O arquivo de configuração do agente não pode ser escrito." - -#~ msgid "Select Service" -#~ msgstr "Selecionar serviço" - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Erro: O arquivo de configuração do agente não é legível" - -#~ msgid "Select filter" -#~ msgstr "Selecionar filtro" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Remover módulos selecionados da pilha de operações" - -#~ msgid "Add module to average operation" -#~ msgstr "Adicionar módulo a operação média" - -#~ msgid "Move up selected modules" -#~ msgstr "Mover módulos selecionados para cima" - -#~ msgid "Move down selected modules" -#~ msgstr "Mover módulos selecionados para baixo" - -#~ msgid "No module was found" -#~ msgstr "Nenhum módulo encontrado" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Remover arquivos de agentes de configuração remota no Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "Este agente não tem uma configuração remota, por favor, defina uma." - -#~ msgid "Succesful add the collection" -#~ msgstr "Coleção adicionada com sucesso" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Adição de coleção malsucedida" - -#~ msgid "Short Name" -#~ msgstr "Nome Curto" - -#~ msgid "Show files" -#~ msgstr "Exibir arquivos" - -#~ msgid "Outdate" -#~ msgstr "Obsoletar" - -#~ msgid "Dir" -#~ msgstr "Dir" - -#~ msgid "Add module" -#~ msgstr "Adicionar módulo" - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "Por favor, primeiro salve uma nova coleção antes de carregar arquivos." - -#~ msgid "Create a new web Server module" -#~ msgstr "Criar um novo módulo de servidor web" - -#~ msgid "Correct update file." -#~ msgstr "Atualização de arquivos correta." - -#~ msgid "Compatibility mode" -#~ msgstr "Modo de compatibilidade" - -#~ msgid "Back to file explorer" -#~ msgstr "Voltar para o navegador de arquivos" - -#~ msgid "Files in " -#~ msgstr "Arquivos em " - -#~ msgid "No source agent selected" -#~ msgstr "Nenhum agente fonte selecionado" - -#~ msgid "Incorrect update file." -#~ msgstr "Atualização de arquivos incorreta." - -#~ msgid " md5 file" -#~ msgstr " arquivo md5" - -#~ msgid "To agent(s):" -#~ msgstr "Para agentes(s):" - -#~ msgid "Error copying md5 file " -#~ msgstr "Erro ao copiar arquivo md5 " - -#~ msgid "Copied " -#~ msgstr "Copiado " - -#~ msgid "Web checks" -#~ msgstr "Verificações web" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Carregar uma estrutura básica nas Verificações Web" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Verifique a estrutura correta do WebCheck" - -#~ msgid "Web server module" -#~ msgstr "Módulo de servidor web" - -#~ msgid "Error copying " -#~ msgstr "Erro ao copiar " - -#~ msgid " config file" -#~ msgstr " arquivo de configuração" - -#~ msgid "HTTP auth (server)" -#~ msgstr "Autenticação HTTP (servidor)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "Autenticação HTTP (senha)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "A primeira linha deve ser \"task_begin\"" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "Autenticação HTTP (reino)" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "A última linha deve ser \"task_end\"" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "A configuração de Webchecks está vazia" - -#~ msgid "Agent browser id" -#~ msgstr "Identificador do navegador de agentes" - -#~ msgid "Proxy URL" -#~ msgstr "URL do Proxy" - -#~ msgid "HTTP auth (login)" -#~ msgstr "Autenticação HTTP (login)" - -#~ msgid "Requests" -#~ msgstr "Solicitações" - -#~ msgid "Can not create collection package." -#~ msgstr "Não foi possível criar pacote de coleções." - -#~ msgid "Successful create collection package." -#~ msgstr "Pacote de coleções criado com sucesso." - -#~ msgid "Error: recreate file " -#~ msgstr "Erro: arquivo recriado " - -#~ msgid "Success: recreate file" -#~ msgstr "Sucesso: arquivo recriado" - -#~ msgid "Manager collection" -#~ msgstr "Coleção de gerente" - -#~ msgid "Collections Management" -#~ msgstr "Gerenciamento de Coleções" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Falha ao criar o diretório: %s" - -#~ msgid "Web checks are built correctly" -#~ msgstr "As verificações web estão corretamente construídas" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Arquivo de coleção está maior que o limite (" - -#~ msgid "No files in collection" -#~ msgstr "Sem arquivos na coleção" - -#~ msgid "Apply changes" -#~ msgstr "Aplicar mudanças" - -#~ msgid "Re-Apply changes" -#~ msgstr "Reaplicar mudanças" - -#~ msgid "Delete collection" -#~ msgstr "Remover coleção" - -#~ msgid "List templates" -#~ msgstr "Listar modelos" - -#~ msgid "Edit template" -#~ msgstr "Editar modelo" - -#~ msgid "Create template" -#~ msgstr "Criar modelo" - -#~ msgid "Are you sure to delete?" -#~ msgstr "Tem certeza de que quer remover?" - -#~ msgid "SLA max value" -#~ msgstr "valor máx ANS" - -#~ msgid "SLA min Value" -#~ msgstr "Valor mín ANS" - -#~ msgid "SLA min value" -#~ msgstr "valor mín ANS" - -#~ msgid "SLA max Value" -#~ msgstr "Valor max ANS" - -#~ msgid "Graph template editor" -#~ msgstr "Editor de modelos de gráficos" - -#~ msgid "Exact match" -#~ msgstr "Coincidência exata" - -#~ msgid "Elements to apply" -#~ msgstr "Elementos a aplicar" - -#~ msgid "Sum" -#~ msgstr "Total" - -#~ msgid "SLA Limit Value" -#~ msgstr "Valor Limite do ANS" - -#~ msgid "SLA Limit %" -#~ msgstr "Limite do ANS em %" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "There are no defined graph templates" -#~ msgstr "Não há modelos de gráficos definidos" - -#~ msgid "Graph template management" -#~ msgstr "Gerenciamento de modelos de gráficos" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Limpeza bem sucedida" - -#~ msgid "Cleanup error" -#~ msgstr "Erro na limpeza" - -#~ msgid "Wizard template" -#~ msgstr "Modelo de assistente" - -#~ msgid "Undo agents to template" -#~ msgstr "Desfazer agentes do modelo" - -#~ msgid "Add agents to template" -#~ msgstr "Adicionar agentes ao modelo" - -#~ msgid "Please set template distinct than " -#~ msgstr "Por favor, defina modelo diferente de " - -#~ msgid "Apply template" -#~ msgstr "Aplicar modelo" - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Isto removerá todos os relatórios criados em aplicações de modelos " -#~ "anteriores. Você deseja continuar?" - -#~ msgid "Clean up template" -#~ msgstr "Modelo de limpeza" - -#~ msgid "Filter agent" -#~ msgstr "Filtrar agente" - -#~ msgid "Agents available" -#~ msgstr "Agentes disponíveis" - -#~ msgid "Select all" -#~ msgstr "Selecionar todos" - -#~ msgid "Agents to apply" -#~ msgstr "Agentes a aplicar" - -#~ msgid "Sucessfully applied" -#~ msgstr "Aplicado com sucesso" - -#~ msgid "Successfully operation" -#~ msgstr "Operação bem sucedida" - -#~ msgid ": Edit: " -#~ msgstr ": Editar: " - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Construtor de modelos MySQL personalizados" - -#~ msgid ": Create new custom" -#~ msgstr ": Criar novo personalizado" - -#~ msgid "Create custom SQL" -#~ msgstr "Criar SQL personalizado" - -#~ msgid "Could not be applied" -#~ msgstr "Não pôde ser aplicado" - -#~ msgid "reports" -#~ msgstr "relatórios" - -#~ msgid "items" -#~ msgstr "itens" - -#~ msgid "Could not be operation" -#~ msgstr "Não pôde realizar operação" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "Marque se você deseja que o nome do módulo combine literalmente" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Expressão regular case insensitive para o nome do módulo. Por exemplo: se " -#~ "você usar este campo com \"Combinação exata de módulo\" habilitada então " -#~ "este campo tem de ser preenchido literalmente com o nome do módulo, se não, " -#~ "você pode usar uma expressão regular. Exemplo: .*uso.* combinará: cpu_uso, " -#~ "vram uso na máquina 1." - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network.* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Expressão regular case insensitive para o nome do agente. Por exemplo: " -#~ "Rede.* combinará com os seguintes nomes de agentes: rede_agente1, RedE " -#~ "VERIFICAÇÕES" - -#~ msgid "Query SQL" -#~ msgstr "Consulta SQL" - -#~ msgid "Module exact match" -#~ msgstr "Combinação exata de módulo" - -#~ msgid "Create report per agent" -#~ msgstr "Criar relatório por agente" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "" -#~ "Selecione os módulos a combinar quando criar um relatório para agentes" - -#~ msgid "Modules to match" -#~ msgstr "Módulos a combinar" - -#~ msgid "SQL preview" -#~ msgstr "Pré-visualização SQL" - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Por favor, salve o modelo de ANS para iniciar a adicionar itens nesta lista." - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Módulos a combinar (Texto livre)" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Texto livre para filtrar os módulos de agentes quando aplicar este modelo." - -#~ msgid "Create a graph for each agent" -#~ msgstr "Criar um gráfico para cada agente" - -#~ 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 "" -#~ "Se estiver marcado, a expressão regular ou nome dos módulos combinam apenas " -#~ "com cada agente, ao invés cria um gráfico grande com todos os módulos de " -#~ "todos os agentes." - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "Por favor, salve o modelo para começar a adicionar itens a esta lista." - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Todos agentes de políticas adicionados à fila de remoção" - -#~ msgid "Template updated successfully" -#~ msgstr "Modelo atualizado com sucesso" - -#~ msgid "Error updating template" -#~ msgstr "Erro ao atualizar modelo" - -#~ msgid "Not literally" -#~ msgstr "Não literalmente" - -#~ msgid "" -#~ "Case insensitive regular expression for agent name. For example: Network* " -#~ "will match with the following agent names: network_agent1, NetworK CHECKS" -#~ msgstr "" -#~ "Expressão regular case insensitive para nome do agente. Por exemplo: Rede* " -#~ "combinará com os seguintes nomes de agentes: rede_agente1, RedE VERIFICAÇÕES" - -#~ msgid "Policy updated" -#~ msgstr "Política atualizada" - -#~ msgid "Policies Management" -#~ msgstr "Gerenciamento de Políticas" - -#~ msgid "a" -#~ msgstr "um" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "Agentes de políticas não podem ser adicionados à fila de remoção" - -#~ msgid "Delete all agents" -#~ msgstr "Remover todos os agentes" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Todos os agentes de políticas serão removidos" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "Uma política com agentes não pode ser removida. Limpe-a antes" - -#~ msgid "Pending update policy" -#~ msgstr "Atualização de política pendente" - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Se você alterar essa descrição, você deve alterar no texto da configuração " -#~ "de dados." - -#~ msgid "Deleting all policy agents" -#~ msgstr "Removendo todos os agentes de políticas" - -#~ msgid "Pending update policy only database" -#~ msgstr "Atualização de política pendente apenas banco de dados" - -#~ msgid "Linking" -#~ msgstr "Relacionando a" - -#~ msgid "Queue" -#~ msgstr "Fila" - -#~ msgid "External alerts" -#~ msgstr "Alertas externos" - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Remoção revertida com sucesso" - -#~ msgid "Could not be added module." -#~ msgstr "Não foi possível adicionar módulo." - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "O tipo do módulo na configuração de dados está vazia, use da caixa de " -#~ "seleção do formulário." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "O tipo do módulo na configuração de dados está vazia, use do campo texto do " -#~ "formulário." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "" -#~ "Não foi possível adicionar módulo(s). Você deve selecionar uma política" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Módulo(s) (%s/%s) adicionados com sucesso à política %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "Não foi possível adicionar os módulo(s) (%s/%s) à política %s" - -#~ msgid "Successfully added module." -#~ msgstr "Módulo adicionado com sucesso." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Adicionado com sucesso aos módulos com remoção pendente. Será removido na " -#~ "próxima aplicação de política." - -#~ msgid "Could not be reverted" -#~ msgstr "Não pôde ser revertido" - -#~ msgid "Local component" -#~ msgstr "Componente local" - -#~ msgid "Undo deletion" -#~ msgstr "Desfazer remoção" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Copiar módulos selecionados para política: " - -#~ msgid "Variable" -#~ msgstr "Variável" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Não pôde ser adicionado à fila de remoção" - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Adicionado com sucesso à fila de remoção" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Adicionado com sucesso aos agentes pendentes de remoção. Será removido na " -#~ "próxima aplicação de política." - -#~ msgid "Please select any module to copy" -#~ msgstr "Por favor, selecione qualquer módulo para cópia" - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Tem certeza que deseja copiar módulos na política?\\n" - -#~ msgid "Agents in Policy" -#~ msgstr "Agentes na Política" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "Não pôde ser removidos dos agentes pendentes de remoção" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Removido dos agentes pendentes de remoção com sucesso" - -#~ msgid "Delete agents from policy" -#~ msgstr "Remover agentes de política" - -#~ msgid "Add agents to policy" -#~ msgstr "Adicionar agentes a política" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Módulos não vinculados" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Applied" -#~ msgstr "Aplicado" - -#~ msgid "Not applied" -#~ msgstr "Não aplicado" - -#~ msgid "Deleting from policy" -#~ msgstr "Removendo da política" - -#~ msgid "Applying policy" -#~ msgstr "Aplicando política" - -#~ msgid "Need apply" -#~ msgstr "Precisa de aplicação" - -#~ msgid "Last application" -#~ msgstr "Última aplicaçào" - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Adicionado com sucesso à remoção de coleções. Será removido na próxima " -#~ "aplicação de política." - -#~ msgid "Add to apply queue" -#~ msgstr "Adicionar à fila de aplicação" - -#~ msgid "Policy applied" -#~ msgstr "Política aplicada" - -#~ msgid "Add to delete queue" -#~ msgstr "Adicionar à fila de remoção" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Este agente não pode ser configurado remotamente" - -#~ msgid "E/D" -#~ msgstr "E/D" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Adicionado com sucesso aos alertas pendentes de remoção. Será removido na " -#~ "próxima aplicação de política." - -#~ msgid "Created successfuly" -#~ msgstr "Criado(a) com sucesso" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Ação removida com sucesso" - -#~ msgid "Added action successfuly" -#~ msgstr "Ação adicionada com sucesso" - -#~ msgid "Policy module" -#~ msgstr "Módulo de política" - -#~ msgid "Module is not selected" -#~ msgstr "O módulo não está selecionado" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Operação removida da fila com sucesso" - -#~ msgid "Add policy" -#~ msgstr "Adicionar política" - -#~ msgid "Select inventory module" -#~ msgstr "Selecione módulo de inventário" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Erro: Atualização de módulos vinculados a política" - -#~ msgid "Free text for filter" -#~ msgstr "Texto livre a filtrar" - -#~ msgid "List of modules unlinked" -#~ msgstr "Lista de módulos não vinculados" - -#~ msgid "Linking modules" -#~ msgstr "Vinculando módulos" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Sucesso: Atualização de módulos vinculados a política" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Texto livre a filtrar (*)" - -#~ msgid "Link pending modules" -#~ msgstr "Vincular módulos pendentes" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Adicionar à fila de aplicação apenas para banco de dados" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "A operação não pode ser removida da fila" - -#~ msgid "Update pending agents" -#~ msgstr "Atualizar agentes pendentes" - -#~ msgid "Update pending" -#~ msgstr "Atualização pendente" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Operações não podem ser removidas da fila" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Operações removidas da fila com sucesso" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Será vinculado na próxima aplicação da política" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "A vinculação será feita na próxima aplicação da política" - -#~ msgid "Unlink pending modules" -#~ msgstr "Desvincular módulos pendentes" - -#~ msgid "Delete pending plugins" -#~ msgstr "Remover plugins pendentes" - -#~ msgid "Delete pending file collections" -#~ msgstr "Remover coleções de arquivos pendentes" - -#~ msgid "Advices" -#~ msgstr "Recomendações" - -#~ msgid "Delete pending" -#~ msgstr "Remover pendente" - -#~ msgid "Delete pending modules" -#~ msgstr "Remover módulos pendentes" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Remover módulos de inventário pendentes" - -#~ msgid "Delete pending agents" -#~ msgstr "Remover agentes pendentes" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Será removido na próxima aplicação de política" - -#~ msgid "Delete pending alerts" -#~ msgstr "Remover alertas pendentes" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Remover alertas externos pendentes" - -#~ msgid "Apply (only database)" -#~ msgstr "Aplicar (apenas banco de dados)" - -#~ msgid "Finished" -#~ msgstr "Finalizado" - -#~ msgid "Delete from queue" -#~ msgstr "Remover da fila" - -#~ msgid "Empty queue" -#~ msgstr "Fila vazia" - -#~ msgid "This operation could take a long time" -#~ msgstr "Esta operação pode levar um longo tempo" - -#~ msgid "Apply (database and files)" -#~ msgstr "Aplicar (banco de dados e arquivos)" - -#~ msgid "Complete" -#~ msgstr "Concluído" - -#~ msgid "Queue summary" -#~ msgstr "Sumário da fila" - -#~ msgid "Queue filter" -#~ msgstr "Filtro da fila" - -#~ msgid "Incomplete" -#~ msgstr "Incompleto" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Operação duplicada ou incompatível na fila" - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Adicionado aos plugins pendentes de remoção com sucesso. Será removida na " -#~ "próxima aplicação de política." - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Operação adicionada à fila com sucesso" - -#~ msgid "Delete all" -#~ msgstr "Remover tudo" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "A operação não pode ser adicionada à fila" - -#~ msgid "Duplicated alert" -#~ msgstr "Alerta duplicado" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Não pode ser adicionado aos plugins pendentes de remoção." - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Alert Template" -#~ msgstr "Modelo de alerta" - -#~ msgid "Error validating alert(s)" -#~ msgstr "Erro na validação dos alertas" - -#~ msgid "Error processing action" -#~ msgstr "Erro no processamento da ação" - -#~ msgid "Builder event alert" -#~ msgstr "Construtor de alerta de evento" - -#~ msgid "List event alerts" -#~ msgstr "Listar alertas de eventos" - -#~ msgid "Modules in policy agents" -#~ msgstr "Módulos em agentes de política" - -#~ msgid "Move down" -#~ msgstr "Mover para baixo" - -#~ msgid "Move up" -#~ msgstr "Mover para cima" - -#~ msgid "Val." -#~ msgstr "Val." - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Não pode ser criado, por favor, preencha o nome do alerta" - -#~ msgid "Please Read" -#~ msgstr "Por favor, leia" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Modo de avaliação de regra" - -#~ msgid "View associated rules" -#~ msgstr "Ver regras associadas" - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Este campo será processado com expressão regular" - -#~ msgid "User comment" -#~ msgstr "Comentário de usuário" - -#~ msgid "Configure event rule" -#~ msgstr "Configurar regra de evento" - -#~ msgid "List event rules" -#~ msgstr "Listar regras de eventos" - -#~ msgid "Configure event alert" -#~ msgstr "Configurar alerta de evento" - -#~ msgid "Window" -#~ msgstr "Janela" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Como o alerta pode ter múltiplas ações, você pode editá-las da lista de " -#~ "alertas dos eventos." - -#~ msgid "Group by" -#~ msgstr "Organizar por" - -#~ msgid "Event rules" -#~ msgstr "Regras de eventos" - -#~ msgid "Error creating rule" -#~ msgstr "Erro ao criar regra" - -#~ msgid "Successfully created rule" -#~ msgstr "Regra criada com sucesso" - -#~ msgid "Error updating rule" -#~ msgstr "Erro ao atualizar regra" - -#~ msgid "Successfully updating rule" -#~ msgstr "Regra atualizada com sucesso" - -#~ msgid "Error updating rule operators" -#~ msgstr "Erro ao atualizar operadores de regras" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Operadores de regras atualizados com sucesso" - -#~ msgid "(Agent)" -#~ msgstr "(Agente)" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Falha: ao criar alertas para estes módulos, por favor, verifique" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Alertas não atualizados (%s / %s)" - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Alertas atualizados com suceso (%s / %s)" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Sucesso: alertas removidos." - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "Alertas SNMP a ser removidos" - -#~ msgid "Success: create the alerts." -#~ msgstr "Sucesso: alertas criados." - -#~ msgid "Update operators" -#~ msgstr "Atualizar operadores" - -#~ msgid "Modules agents in policy" -#~ msgstr "Agentes de módulos na política" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Expressão lógica para estas regras:" - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "Falha: ao remover alertas para estes módulos, por favor, verifique" - -#~ msgid "Custom OID" -#~ msgstr "OID Personalizado" - -#~ msgid "Error parsing MIB" -#~ msgstr "Erro na análise da MIB" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "Alertas SNMP a ser editados" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Remoção maciça de alertas SNMP" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Edição maciça de alertas SNMP" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Adição maciça de políticas de alertas" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Remoção maciça de políticas de alertas" - -#~ msgid "No change in data" -#~ msgstr "Nenhuma alteração nos dados" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Erro ao adicionar valores de trap personalizados" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "Valores de trap personalizados adicionados com sucesso" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Erro na atualização de valores personalizados de trap" - -#~ msgid "Upload MIB" -#~ msgstr "Atualizar MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Diretório de armazenamento de log" - -#~ msgid "Load MIB" -#~ msgstr "Carregar MIB" - -#~ msgid "Fail uploaded file" -#~ msgstr "Falha no arquivo carregado" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Falha no carregamento %s/%s traps" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Traps %s/%s carregados" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Erro na remoção de valores personalizados de trap" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Valores personalizados de trap removidos com sucesso" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Valores personalizados de trap atualizados com sucesso" - -#~ msgid "Page" -#~ msgstr "Página" - -#~ msgid "Filter by profile" -#~ msgstr "Filtrar por perfil" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Define o tempo de vida máximo para dados de logs em dias." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Configuração de ACL Enterprise" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Adicionar novo elemento ACL ao perfil" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Diretório onde os dados de logs serão armazenados." - -#~ msgid "Section" -#~ msgstr "Seção" - -#~ msgid "Error deleting skin" -#~ msgstr "Erro ao remover skin" - -#~ msgid "Skins configuration" -#~ msgstr "Configuração de skins" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Arquivo zip com o subdiretório da skin. O nome do arquivo zip deve conter " -#~ "somente caracteres alfanuméricos." - -#~ msgid "Group/s" -#~ msgstr "Grupo/s" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Skin removida com sucesso" - -#~ msgid "Skin name" -#~ msgstr "Nome da skin" - -#~ msgid "Successfully created skin" -#~ msgstr "Skin criada com sucesso" - -#~ msgid "Error creating skin" -#~ msgstr "Erro ao criar skin" - -#~ msgid "Create skin" -#~ msgstr "Criar skin" - -#~ msgid "Relative path" -#~ msgstr "Caminho relativo" - -#~ msgid "Error updating skin" -#~ msgstr "Erro ao atualizar skin" - -#~ msgid "Successfully updated skin" -#~ msgstr "Skin atualizada com sucesso" - -#~ msgid "Auth token" -#~ msgstr "Token de autenticação" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Token previamente configurado no console Pandora de destino para utilização " -#~ "de autenticação delegada." - -#~ msgid "Could not be update" -#~ msgstr "Não foi possível atualizar" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Edição de item do Metaconsole Pandora FMS" - -#~ msgid "Metaconsole setup" -#~ msgstr "Configuração do Metaconsole" - -#~ msgid "Successfully update" -#~ msgstr "Atualização bem sucedida" - -#~ msgid "DB Host" -#~ msgstr "Host do BD" - -#~ msgid "DB User" -#~ msgstr "Usuário do BD" - -#~ msgid "DB Name" -#~ msgstr "Nome do BD" - -#~ msgid "Console URL" -#~ msgstr "URL da Console" - -#~ msgid "Console User" -#~ msgstr "Usuário da Console" - -#~ msgid "DB Password" -#~ msgstr "Senha do BD" - -#~ msgid "Compatibility" -#~ msgstr "Compatibilidade" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "DB" -#~ msgstr "BD" - -#~ msgid "Console Password" -#~ msgstr "Senha da Console" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Intervalo de tempo entre a transferência de dados." - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Antes de ativar esta opção, verifique sua Configuração ACL. Você deve perder " -#~ "acesso à console." - -#~ msgid " Bytes" -#~ msgstr " Bytes" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Tamanho de dados do mecanismo usado na transferência de dados (similar a um " -#~ "buffer de dados.)" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Número de dias antes dos dados serem transferidos para o banco de dados do " -#~ "histórico." - -#~ msgid "Only validated events" -#~ msgstr "Apenas eventos validados" - -#~ msgid "Out of black list" -#~ msgstr "Fora da lista negra" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Retirar módulos selecionadas da lista negra" - -#~ msgid "Enterprise options" -#~ msgstr "Opções Enterprise" - -#~ msgid "In black list" -#~ msgstr "Na lista negra" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Colocar módulos selecionadas na lista negra" - -#~ msgid " Caracters" -#~ msgstr " Caracteres" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Defina como 0 se nunca expira." - -#~ msgid " Days" -#~ msgstr " Dias" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Os módulos de inventário incluídos na lista negra de mudanças não irão gerar " -#~ "eventos quando alterados." - -#~ msgid "Remote Integria" -#~ msgstr "Integria Remoto" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Regras aplicadas ao gerenciamento de senhas. Esta política aplica-se a todos " -#~ "os usuários, exceto o administrador." - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Babel Enterprise Remoto" - -#~ msgid "Active directory" -#~ msgstr "Active directory" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Pandora FMS Remoto" - -#~ msgid " Minutes" -#~ msgstr " Minutos" - -#~ msgid "Enterprise password policy" -#~ msgstr "Política de senha Enterprise" - -#~ msgid "Two attempts minimum" -#~ msgstr "Mínimo de duas tentativas" - -#~ msgid " Attempts" -#~ msgstr " Tentativas" - -#~ msgid "Macros" -#~ msgstr "Macros" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Módulo de inventário criado com sucesso" - -#~ msgid "Error creating inventory module" -#~ msgstr "Erro ao criar módulo de inventário" - -#~ msgid "Local component management" -#~ msgstr "Gerenciamento de componente local" - -#~ msgid "Interpreter" -#~ msgstr "Interpretador" - -#~ msgid "separate fields with " -#~ msgstr "separe os campos com " - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Ou desabilite o Pandora FMS Enterprise" - -#~ msgid "Renew" -#~ msgstr "Renovar" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ "Esta licença expirou. " -#~ "

Você não pode obter atualizações até que renove a licença." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ "Licença fora dos limites

" -#~ "Esta licença permite %d agentes e você tem %d agentes configurados." - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Para continuar usando o Pandora FMS, por favor, desabilite o enterprise " -#~ "renomeando o diretório Enterprise na console.

Ou entre em contato com " -#~ "a Artica através do info@artica.es para obter uma licença válida:" - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Por favor, entre em contato com a Artica através do info@artica.es para " -#~ "renovar a licença." - -#~ msgid "Show a map made by user" -#~ msgstr "Mostrar mapa feito por usuário" - -#~ msgid "Map made by user" -#~ msgstr "Mapa feito por usuário" - -#~ msgid "Limit" -#~ msgstr "Limite" - -#~ msgid "Latest events list" -#~ msgstr "Lista dos eventos mais recentes" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "Mostrar um gráfico de uma módulo de agente" - -#~ msgid "Single graph" -#~ msgstr "Gráfico simples" - -#~ msgid "Show a report made by user" -#~ msgstr "Mostrar um relatório feito por usuário" - -#~ msgid "Alerts Fired report" -#~ msgstr "Relatório de alertas disparados" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Por favor, configure este widget antes de usá-lo" - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Para fazer, apenas clique no título, arraste e cole no local desejado." - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Altura em px (zero para automático)" - -#~ msgid "Show the URL content" -#~ msgstr "Mostrar o conteúdo da URL" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Para remover esta mensagem, clique no botão remover no canto superior " -#~ "direito deste elemento." - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Este é um exemplo de um widget de painel de controle. Um widget pode conter " -#~ "elementos" - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Para adicionar mais elementos, clique em \"Adicionar widgets\" no " -#~ "topo desta página." - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Messagem de boas-vindas para o Pandora FMS" - -#~ msgid "Welcome" -#~ msgstr "Bem-vindo(a)" - -#~ msgid "My URL" -#~ msgstr "Minha URL" - -#~ msgid "Invalid URL" -#~ msgstr "URL inválida" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "Sem sobreposição" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Relatório visual de mapas geral e rápido" - -#~ msgid "Maps status" -#~ msgstr "Status dos mapas" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Obrigado por usar o Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Mostrar um mapa da rede monitorada" - -#~ msgid "My Post" -#~ msgstr "Minha Postagem" - -#~ msgid "Panel with a message" -#~ msgstr "Painel com uma mensagem" - -#~ msgid "Groups status" -#~ msgstr "Status dos grupos" - -#~ msgid "Dashboard replicate" -#~ msgstr "Replicação do painel de controle" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "Não copiado. Erro ao copiar dados. Você deve selecionar um painel de controle" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Não copiado. Erro ao copiar dados." - -#~ msgid "Successfully copyed" -#~ msgstr "Copiado com sucesso" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Mostrar um gráfico definido personalizado" - -#~ msgid "General and quick group status report" -#~ msgstr "Relatório geral e rápido do status dos grupos" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Mostrar uma lista da saúde global dos monitores" - -#~ msgid "Could not update dashboard" -#~ msgstr "Não foi possível atualizar o Painel de Controle" - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Painel de controle atualizado com sucesso" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Por favor, configure novamente o widget para recuperá-lo" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "O widget não pode ser carregado" - -#~ msgid "Delete widget" -#~ msgstr "Remover widget" - -#~ msgid "Configure widget" -#~ msgstr "Configurar widget" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Replicar Painel de Controle" - -#~ msgid "Group Dashboards" -#~ msgstr "Agrupar Painéis de Controle" - -#~ msgid "Source user's group" -#~ msgstr "Grupo de usuários de origem" - -#~ msgid "Destination user's group" -#~ msgstr "Grupo de usuários de destino" - -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Painel de Controle criado com sucesso" - -#~ msgid "Could not create dashboard" -#~ msgstr "Não foi possível criar o Painel de Controle" - -#~ msgid "Play" -#~ msgstr "Iniciar" - -#~ msgid "Previous Dashboard" -#~ msgstr "Painel de Controle anterior" - -#~ msgid "Slides mode" -#~ msgstr "Modo de slides" - -#~ msgid "Next Dashboard" -#~ msgstr "Próximo Painel de Controle" - -#~ msgid "Add dashboard" -#~ msgstr "Adicionar Painel de Controle" - -#~ msgid "Next slide in" -#~ msgstr "Próximo slide" - -#~ msgid "Add widget" -#~ msgstr "Adicionar widget" - -#~ msgid "Create visualmap" -#~ msgstr "Criar mapa visual" - -#~ msgid "Screens" -#~ msgstr "Telas" - -#~ msgid "Private dashboard" -#~ msgstr "Painel de Controle privado" - -#~ msgid "Dashboard options" -#~ msgstr "Opções do Painel de Controle" - -#~ msgid "Add new widget" -#~ msgstr "Adicionar novo widget" - -#~ msgid "Add new dashboard view" -#~ msgstr "Adicionar nova visão de Painel de Controle" - -#~ msgid "Delete dashboard" -#~ msgstr "Remover Painel de Controle" - -#~ msgid "Update dashboard" -#~ msgstr "Atualizar Painel de Controle" - -#~ msgid "Search results for" -#~ msgstr "Resultados da busca para" - -#~ msgid "Succesful updated" -#~ msgstr "Atualizado com sucesso" - -#~ msgid "Unsucessful updated" -#~ msgstr "Atualização malsucedida" - -#~ msgid "Fields" -#~ msgstr "Campos" - -#~ msgid "Tactical View" -#~ msgstr "Panorama tático" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "O usuário não está em nenhum grupo com perfil EW" - -#~ msgid "More events" -#~ msgstr "Mais eventos" - -#~ msgid "Module description" -#~ msgstr "Descrição do módulo" - -#~ msgid "Web check" -#~ msgstr "Verificação web" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Não foi possível conectar a instância do Pandora FMS" - -#~ msgid "Create module" -#~ msgstr "Criar módulo" - -#~ msgid "Step by step wizard" -#~ msgstr "Assistente passo a passo" - -#~ msgid "Click Create to continue" -#~ msgstr "Clique em Criar para continuar" - -#~ msgid "Edit module" -#~ msgstr "Editar módulo" - -#~ msgid "Preview" -#~ msgstr "Pré-visualizar" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "" -#~ "O alerta que você está tentando adicionar já está na lista de alertas" - -#~ msgid "Please, select an alert" -#~ msgstr "Por favor, selecione um alerta" - -#~ msgid "Please, select a module" -#~ msgstr "Por favor, selecione um módulo" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Outro agente já existe com o mesmo nome" - -#~ msgid "Please, select an agent" -#~ msgstr "Por favor, selecione um agente" - -#~ msgid "String" -#~ msgstr "Texto" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Caracteres inválidos encontrados no nome do módulo" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Selecione o módulo a ser editado ou removido" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Selecione o agente a ser editado ou removido" - -#~ msgid "Please, set an interval" -#~ msgstr "Por favor, defina um intervalo" - -#~ msgid "Create Module" -#~ msgstr "Criar Módulo" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Selecione o agente onde o módulo será criado" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Por favor, defina um endereço IP válido" - -#~ msgid "Please, set a name" -#~ msgstr "Por favor, defina um nome" - -#~ msgid "Advanced configuration" -#~ msgstr "Configurações avançadas" - -#~ msgid "Edit agent" -#~ msgstr "Editar agente" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Não pode ser atualizado: Erro em %s" - -#~ msgid "Groups synchronization" -#~ msgstr "Sincronização de grupos" - -#~ msgid "Alerts synchronization" -#~ msgstr "Sincronização de alertas" - -#~ msgid "Components synchronization" -#~ msgstr "Sincronização de componentes" - -#~ msgid "Tags synchronization" -#~ msgstr "Sincronização de tags" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Selecione o alerta a ser editado ou removido" - -#~ msgid "Group View" -#~ msgstr "Panorama de Grupos" - -#~ msgid "Synchronizing" -#~ msgstr "Sincronizando" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Selecione o módulo onde o alerta será criado" - -#~ msgid "Users synchronization" -#~ msgstr "Sincronização de usuários" - -#~ msgid "Customize sections" -#~ msgstr "Personalizar seções" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Usuário %s criado" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Erro ao criar o usuário %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Usuário %s atualizado" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Erro ao atualizar o usuário %s" - -#~ msgid "Passwords" -#~ msgstr "Senhas" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Retire as seções selecionadas para desabilitá-las" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Coloque as seções selecionadas para habilitá-las" - -#~ msgid "Enabled sections" -#~ msgstr "Seções habilitadas" - -#~ msgid "Disabled sections" -#~ msgstr "Seções desabilitadas" - -#~ msgid "Copy profile" -#~ msgstr "Copiar perfil" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Marque isto para copiar os perfis de usuário originais" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Modo de sincronização de perfil" - -#~ msgid "New profile" -#~ msgstr "Novo perfil" - -#~ msgid "This metaconsole" -#~ msgstr "Este metaconsole" - -#~ msgid "Profile mode" -#~ msgstr "Modo de perfil" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Os seguintes elementos grupos/perfis/perfis de usuários foram " -#~ "criados/atualizados com sucesso (%d/%d/%d)" - -#~ msgid "Sync" -#~ msgstr "Sincronizar" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Erro na conexão com %s" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Erro ao criar/atualizar os seguintes elementos grupos/perfis/perfis de " -#~ "usuários (%d/%d/%d)" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Erro ao criar %s grupos de componentes " - -#~ msgid "Could not be delete" -#~ msgstr "Não foi possível remover" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Erro ao criar/atualizar %s/%s componentes locais " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "%s grupos de componentes criados" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Erro ao criar/atualizar %s/%s componentes de rede " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "%s/%s componentes locais criados/atualizados" - -#~ msgid "Metaconsole elements" -#~ msgstr "Elementos de Metaconsole" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "%s/%s componentes de rede criados/atualizados" - -#~ msgid "Visual" -#~ msgstr "Visual" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "O número de elementos obtidos para cada instância em alguns panoramas." - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Erro ao criar/atualizar %s/%s modelos" - -#~ msgid "Only database" -#~ msgstr "Apenas banco de dados" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Caminho completo para a console do Pandora sem o último caractere \"/\". " -#~ "Exemplo " - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "Não há servidores adicionados ao metaconsole" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Erro ao criar/atualizar %s/%s comandos" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "%s/%s comandos criados/atualizados" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Erro ao criar/atualizar %s/%s ações" - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "%s/%s ações criadas/atualizadas" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "%s/%s modelos criados/atualizados" - -#~ msgid "Propagation" -#~ msgstr "Propagação" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "%s/%s tags criadas/atualizadas" - -#~ msgid "Passwords setup" -#~ msgstr "Configuração de senhas" - -#~ msgid "Original string" -#~ msgstr "Texto original" - -#~ msgid "Please search for anything text." -#~ msgstr "Por favor, procure por qualquer texto." - -#~ msgid "Active events history" -#~ msgstr "Histórico de eventos ativos" - -#~ msgid "General setup" -#~ msgstr "Configuração geral" - -#~ msgid "Consoles Setup" -#~ msgstr "Configuração de Consoles" - -#~ msgid "Customize translation" -#~ msgstr "Personalizar tradução" - -#~ msgid "Translation in selected language" -#~ msgstr "Tradução na linguagem selecionada" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Erro ao criar/atualizar %s/%s tags" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "criados alertas de agentes no BD destino" - -#~ msgid "Strings translation" -#~ msgstr "Tradução de strings" - -#~ msgid "Performance setup" -#~ msgstr "Configuração de desempenho" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Erro ao criar/atualizar %s/%s grupos" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "redirecionado o IP do servidor na configuração no BD origem" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "%s/%s grupos criados/atualizados" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "criados módulos de agentes no BD destino" - -#~ msgid "created agent in destination DB" -#~ msgstr "criado agente no BD destino" - -#~ msgid "Visual setup" -#~ msgstr "Configuração visual" - -#~ msgid "Consoles setup" -#~ msgstr "Configuração de consoles" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "criadas ações de alertas no BD destino" - -#~ msgid "Add agents to destination server" -#~ msgstr "Adicionar agentes ao servidor de destino" - -#~ msgid "Move" -#~ msgstr "Mover" - -#~ msgid "Source Server" -#~ msgstr "Servidor de origem" - -#~ msgid "Destination Server" -#~ msgstr "Servidor de destino" - -#~ msgid "Successfully moved" -#~ msgstr "Movido com sucesso" - -#~ msgid "Could not be moved" -#~ msgstr "Não foi possível mover" - -#~ msgid "disabled agent in source DB" -#~ msgstr "desabilitado agente no BD origem" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Não definido IP do metaconsole na \"lista de IPs com acesso à API\" do " -#~ "Pandora Console." - -#~ msgid "Policy Manager" -#~ msgstr "Gerenciador de Políticas" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Erro ao remover %s módulos de políticas" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "%s/%s módulos de políticas criados/atualizados" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Erro ao criar/atualizar %s/%s módulos de políticas" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Criadas %s políticas" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Erro ao criar %s políticas" - -#~ msgid "Policies apply" -#~ msgstr "Políticas aplicam" - -#~ msgid "Apply policies" -#~ msgstr "Aplicar políticas" - -#~ msgid "Policies queue" -#~ msgstr "Fila de políticas" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Criados %s alertas de políticas" - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "%s módulos de políticas removidos" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Erro ao criar %s alertas de políticas" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Para obter a melhor experiência de usuário com o Pandora FMS, nós " -#~ "recomendamos fortemente o uso dos" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "navegadores Mozilla " -#~ "Firefox ou Google Chrome." - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Erro ao remover %s alertas de políticas" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "%s alertas de políticas removidos" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "O Metaconsole precisa de ativação prévia a partir da console regular, por " -#~ "favor, entre em contato com o administrador de sistemas se você precisar de " -#~ "assistência.,br>" - -#~ msgid "Network traffic" -#~ msgstr "Tráfego de rede" - -#~ msgid "Monitors view" -#~ msgstr "Panorama de monitores" - -#~ msgid "Create new report" -#~ msgstr "Criar novo relatório" - -#~ msgid "Tag management" -#~ msgstr "Gerenciamento de tags" - -#~ msgid "Alert management" -#~ msgstr "Gerenciamento de alertas" - -#~ msgid "Policy management" -#~ msgstr "Gerenciamento de políticas" - -#~ msgid "Templates wizard" -#~ msgstr "Assistente de modelos" - -#~ msgid "Report templates" -#~ msgstr "Modelos de relatório" - -#~ msgid "Agent management" -#~ msgstr "Gerenciamento de agentes" - -#~ msgid "Live view" -#~ msgstr "Panorama ao vivo" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Atualização malsucedida do mapa de rede." - -#~ msgid "Unnamed " -#~ msgstr "Sem nome " - -#~ msgid "Agents movement" -#~ msgstr "Movimento dos agentes" - -#~ msgid "Show modules" -#~ msgstr "Mostrar módulos" - -#~ msgid "Filter by agents" -#~ msgstr "Filtrar por agentes" - -#~ msgid "Filter by modules" -#~ msgstr "Filtrar por módulos" - -#~ msgid "Successful update the networkmap." -#~ msgstr "Atualização bem sucedida do mapa de rede." - -#~ msgid "Back to login" -#~ msgstr "Voltar ao login" - -#~ msgid "Metasetup" -#~ msgstr "Metaconfiguração" - -#~ msgid "Category management" -#~ msgstr "Gerenciamento de categorias" - -#~ msgid "Undo changes" -#~ msgstr "Desfazer modificações" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Adicionar módulos selecionados a agente" - -#~ msgid "Agent modules" -#~ msgstr "Módulos de agentes" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Não foi possível conectar ao %s Pandora para gerar o mapa de rede." - -#~ msgid "String to check" -#~ msgstr "Texto a verificar" - -#~ msgid "Check type" -#~ msgstr "Verificar tipo" - -#~ msgid "Response" -#~ msgstr "Resposta" - -#~ msgid "Latency" -#~ msgstr "Latência" - -#~ msgid "There is no group selected" -#~ msgstr "Nenhum grupo selecionado" - -#~ msgid "Show modulegroup" -#~ msgstr "Exibir grupo de módulos" - -#~ msgid "Delete check" -#~ msgstr "Remover verificação" - -#~ msgid "Alerts in module" -#~ msgstr "Alertas no módulo" - -#~ msgid "Various" -#~ msgstr "Variados" - -#~ msgid "Thresholds" -#~ msgstr "Limites" - -#~ msgid "Web configuration" -#~ msgstr "Configuração web" - -#~ msgid "Add check" -#~ msgstr "Adicionar verificação" - -#~ msgid "Checks" -#~ msgstr "Verificações" - -#~ msgid "Deleted modules" -#~ msgstr "Módulos removidos" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Erro ao adicionar módulo %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "Houve um erro na criação dos alertas, a operação foi cancelada" - -#~ msgid "Successfully updated module." -#~ msgstr "Módulo atualizado com sucesso." - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Não foi possível criar agente %s" - -#~ msgid "Agent successfully added" -#~ msgstr "Agente adicionado com sucesso" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Não foi possível atualizar agente %s" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s Módulos criados" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Erro ao atualizar módulo %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Módulos removidos" - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "Houve um erro ao atualizar os alertas, a operação foi cancelada" - -#~ msgid "No admin user" -#~ msgstr "Nenhum usuário admin" - -#~ msgid "Manage agent modules" -#~ msgstr "Gerenciar módulos de agentes" - -#~ msgid "Go to module detail" -#~ msgstr "Ir para o detalhe do módulo" - -#~ msgid "Create new alert" -#~ msgstr "Criar novo alerta" - -#~ msgid "Go to agent detail" -#~ msgstr "Ir para o detalhe do agente" - -#~ msgid "Create new module" -#~ msgstr "Criar novo módulo" - -#~ msgid "User synchronization" -#~ msgstr "Sincronização de usuários" - -#~ msgid "Group synchronization" -#~ msgstr "Sincronização de grupos" - -#~ msgid "Customizable section" -#~ msgstr "Seção personalizável" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Desabilitar filtros de panorama ao vivo personalizados Netflow" - -#~ msgid "Log viewer" -#~ msgstr "Visualizador de log" - -#~ msgid "Delete alert" -#~ msgstr "Remover alerta" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Houve um problema ao carregar a tag" - -#~ msgid "Stand By" -#~ msgstr "Stand By" - -#~ msgid "Go to Alert detail" -#~ msgstr "Ir para o detalhe do alerta" - -#~ msgid "Edit plugin" -#~ msgstr "Editar plugin" - -#~ msgid "Plugin management" -#~ msgstr "Gerenciamento de plugin" - -#~ msgid "Create plugin" -#~ msgstr "Criar plugin" - -#~ msgid "Start date" -#~ msgstr "Data de início" - -#~ msgid "Success be updated." -#~ msgstr "Sucesso na atualização." - -#~ msgid "Copy Dashboard" -#~ msgstr "Copiar Painel de Controle" - -#~ msgid "Network console" -#~ msgstr "Console de rede" - -#~ msgid "Custom SQL" -#~ msgstr "SQL Personalizado" - -#~ msgid "Export this list to CSV" -#~ msgstr "Exportar esta lista para CSV" - -#~ msgid "Could not be updated." -#~ msgstr "Não foi possível atualizar." - -#~ msgid "Service Map" -#~ msgstr "Mapa de serviços" - -#~ msgid "List of elements" -#~ msgstr "Lista de elementos" - -#~ msgid "Error deleting service" -#~ msgstr "Erro ao remover serviço" - -#~ msgid "Service deleted successfully" -#~ msgstr "Serviço removido com sucesso" - -#~ msgid "Succesfully created" -#~ msgstr "Criado com sucesso" - -#~ msgid "Last contact: " -#~ msgstr "Último contato: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Mapa de rede enterprise" - -#~ msgid "Not found networkmap." -#~ msgstr "Mapa de rede não encontrado." - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Mapa de rede enterprise - %s" - -#~ msgid "Succesfully updated" -#~ msgstr "Atualizado com sucesso" - -#~ msgid "Policy: " -#~ msgstr "Política: " - -#~ msgid "Data: " -#~ msgstr "Dados: " - -#~ msgid "Status: " -#~ msgstr "Status: " - -#~ msgid "Succesfully deleted" -#~ msgstr "Removido com sucesso" - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Nenhuma coleção atribuída a este agente" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Duplicado com sucesso" - -#~ msgid "Could not be duplicated" -#~ msgstr "Não foi possível duplicar" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Tamanho do mapa de rede (Largura x Altura)" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "O mapa de rede já foi gerado." - -#~ msgid "Refresh networkmap state" -#~ msgstr "Atualizar estado do mapa de rede" - -#~ msgid "Method generation networkmap" -#~ msgstr "Método de geração do mapa de rede" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "Este agente não tem política associada" - -#~ msgid "Save networkmap" -#~ msgstr "Salvar mapa de rede" - -#~ msgid "Policy outdate" -#~ msgstr "Política desatualizada" - -#~ msgid "Toggle the collection table" -#~ msgstr "Alternar a tabela de coleções" - -#~ msgid "Networkmap resized." -#~ msgstr "Mapa de rede redimensionado." - -#~ msgid "Error process map" -#~ msgstr "Erro ao processar mapa" - -#~ msgid "Details of node:" -#~ msgstr "Detalhes do nó:" - -#~ msgid "Update networkmap" -#~ msgstr "Atualizar mapa de rede" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "Esta operação não pode ser desfeita, porque é no BD." - -#~ msgid "Resize the networkmap" -#~ msgstr "Redimensionar o mapa de rede" - -#~ msgid "Relationship" -#~ msgstr "Relacionamento" - -#~ msgid "Toggle the module table" -#~ msgstr "Alternar a tabela de módulos" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Não adotado)" - -#~ msgid "Show Modules" -#~ msgstr "Mostrar Módulos" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Não adotado) (Desassociado)" - -#~ msgid "(Adopted)" -#~ msgstr "(Adotado)" - -#~ msgid "Toggle the alert table" -#~ msgstr "Alternar a tabela de alertas" - -#~ msgid "Show Alert" -#~ msgstr "Mostrar alerta" - -#~ msgid "Descripttion" -#~ msgstr "Descrição" - -#~ msgid "Show Collection" -#~ msgstr "Mostra coleção" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Adotado) (Associado)" - -#~ msgid "Backup" -#~ msgstr "Backup" - -#~ msgid "Export to PDF" -#~ msgstr "Exportar para PDF" - -#~ msgid "Lost" -#~ msgstr "Perdido" - -#~ msgid "Create backup" -#~ msgstr "Criar backup" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Utilitário de backup do banco de dados do Pandora" - -#~ msgid "Backups list" -#~ msgstr "Lista de backups" - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Sucesso ao adicionar a coleção '%s'." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Sucesso ao adicionar o agente '%s'." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Erro na criação da política '%s'." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Sucesso na criação da política '%s'." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Erro ao adicionar o agente '%s'." - -#~ msgid "Error the policy haven't name." -#~ msgstr "Erro a política não tem nome." - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "Erro ao criar política '%s', o nome existe e não há nomes livres." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Advertência na criação da política '%s', o nome existe, a política tem um " -#~ "nome %s." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Erro ao adicionar o módulo, não tem tipo." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Erro ao adicionar a coleção '%s'." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Sucesso na adição do módulo '%s'." - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Erro ao adicionar o alerta, o módulo '%s' não existe." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Sucesso ao adicionar o alerta '%s'." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Erro na adição do módulo '%s'." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Erro ao adicionar o alerta, o modelo '%s' não existe." - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Erro ao adicionar o alerta '%s'." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Erro ao adicionar o alerta, a ação '%s' não existe." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Erro ao adicionar o módulo, erro no componente tag" - -#~ msgid "Hourly" -#~ msgstr "A cada hora" - -#~ msgid "Send custom report by email" -#~ msgstr "Enviar relatório personalizado por e-mail" - -#~ msgid "Not scheduled" -#~ msgstr "Não agendado" - -#~ msgid "Backup Pandora database" -#~ msgstr "Realizar backup do banco de dados do Pandora" - -#~ msgid "Send to email" -#~ msgstr "Enviar para e-mail" - -#~ msgid "Save to disk into path" -#~ msgstr "Gravar em disco no caminho" - -#~ msgid "Save custom report to disk" -#~ msgstr "Gravar relatório personalizado em disco" - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Sucesso ao adicionar ação '%s'." - -#~ msgid "Report to build" -#~ msgstr "Relatório a fazer" - -#~ msgid "Yearly" -#~ msgstr "Anualmente" - -#~ msgid "Cron jobs" -#~ msgstr "Tarefas do Cron" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Por favor, não responda este e-mail" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Abra o arquivo em anexo para visualizá-lo" - -#~ msgid "Cron extension is not running" -#~ msgstr "A extensão do Cron não está em execução" - -#~ msgid "Edit job" -#~ msgstr "Editar tarefa" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "O caminho não existe ou não é possível escrever nele" - -#~ msgid "Add new job" -#~ msgstr "Adicionar nova tarefa" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Esta extensão confia em uma configuração apropriada do cron, o serviço de " -#~ "agendamento baseado em horários" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "A extensão do Cron nunca executou ou não está bem configurada" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Este é o relatório gerado automaticamente" - -#~ msgid "Scheduled jobs" -#~ msgstr "Tarefas agendadas" - -#~ msgid "Last execution" -#~ msgstr "Última execução" - -#~ msgid "Cron extension is running" -#~ msgstr "A extensão do Cron está em execução" - -#~ msgid "Last run" -#~ msgstr "Última execução" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Por favor, adicione a seguinte linha ao seu arquivo crontab" - -#~ msgid "Task" -#~ msgstr "Tarefa" - -#~ msgid "Scheduled" -#~ msgstr "Agendada" - -#~ msgid "First_execution" -#~ msgstr "Primeira_execução" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Talvez a primeira execução não seja exatamente igual a este valor porque a " -#~ "configuração do cron é diferente." - -#~ msgid "Force run" -#~ msgstr "Forçar execução" - -#~ msgid "Separator" -#~ msgstr "Separador" - -#~ msgid "Upload CSV file" -#~ msgstr "Carregar arquivo CSV" - -#~ msgid "File processed" -#~ msgstr "Arquivo processado" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Criado agente %s" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "O arquivo CSV deve ter os campos na seguinte ordem" - -#~ msgid "CSV format" -#~ msgstr "Formato CSV" - -#~ msgid "Translate string" -#~ msgstr "Traduzir texto" - -#~ msgid "CSV import" -#~ msgstr "Importar CSV" - -#~ msgid "Path" -#~ msgstr "Caminho" - -#~ msgid "First execution" -#~ msgstr "Primeira execução" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "Plotar agentes(%s) - %s" - -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgid "Templates list" -#~ msgstr "Lista de modelos" - -#~ msgid "Advance options" -#~ msgstr "Opções avançadas" - -#~ msgid "Get PDF file" -#~ msgstr "Obter arquivo PDF" - -#~ msgid "Wizard SLA" -#~ msgstr "Assistente de ANS" - -#~ msgid "Templates Wizard" -#~ msgstr "Assistente de Modelos" - -#~ msgid "Template editor" -#~ msgstr "Editor de modelos" - -#~ msgid "Report type" -#~ msgstr "Tipo de relatório" - -#~ msgid "MAX Value" -#~ msgstr "Valor Máximo" - -#~ msgid "% Wrong" -#~ msgstr "% Errado" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "% Limit" -#~ msgstr "% Limite" - -#~ msgid "Generated" -#~ msgstr "Gerado" - -#~ msgid "Simple Graph" -#~ msgstr "Gráfico simples" - -#~ msgid "Uknown agents" -#~ msgstr "Agentes desconhecidos" - -#~ msgid "MIN Value" -#~ msgstr "Valor Mínimo" - -#~ msgid "Last 8 hours events" -#~ msgstr "Eventos das últimas 8 horas" - -#~ msgid "Modules under" -#~ msgstr "Módulos sob" - -#~ msgid "Modules at normal status" -#~ msgstr "Módulos com status normal" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Módulos com status crítico ou em alerta" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "Nenhum módulo maior ou igual a %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "Nenhum módulo menor que %s" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "Nenhum módulo nestas condições" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "Nenhum módulo com status normal" - -#~ msgid "Serialized data " -#~ msgstr "Dados serializados " - -#~ msgid "Crit:" -#~ msgstr "Crit:" - -#~ msgid "There are no data." -#~ msgstr "Nenhum dado." - -#~ msgid "Ok:" -#~ msgstr "Ok:" - -#~ msgid "Warn:" -#~ msgstr "Alerta:" - -#~ msgid "Value:" -#~ msgstr "Valor:" - -#~ msgid "Radius" -#~ msgstr "Raio" - -#~ msgid "Shape" -#~ msgstr "Forma" - -#~ msgid "Add fictional point" -#~ msgstr "Adicionar ponto fictício" - -#~ msgid "Network map linked" -#~ msgstr "Mapa de rede associado" - -#~ msgid "Open Minimap" -#~ msgstr "Abrir Minimapa" - -#~ msgid "Square" -#~ msgstr "Quadrado" - -#~ msgid "Rhombus" -#~ msgstr "Losango" - -#~ msgid "Circle" -#~ msgstr "Circulo" - -#~ msgid "Color" -#~ msgstr "Cor" - -#~ msgid "Copy of " -#~ msgstr "Cópia de " - -#~ msgid "Module alert" -#~ msgstr "Alerta de módulo" - -#~ msgid "Show modules:" -#~ msgstr "Mostrar módulos:" - -#~ msgid "Empty configuration" -#~ msgstr "Configuração vazia" - -#~ msgid "Empty OS" -#~ msgstr "SO Vazio" - -#~ msgid "Lines" -#~ msgstr "Linhas" - -#~ msgid "Metaconsole" -#~ msgstr "Metaconsole" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "" -#~ "Relatório Pandora FMS automatizado para relatório definido por usuário" - -#~ msgid "There are no agents with modules." -#~ msgstr "Não há agentes com módulos." - -#~ msgid "Modules detailed event" -#~ msgstr "Evento detalhado por módulos" - -#~ msgid "There are no events for this module." -#~ msgstr "Não há eventos para este módulo." - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "Nenhum Agente/Módulo definido." - -#~ msgid "There are no alerts for this module." -#~ msgstr "Sem agentes para este módulo." - -#~ msgid "CONTENTS" -#~ msgstr "CONTEÚDO" - -#~ msgid "Report date: " -#~ msgstr "Data do relatório: " - -#~ msgid "Untitled" -#~ msgstr "Sem título" - -#~ msgid "Generated: " -#~ msgstr "Gerado: " - -#~ msgid "There are no events in group." -#~ msgstr "Não há eventos no grupo." - -#~ msgid "There are no Events." -#~ msgstr "Não há eventos." - -#~ msgid "Agent:" -#~ msgstr "Agente:" - -#~ msgid "Module:" -#~ msgstr "Módulo:" - -#~ msgid "Restoring a backup" -#~ msgstr "Restaurando um backup" - -#~ msgid "No description" -#~ msgstr "Sem descrição" - -#~ msgid "There are no modules." -#~ msgstr "Não há módulos." - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "É uma operação complexa que requer intervenção humana para evitar falhas de " -#~ "sistema e perda de dados" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "A restauração de um backup de banco de dados do Pandora deve ser feita " -#~ "manualmente." - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "Para restaurar o backup selecionado, por favor, siga estas etapas" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Abra um shell como root em seus sistema localizado em " - -#~ msgid "Period: " -#~ msgstr "Período: " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Conecte ao banco de dados MySQL usando o seguinte comando" - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Reiniciar os servidores e fazer login novamente na console" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "" -#~ "Localizar arquivo de configuração dos servidores e substituir pelas " -#~ "seguintes linhas" - -#~ msgid "Run import command using the following command" -#~ msgstr "Executar comando de importação usando o seguinte comando" - -#~ msgid "and replace with" -#~ msgstr "e substituir por" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Modificar a configuração dos servidores para usar este novo banco de dados" - -#~ msgid "Open configuration file" -#~ msgstr "Abrir o arquivo de configuração" - -#~ msgid "Find" -#~ msgstr "Localizar" - -#~ msgid "Restore the backup" -#~ msgstr "Restaurar o backup" - -#~ msgid "Create a new database" -#~ msgstr "Criar um novo banco de dados" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Modificar a configuração do console para usar este novo banco de dados" - -#~ msgid "Into your destination database." -#~ msgstr "No seu banco de dados destino." - -#~ msgid "Log collector" -#~ msgstr "Coletor de logs" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Erro ao conectar ao host especificado" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "A extensão \"Traduzir texto\" está em falta no servidor. Esta extensão é " -#~ "mandatória para ser configurada no metaconsole." - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "" -#~ "Conectado ao host, mas não foi possível encontrar o banco de dados " -#~ "especificado" - -#~ msgid "Database credentials not found" -#~ msgstr "Credenciais do banco de dados não encontradas" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "O nome do servidor não confere. Verifique o nome do servidor nó e configure " -#~ "o mesmo na metaconfiguração" - -#~ msgid "Last event replication" -#~ msgstr "Replicação do último evento" - -#~ msgid "Get CSV file" -#~ msgstr "Obter arquivo CSV" - -#~ msgid "Tree view by tags" -#~ msgstr "Panorama de árvore por tags" - -#~ msgid "No changes found" -#~ msgstr "Nenhuma alteração encontrada" - -#~ msgid "Service does not exist." -#~ msgstr "O serviço não existe." - -#~ msgid "Show children Metaconsole" -#~ msgstr "Mostra Metaconsole filha" - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Alerta de advertência do serviço não existe." - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Criação automática do módulo para o serviço %s" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Alerta de serviço desconhecido não existe." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Agente de armazenamento do serviço não existe." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Módulo de armazenamento do ANS do serviço não existe." - -#~ msgid "Module store the service does not exist." -#~ msgstr "Módulo de armazenamento do serviço não existe." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Alerta de serviço crítico não existe." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Alerta crítico de ANS do serviço não existe." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Agente de armazenamento do ANS do serviço não existe." - -#~ msgid "There are no service elements defined" -#~ msgstr "Nenhum elemento de serviço definido" - -#~ msgid "Weight Critical" -#~ msgstr "Peso Crítico" - -#~ msgid "Critical (Alert)" -#~ msgstr "Crítico (Alerta)" - -#~ msgid "Unknow" -#~ msgstr "Desconhecido" - -#~ msgid "Weight Ok" -#~ msgstr "Peso Ok" - -#~ msgid "Delete service element" -#~ msgstr "Remover elemento de serviço" - -#~ msgid "Weight Warning" -#~ msgstr "Peso Alerta" - -#~ msgid "Weight Unknown" -#~ msgstr "Peso Desconhecido" - -#~ msgid "FAIL" -#~ msgstr "FALHA" - -#~ msgid "Policy linkation" -#~ msgstr "Associação de política" - -#~ msgid "Module pending to unlink" -#~ msgstr "Módulo com desassociação pendente" - -#~ msgid "Module pending to link" -#~ msgstr "Módulo com associação pendente" - -#~ msgid "You must change password" -#~ msgstr "Você deve alterar a senha" - -#~ msgid "Create a new policy map" -#~ msgstr "Criar um novo mapa de políticas" - -#~ msgid "Unlink from policy" -#~ msgstr "Desassociar de política" - -#~ msgid "Module linked" -#~ msgstr "Módulo associado" - -#~ msgid "Relink to policy" -#~ msgstr "Reassociar à política" - -#~ msgid "Module unlinked" -#~ msgstr "Módulo desassociado" - -#~ msgid "CONFIRM: " -#~ msgstr "CONFIRME: " - -#~ msgid "NEW PASS: " -#~ msgstr "NOVA SENHA: " - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "O usuário foi bloqueado. Tente novamente em " - -#~ msgid "Password must contain symbols" -#~ msgstr "A senha deve ter símbolos" - -#~ msgid "User pass successfully updated" -#~ msgstr "Senha de usuário atualizada com sucesso" - -#~ msgid " previous changes." -#~ msgstr " alterações anteriores." - -#~ msgid "Password must be different" -#~ msgstr "A senha deve ser diferente" - -#~ msgid "Password too short" -#~ msgstr "A senha é muito curta" - -#~ msgid "Password must contain numbers" -#~ msgstr "A senha deve ter números" - -#~ msgid "Change" -#~ msgstr "Alterar" - -#~ msgid " minutes" -#~ msgstr " minutos" - -#~ msgid "Password must be different from the " -#~ msgstr "A senha deve ser diferente das " - -#~ msgid "Password empty" -#~ msgstr "Senha vazia" - -#~ msgid "Password confirm does not match" -#~ msgstr "A senha de confirmação não confere" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Erro ao atualizar a senha do usuário (nenhuma alteração?)" diff --git a/pandora_console/include/languages/ru.mo b/pandora_console/include/languages/ru.mo index 25ec69aba6000865fbd57dbf2dcb0625816da911..d855edb660dea5462463fae80714f15b17f6d5d9 100644 GIT binary patch delta 24919 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 diff --git a/pandora_console/include/languages/ru.po b/pandora_console/include/languages/ru.po index a0facabcd0..d3b6883d9e 100644 --- a/pandora_console/include/languages/ru.po +++ b/pandora_console/include/languages/ru.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: pandora-ru\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2014-07-11 08:32+0000\n" -"Last-Translator: ☠Jay ZDLin☠ \n" +"PO-Revision-Date: 2015-06-29 18:52+0000\n" +"Last-Translator: MIguel Lopez ARTICA \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:57+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: ru\n" #: ../../godmode/groups/configure_group.php:68 @@ -20664,3943 +20664,3 @@ msgstr "Ошибка безопасности. Пожалуйста, обрат msgid "File is missing in disk storage. Please contact the administrator." msgstr "" "Файл отсутствует в памяти диска. Пожалуйста, обратитесь к администратору." - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Справочная система Pandora FMS" - -#~ msgid "Logged Out" -#~ msgstr "Сеанс завершен" - -#~ msgid "You are" -#~ msgstr "Вы" - -#~ msgid "Update server port" -#~ msgstr "Порт сервера обновлений" - -#~ msgid "Update server host" -#~ msgstr "Сервер обновлений" - -#~ msgid "Update manager settings" -#~ msgstr "Настройки менеджера обновлений" - -#~ msgid "4 days" -#~ msgstr "4 дня" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "При удалении SLA возникла ошибка" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA был успешно удален" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "При создании SLA возникла проблема" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA был успешно создан" - -#~ msgid "Id" -#~ msgstr "Идентификационный номер" - -#~ msgid "Settings" -#~ msgstr "Настройки" - -#~ msgid "Development" -#~ msgstr "Разработка" - -#~ msgid "preview" -#~ msgstr "образцы" - -#~ msgid "Last Month" -#~ msgstr "Последний месяц" - -#~ msgid "Factor" -#~ msgstr "Множитель" - -#~ msgid "Store" -#~ msgstr "Хранить" - -#~ msgid "Up" -#~ msgstr "Вверх" - -#~ msgid "Master" -#~ msgstr "Мастер панели" - -#~ msgid "hour" -#~ msgstr "час" - -#~ msgid "day" -#~ msgstr "день" - -#~ msgid "week" -#~ msgstr "неделя" - -#~ msgid "month" -#~ msgstr "месяц" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Oper" -#~ msgstr "Оператор" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Load" -#~ msgstr "Загрузка системы" - -#~ msgid "from" -#~ msgstr "из" - -#~ msgid " to " -#~ msgstr " к " - -#~ msgid "Info" -#~ msgstr "Информация" - -#~ msgid "SNMP server" -#~ msgstr "Сервер SNMP" - -#~ msgid "Seconds" -#~ msgstr "Секунды" - -#~ msgid "Last hour" -#~ msgstr "Последний час" - -#~ msgid "Your IP" -#~ msgstr "Ваш IP адрес" - -#~ msgid "Older" -#~ msgstr "Старше" - -#~ msgid "No news articles at this moment" -#~ msgstr "В настоящее время нет новых статей" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Это система веб-управления Pandora FMS. Отсюда вы можете управлять ее " -#~ "агентами, угрозами и событиями.Сеанс открыт, пока существует активность." - -#~ msgid "Keygen file does not exists" -#~ msgstr "Файла генерации ключа не существует" - -#~ msgid "Authentication Error" -#~ msgstr "Ошибка аутентификации" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Пенель веб управления Pandora FMS" - -#~ msgid "General information" -#~ msgstr "общая информация" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Невозможно запустить генератор ключей." - -#~ msgid "Your system is up-to-date" -#~ msgstr "Ваша система не нуждается в обновлении" - -#~ msgid "Server connection failed" -#~ msgstr "Соединение с сервером утеряно" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Есть новые обновления для Pandora FMS" - -#~ msgid "Your system version number is" -#~ msgstr "Версия вашей системы" - -#~ msgid "Overwrite local changes" -#~ msgstr "Перезапись локальных изменений" - -#~ msgid "Testing" -#~ msgstr "тестирование" - -#~ msgid "More info" -#~ msgstr "Больше информации" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Есть новые обновления для Pandora" - -#~ msgid "Map builder" -#~ msgstr "Построитель карт" - -#~ msgid "Update layout failed" -#~ msgstr "Не удалось обновить слой" - -#~ msgid "Two Months" -#~ msgstr "Два месяца" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Перетащите элемент сюда, для что бы удалить его с карты" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Перетащите сюда элемет , для того что бы отредактировать его." - -#~ msgid "Label color" -#~ msgstr "Цвет ярлыка" - -#~ msgid "Six Months" -#~ msgstr "Шесть месяцев" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Последние %s дней" - -#~ msgid "Update server path" -#~ msgstr "Путь к серверу обновлений" - -#~ msgid "Keygen path" -#~ msgstr "Путь к Генератору ключей" - -#~ msgid "Server authorization rejected" -#~ msgstr "Авторизация на сервере отклонена" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Менеджер Обновлений - одно из самых продвинутых нововведений в Pandora FMS " -#~ "2.0 Enterprise version, для получения дополнительной информации посетите http://pandorafms.com." - -#~ msgid "Update manager settings updated" -#~ msgstr "Настройки Менеджера Обновлений обновлены" - -#~ msgid "Code / binary directory" -#~ msgstr "Code / binary directory" - -#~ msgid "Agents detailed view" -#~ msgstr "Подробный просмотр агентов" - -#~ msgid "Manage modules" -#~ msgstr "Управление модулями" - -#~ msgid "Manage plugins" -#~ msgstr "Управление модулями" - -#~ msgid "Manage profiles" -#~ msgstr "Управление профилями" - -#~ msgid "Manage user rights" -#~ msgstr "Управление правами пользователя" - -#~ msgid "Manage Database" -#~ msgstr "Управление базой данных" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Пожалуйста, проверьте права на запись в текущий каталог для сервера HTTP" - -#~ msgid "Module is not set" -#~ msgstr "Модуль не установлен" - -#~ msgid "Report name is empty" -#~ msgstr "Название отчёта пустое" - -#~ msgid "Redraw" -#~ msgstr "Обновить" - -#~ msgid "General configuration" -#~ msgstr "Общая конфигурация" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Текущий каталог недоступен для записи сервером HTTP" - -#~ msgid "Deleting" -#~ msgstr "Удаление" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Создан каталог %s" - -#~ msgid "Upload file" -#~ msgstr "Закачать файл" - -#~ msgid "Group name" -#~ msgstr "Название группы" - -#~ msgid "Last name" -#~ msgstr "Фамилия" - -#~ msgid "First name" -#~ msgstr "Имя" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Задержка / Макс. задержка" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Модулей запущено на сервере / Всего модулей этого типа" - -#~ msgid "No layouts found" -#~ msgstr "Слои не найдены" - -#~ msgid "Visual map wizard" -#~ msgstr "Мастер создания карт" - -#~ msgid "Monitors normal" -#~ msgstr "Нормальных" - -#~ msgid "Monitors warning" -#~ msgstr "Опасных" - -#~ msgid "No layout with this id found" -#~ msgstr "нет слоев с этим кодом" - -#~ msgid "Image size (px)" -#~ msgstr "Размер изображения (пикс.)" - -#~ msgid "Image range (px)" -#~ msgstr "Расположение изображения (пикс.)" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "При создании отчета возникли проблемы" - -#~ msgid "Reporting successfully created" -#~ msgstr "Отчет успешно создан" - -#~ msgid "SLAs defined" -#~ msgstr "SLA опредены" - -#~ msgid "Custom reporting builder" -#~ msgstr "Мастер создания отчетов" - -#~ msgid "SLA report construction" -#~ msgstr "Конструктор отчетов SLA" - -#~ msgid "Custom graph name" -#~ msgstr "Укажите название графика" - -#~ msgid "Reporting type" -#~ msgstr "Тип отчета" - -#~ msgid "Add item to report" -#~ msgstr "Добавить итем в отчет" - -#~ msgid "No items defined" -#~ msgstr "итемы не определены" - -#~ msgid "Combined image render" -#~ msgstr "объединенное представление изображения" - -#~ msgid "Render now" -#~ msgstr "Загрузить" - -#~ msgid "Custom graph store" -#~ msgstr "Пользовательские отчеты" - -#~ msgid "Graphs management" -#~ msgstr "Управление графиками" - -#~ msgid "Automatic update check" -#~ msgstr "Автоматическое обновление Pandora" - -#~ msgid "Graph builder module list" -#~ msgstr "Список модулей мастера графиков" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Наберите не менее двух символов для поиска" - -#~ msgid "Visual configuration" -#~ msgstr "Визуальная конфигурация" - -#~ msgid "SLA period (seconds)" -#~ msgstr "Период SLA (секунды)" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Этот сервер не подсчитывает назначенные задачи" - -#~ msgid "You don't have access" -#~ msgstr "У Вас нет прав доступа" - -#~ msgid "Go to alert overview" -#~ msgstr "Просмотреть предупреждения" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Нет агентов включенных в эту группу." - -#~ msgid " seconds." -#~ msgstr " сек." - -#~ msgid "There was a problem updating module" -#~ msgstr "Ошибка при обновлении модуля" - -#~ msgid "Monitors critical" -#~ msgstr "Критическое состояние" - -#~ msgid "Alerts defined" -#~ msgstr "Тревог обнаружено" - -#~ msgid "Users defined" -#~ msgstr "Пользователей обнаружено" - -#~ msgid "Monitors unknown" -#~ msgstr "Неизвестно" - -#~ msgid "Autorefresh" -#~ msgstr "Автообновление" - -#~ msgid "minute" -#~ msgstr "мин." - -#~ msgid "Global health" -#~ msgstr "Общая стабильность" - -#~ msgid "Uninitialized modules" -#~ msgstr "Выключенные модули" - -#~ msgid "Monitors not init" -#~ msgstr "Мониторы не включены" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Внимание: Когда вы меняете Агента расположения, агент автоматически " -#~ "активирует опцию 'Игнорировать новые данные GIS'" - -#~ msgid "Module macros" -#~ msgstr "Модуль макросов" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Проверка таблицы tagente_estado" - -#~ msgid "Checking database consistency" -#~ msgstr "Проверка последовательности базы данных" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Удалить неинициализированные модули сейчас" - -#~ msgid "Sanitize my database now" -#~ msgstr "Sanitize my database now" - -#~ msgid "Deleting non-init data" -#~ msgstr "Удаление неинициализированных данных" - -#~ msgid "License Info" -#~ msgstr "Информация о лицензии" - -#~ msgid "License info" -#~ msgstr "Информация о лицензии" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Нажмите здесь, чтобы получить информацию базы данных в виде текста" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Нажмите здесь, чтобы получить информацию базы данных в виде графика" - -#~ msgid "Total data" -#~ msgstr "Все данные" - -#~ msgid "Packets per agent" -#~ msgstr "Пакеты агента" - -#~ msgid "Modules per agent" -#~ msgstr "Модули агента" - -#~ msgid "Assigned modules" -#~ msgstr "Назначенные модули" - -#~ msgid "Decrease Weight" -#~ msgstr "Уменьшить значение" - -#~ msgid "Increase Weight" -#~ msgstr "Повысить значение" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Данный пользователь обладает всеми правами на управление. Это пользователь-" -#~ "администратор, который перезаписывает все права, предоставляемые в профилях " -#~ "/ группах" - -#~ msgid "" -#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -#~ "Single value, each Custom OIDs/Datas." -#~ msgstr "" -#~ "Поиск по описанию этих полей, OID, пользовательских значений, агента SNMP " -#~ "(IP), одиночного значения, каждого пользовательского OIDs / Данные." - -#~ msgid "Database sanity tool" -#~ msgstr "База данных исправных инструментов" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Исправные инструменты Pandora FMS используются для удаления плохих " -#~ "структурных данных базы данных, созданных модулей с отсутствием статуса или " -#~ "модулей, которые не могут быть инициализированы (и не сообщают о " -#~ "действительных данных), но каждый повтор - это интервал для получения " -#~ "данных. Такого рода плохие модули могут ухудшить работу Pandora FMS. Этот " -#~ "инструмент исправности базы данных также реализуется в pandora_db.pl, " -#~ "так что вам следует \tпрогонять программу каждый день или неделю. Эта " -#~ "консоль исправности НЕ сжимает вашу базу данных, она только удаляет плохо " -#~ "структурированные данные." - -#~ msgid "Minimum Data" -#~ msgstr "Минимум Данных" - -#~ msgid "Maximum Data" -#~ msgstr "Максимум Данных" - -#~ msgid "Module Interval" -#~ msgstr "Интервал Модуля" - -#~ msgid "Duplicate config" -#~ msgstr "Дубликат конфигурации" - -#~ msgid "Inventory modules" -#~ msgstr "Модули инвентаризации" - -#~ msgid "SNMP operations" -#~ msgstr "SNMP операций" - -#~ msgid "Collections" -#~ msgstr "Коллекции" - -#~ msgid "Policies operations" -#~ msgstr "Политика операций" - -#~ msgid "Manage policies" -#~ msgstr "Управление политикой" - -#~ msgid "Local components" -#~ msgstr "Местные компоненты" - -#~ msgid "" -#~ "Can't be created export target: User and password must be filled with FTP " -#~ "mode" -#~ msgstr "" -#~ "экспорта задания не может быть создан: пользователь и пароль должны быть " -#~ "заполнены в режиме FTP" - -#~ msgid "Log Collector" -#~ msgstr "Журнал коллектора" - -#~ msgid "Event alerts" -#~ msgstr "События оповещений" - -#~ msgid "Skins" -#~ msgstr "Скины" - -#~ msgid "Error updating export target" -#~ msgstr "Ошибка при обновлении экспорта задания" - -#~ msgid "Successfully updated export target" -#~ msgstr "Успешно обновлен экспорт задания" - -#~ msgid "Error deleting export target" -#~ msgstr "Ошибка при удалении экспорта задания" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Успешно удален экспорт задания" - -#~ msgid "Preffix" -#~ msgstr "Preffix" - -#~ msgid "Export targets" -#~ msgstr "Экспорт заданий" - -#~ msgid "Service updated successfully" -#~ msgstr "Сервис успешно обновлен" - -#~ msgid "Error creating service" -#~ msgstr "Ошибка при создание сервиса" - -#~ msgid "Service created successfully" -#~ msgstr "Сервис успешно создан" - -#~ msgid "Create Service" -#~ msgstr "Создать сервис" - -#~ msgid "Not found" -#~ msgstr "Не найдено" - -#~ msgid "Error updating service" -#~ msgstr "Ошибка при обновлении сервиса" - -#~ msgid "Transfer mode" -#~ msgstr "Режим передачи" - -#~ msgid "Extra options" -#~ msgstr "Дополнительные параметры" - -#~ msgid "Target directory" -#~ msgstr "Каталог заданий" - -#~ msgid "New Service" -#~ msgstr "Новый сервис" - -#~ msgid "Error empty module" -#~ msgstr "Ошибка пустой модуль" - -#~ msgid "Edit service elements" -#~ msgstr "Редактировать элементы сервиса" - -#~ msgid "Error empty service" -#~ msgstr "Ошибка пустой сервис" - -#~ msgid "Error empty agent" -#~ msgstr "Ошибка пустой агент" - -#~ msgid "Warning Service alert" -#~ msgstr "Оповещения предупреждающего сервиса" - -#~ msgid "Please set limit between 0 to 100." -#~ msgstr "Пожалуйста, установите лимит от 0 до 100." - -#~ msgid "SLA critical service alert" -#~ msgstr "Оповещения критического сервиса SLA" - -#~ msgid "Critical Service alert" -#~ msgstr "Оповещения критического сервиса" - -#~ msgid "S.L.A. interval" -#~ msgstr "Интервал S.L.A." - -#~ msgid "S.L.A. limit" -#~ msgstr "Лимит S.L.A." - -#~ msgid "Error creating service element" -#~ msgstr "Ошибка создания сервисного элемента" - -#~ msgid "Service element created successfully" -#~ msgstr "Сервисный элемент создан успешно" - -#~ msgid "Service element deleted successfully" -#~ msgstr "Сервисный элемент успешно удален" - -#~ msgid "Error deleting service element" -#~ msgstr "Ошибка при удалении элемента сервиса" - -#~ msgid "Service element updated successfully" -#~ msgstr "Сервисный элемент успешно обновлен" - -#~ msgid "Error updating service element" -#~ msgstr "Ошибка при обновлении элемента сервиса" - -#~ msgid "First select an agent" -#~ msgstr "Сначала выберите агента" - -#~ msgid "Critical weight" -#~ msgstr "Критическая плотность" - -#~ msgid "Edit element service" -#~ msgstr "Редактировать элемент сервиса" - -#~ msgid "Create element service" -#~ msgstr "Создать элементасервиса" - -#~ msgid "Using local component" -#~ msgstr "Использование местного компонента" - -#~ msgid "The changes on this field are linked with the configuration data." -#~ msgstr "Изменения в этой области связаны с данным конфигурации." - -#~ msgid "Security check is fail." -#~ msgstr "Проверка безопасности не в порядке." - -#~ msgid "Security check is ok." -#~ msgstr "Проверка безопасности в порядке." - -#~ msgid "" -#~ "Maybe delete the extended data or the audit data is previous to table " -#~ "tsession_extended." -#~ msgstr "" -#~ "Возможно, удалите расширенные данные или данные аудита предыдущей таблице " -#~ "tsession_extended." - -#~ msgid "Show extended info" -#~ msgstr "Показать расширенную информацию" - -#~ msgid "Extended info:" -#~ msgstr "Расширенная информация:" - -#~ msgid "Ok weight" -#~ msgstr "Хорошая плотность" - -#~ msgid "Warning weight" -#~ msgstr "Предупреждающая плотность" - -#~ msgid "Unknown weight" -#~ msgstr "Неизвестная плотность" - -#~ msgid "Data configuration is empty" -#~ msgstr "Данные конфигурации пусты" - -#~ msgid "Hide configuration data" -#~ msgstr "Спрятать данные конфигурации" - -#~ msgid "Show configuration data" -#~ msgstr "Показать данные кондигурацииДанные конфигурации" - -#~ msgid "Check the correct structure of the data configuration" -#~ msgstr "Проверьте правильность структуры данных конфигурации" - -#~ msgid "First line must be \"module_begin\"" -#~ msgstr "Первая линия должна быть \"module_begin\"" - -#~ msgid "Last line must be \"module_end\"" -#~ msgstr "Последняя линия должна быть \"module_end\"" - -#~ msgid "Data configuration" -#~ msgstr "Данные конфигурации" - -#~ msgid "Load basic" -#~ msgstr "Загрузить основное" - -#~ msgid "Load a basic structure on data configuration" -#~ msgstr "Загрузите базовую структуру на данные конфигурации" - -#~ msgid "Check" -#~ msgstr "Проверка" - -#~ msgid "Plug-in added succesfully" -#~ msgstr "Плагин добавлен успешно" - -#~ msgid "Plug-in cannot be added" -#~ msgstr "Плагин не может быть добавлен" - -#~ msgid "Plug-in deleted succesfully" -#~ msgstr "Плагин успешно удален" - -#~ msgid "Plug-in cannot be deleted" -#~ msgstr "Плагин ме может быть удален" - -#~ msgid "Error in the syntax, please check the data configuration." -#~ msgstr "Ошибка в синтаксисе, пожалуйста, проверьте конфигурационные данные." - -#~ msgid "Data configuration are built correctly" -#~ msgstr "Конфигурация данных построены правильно" - -#~ msgid "Type is wrong. Please set a correct type" -#~ msgstr "Тип неправилен. Пожалуйста, установите правильный тип" - -#~ msgid "There is a line with a unknown token 'token_fail'." -#~ msgstr "Есть строка с неизвестным признаком 'token_fail'." - -#~ msgid "" -#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Имя пропущено. Пожалуйста, добавьте строку с \"module_name yourmodulename\" " -#~ "к данным конфигурации" - -#~ msgid "" -#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " -#~ "data configuration" -#~ msgstr "" -#~ "Тип пропущен. Пожалуйста, добавьте строку с \"module_type yourmoduletype\" к " -#~ "данным конфигурации" - -#~ msgid "Plug-in disabled succesfully" -#~ msgstr "Плагин успешно отключен" - -#~ msgid "Plug-in cannot be disabled" -#~ msgstr "Плагин не может быть отключен" - -#~ msgid "Plug-in cannot be enabled" -#~ msgstr "Плагин не может быть отключен" - -#~ msgid "Plug-in enabled succesfully" -#~ msgstr "Плагин отключен успешно" - -#~ msgid "New plug-in" -#~ msgstr "Новый плагин" - -#~ msgid "Error adding inventory module" -#~ msgstr "Ошибка при добавлении модуля инвентаризации" - -#~ msgid "Successfully added inventory module" -#~ msgstr "Успешное добавление модуля инвентаризации" - -#~ msgid "Error deleting inventory module" -#~ msgstr "Ошибка при удалении модуля инвентаризации" - -#~ msgid "Successfully deleted inventory module" -#~ msgstr "Модуль инвентаризации успешно удален" - -#~ msgid "7 days" -#~ msgstr "7 дней" - -#~ msgid "Update all" -#~ msgstr "Обновить все" - -#~ msgid "Manager configuration > New" -#~ msgstr "Управлять конфигурацией > Новая" - -#~ msgid "Manager configuration > Edit " -#~ msgstr "Управлять конфигурацией > Редактировать " - -#~ msgid "Successfully updated inventory module" -#~ msgstr "Модуль инвентаризации успешно обновлен" - -#~ msgid "Error updating inventory module" -#~ msgstr "Ошибка при обновлении модуля инвентаризации" - -#~ msgid "Inventory module error" -#~ msgstr "Ошибка модуля инвентаризации" - -#~ msgid "Target" -#~ msgstr "Цель" - -#~ msgid "Error forcing inventory module" -#~ msgstr "Ошибка при переведении модуля инвентаризации" - -#~ msgid "Successfully forced inventory module" -#~ msgstr "Модуль инвентаризации успешно переведен" - -#~ msgid "Agent to store data" -#~ msgstr "Агент для хранения данных" - -#~ msgid "" -#~ "This values are by default because the service is auto calculate mode." -#~ msgstr "" -#~ "Это значения по умолчанию, потому что сервис в режиме авто вычисления." - -#~ msgid "Config Service" -#~ msgstr "Сервис конфигурации" - -#~ msgid "Config Elements" -#~ msgstr "Конфигурация Элементов" - -#~ msgid "View Service" -#~ msgstr "Просмотр сервиса" - -#~ msgid "Service map" -#~ msgstr "Карта сервиса" - -#~ msgid "Unable to create the collection" -#~ msgstr "Не удается создать сборник" - -#~ msgid "Another collection with the same short name" -#~ msgstr "другой сборник с таким же коротким именем" - -#~ msgid "Unable to edit the collection, empty name." -#~ msgstr "Не удается редактировать сборник, пустое имя." - -#~ msgid "Short name:" -#~ msgstr "Краткое имя:" - -#~ msgid "Recreate file" -#~ msgstr "воссоздать файл" - -#~ msgid "Unable to edit the collection." -#~ msgstr "Не удается редактировать сборник." - -#~ msgid "Correct create collection" -#~ msgstr "Правильно создать сборник" - -#~ msgid "Unable to create the collection." -#~ msgstr "Не удается создать сборник." - -#~ msgid "Empty name" -#~ msgstr "Пустое имя" - -#~ msgid "Invalid characters in short name" -#~ msgstr "Недопустимые символы в кратком имени" - -#~ msgid "Synthetic average" -#~ msgstr "Синтетическая средняя величина" - -#~ msgid "Group filter" -#~ msgstr "Фильтр группы" - -#~ msgid "Empty for default short name fc_X where X is the collection id." -#~ msgstr "" -#~ "Бессодержательные сокращенные имена по умолчанию fc_X где X является ID " -#~ "сборника." - -#~ msgid "Synthetic arithmetic" -#~ msgstr "Синтетический счет" - -#~ msgid "Add module to operations as deduct" -#~ msgstr "Добавить модуль к операциям как вычетание" - -#~ msgid "Fixed value" -#~ msgstr "Фиксированное значение" - -#~ msgid "Add module to operation as add" -#~ msgstr "Добавить модуль к операциям как добавление" - -#~ msgid "Short name must contain only alphanumeric characters, - or _ ." -#~ msgstr "" -#~ "Сокращенное название должно содержать только буквенно-цифровые символы, - " -#~ "или _." - -#~ msgid "" -#~ "The collection's short name is the name of dir in attachment dir and the " -#~ "package collection." -#~ msgstr "" -#~ "Сокращенное название сборника это имя каталога в папке приложения и пакете " -#~ "сборника." - -#~ msgid "Add module to operations as divide" -#~ msgstr "Добавить модуль к операциям как деление" - -#~ msgid "Remove selected modules" -#~ msgstr "Удалить выбранные модули" - -#~ msgid "Add module to operations as multiplicate " -#~ msgstr "Добавить модуль к операциям как умножение " - -#~ msgid "Netflow filter" -#~ msgstr "Фильтр Сетевого потока" - -#~ msgid "Select Service" -#~ msgstr "Выбрать Сервис" - -#~ msgid "Select filter" -#~ msgstr "Выбрать фильтр" - -#~ msgid "Remove selected modules from operations stack" -#~ msgstr "Удалить выбранные модули из стека операций" - -#~ msgid "Add module to average operation" -#~ msgstr "Добавить модуль к средней операции" - -#~ msgid "Move up selected modules" -#~ msgstr "Передвинуть вверх выбранные модули" - -#~ msgid "Move down selected modules" -#~ msgstr "Передвинуть вниз выбранные модули" - -#~ msgid "No module was found" -#~ msgstr "Модуль не найден" - -#~ msgid "Delete remote conf agent files in Pandora" -#~ msgstr "Удалить дистанционные файлы агента конфигурации в Pandora" - -#~ msgid "This agent have not a remote configuration, please set it." -#~ msgstr "" -#~ "Этот агент не имеет дистанционной конфигурации, пожалуйста, задайте ее." - -#~ msgid "Succesful add the collection" -#~ msgstr "Сборник успешно добавлен" - -#~ msgid "Unsuccesful add the collection" -#~ msgstr "Неуспешное добавление сборника" - -#~ msgid "Short Name" -#~ msgstr "Сокращенное имя" - -#~ msgid "Show files" -#~ msgstr "Показать файлы" - -#~ msgid "Add module" -#~ msgstr "Добавить модуль" - -#~ msgid "Error: The conf file of agent is not writable." -#~ msgstr "Ошибка: конфигурационный файл агента не доступен для записи." - -#~ msgid "Error: The conf file of agent is not readble." -#~ msgstr "Ошибка: конфигурационный файл агента не читается." - -#~ msgid "Incorrect update file." -#~ msgstr "Неправильное обновление файла." - -#~ msgid "Outdate" -#~ msgstr "Устарело" - -#~ msgid "Dir" -#~ msgstr "Кат." - -#~ msgid "Create a new web Server module" -#~ msgstr "Создайте новый модуль веб сервера" - -#~ msgid "Correct update file." -#~ msgstr "Правильное обновление файла." - -#~ msgid "Compatibility mode" -#~ msgstr "Режим совместимости" - -#~ msgid "Back to file explorer" -#~ msgstr "Назад к файлу исследования" - -#~ msgid "Files in " -#~ msgstr "Файлы в " - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Создание копии файла конфигурации для" - -#~ msgid "No selected agents to copy" -#~ msgstr "Нет выбранных агентов для копирования" - -#~ msgid "Data Copy" -#~ msgstr "Копировать данные" - -#~ msgid "Error copying md5 file " -#~ msgstr "Ошибка при копировании md5 файла " - -#~ msgid "Please, first save a new collection before to upload files." -#~ msgstr "" -#~ "Пожалуйста, сначала сохраните новый сборник, прежде чем загружать файлы." - -#~ msgid "Copied " -#~ msgstr "Копированный " - -#~ msgid " md5 file" -#~ msgstr " md5 файл" - -#~ msgid " config file" -#~ msgstr " конфигурационный файл" - -#~ msgid "Error copying " -#~ msgstr "Ошибка копирования " - -#~ msgid "No source agent selected" -#~ msgstr "Агент испочника не выбран" - -#~ msgid "Replicate configuration" -#~ msgstr "Копирование конфигурации" - -#~ msgid "Remote configuration management" -#~ msgstr "Удалить управление конфигурацией" - -#~ msgid "To agent(s):" -#~ msgstr "К агенту(ам):" - -#~ msgid "Source group" -#~ msgstr "Источник группы" - -#~ msgid "Requests" -#~ msgstr "Запросы" - -#~ msgid "Agent browser id" -#~ msgstr "ID браузера агента" - -#~ msgid "Load a basic structure on Web Checks" -#~ msgstr "Загрузите базовую структуру на Веб Проверки" - -#~ msgid "Check the correct structure of the WebCheck" -#~ msgstr "Проверьте правильную структуру Веб Проверки" - -#~ msgid "Web server module" -#~ msgstr "Модуль веб сервера" - -#~ msgid "Web checks" -#~ msgstr "Веб Проверки" - -#~ msgid "HTTP auth (server)" -#~ msgstr "HTTP-авторизации (сервер)" - -#~ msgid "HTTP auth (pass)" -#~ msgstr "HTTP-авторизации (пропуск)" - -#~ msgid "First line must be \"task_begin\"" -#~ msgstr "Первая строка должна быть \"task_begin\"" - -#~ msgid "HTTP auth (realm)" -#~ msgstr "HTTP-авторизации (область)" - -#~ msgid "Last line must be \"task_end\"" -#~ msgstr "Первая строка должна быть \"task_end\"" - -#~ msgid "Proxy URL" -#~ msgstr "URL прокси" - -#, php-format -#~ msgid "Fail create the directory: %s" -#~ msgstr "Сбой создания папки: %s" - -#~ msgid "Web checks are built correctly" -#~ msgstr "Веб проверки разработаны верно" - -#~ msgid "Webchecks configuration is empty" -#~ msgstr "Конфигурации веб проверок пусты" - -#~ msgid "HTTP auth (login)" -#~ msgstr "HTTP-авторизации (логин)" - -#~ msgid "Can not create collection package." -#~ msgstr "Пакет сборника не может быть создан." - -#~ msgid "Successful create collection package." -#~ msgstr "Успешное создание пакета сборника." - -#~ msgid "Delete collection" -#~ msgstr "Удалить сборник" - -#~ msgid "Are you sure to delete?" -#~ msgstr "Вы действительно хотите удалить?" - -#~ msgid "Error: recreate file " -#~ msgstr "Ошибка : воссоздать файл " - -#~ msgid "Success: recreate file" -#~ msgstr "Успех: воссоздать файл" - -#~ msgid "Manager collection" -#~ msgstr "Менеджер сборника" - -#~ msgid "Collections Management" -#~ msgstr "Управление сборниками" - -#~ msgid "File of collection is bigger than the limit (" -#~ msgstr "Файл сборника больше чем лимит (" - -#~ msgid "No files in collection" -#~ msgstr "Нет файлов в сборнике" - -#~ msgid "Apply changes" -#~ msgstr "Применить изменения" - -#~ msgid "Re-Apply changes" -#~ msgstr "Повторно применить изменения" - -#~ msgid "List templates" -#~ msgstr "Список шаблонов" - -#~ msgid "Edit template" -#~ msgstr "Редактировать шаблон" - -#~ msgid "Create template" -#~ msgstr "Создать шаблон" - -#~ msgid "SLA max value" -#~ msgstr "SLA макс значение" - -#~ msgid "SLA min Value" -#~ msgstr "SLA мин Значение" - -#~ msgid "SLA min value" -#~ msgstr "SLA мин значение" - -#~ msgid "Elements to apply" -#~ msgstr "Элементы для применения" - -#~ msgid "SLA Limit Value" -#~ msgstr "SLA Лимит Значений" - -#~ msgid "SLA Limit %" -#~ msgstr "SLA Лимит %" - -#~ msgid "SLA max Value" -#~ msgstr "SLA макс Значение" - -#~ msgid "Graph template editor" -#~ msgstr "Радактор шаблона графика" - -#~ msgid "Exact match" -#~ msgstr "Полное соответствие" - -#~ msgid "Sum" -#~ msgstr "Итого" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "Graph template management" -#~ msgstr "Управление шаблоном графика" - -#~ msgid "There are no defined graph templates" -#~ msgstr "Здесь нет определенных шаблонов графика" - -#~ msgid "Cleanup sucessfully" -#~ msgstr "Очистка успешна" - -#~ msgid "Cleanup error" -#~ msgstr "Ошибка очистки" - -#~ msgid "Wizard template" -#~ msgstr "Шаблон Wizard" - -#~ msgid "Undo agents to template" -#~ msgstr "Отменить агенты шаблона" - -#~ msgid "Add agents to template" -#~ msgstr "Добавить агенты к шаблону" - -#~ msgid "Please set template distinct than " -#~ msgstr "Пожалуйста, примените шаблон, отличный чем " - -#~ msgid "Apply template" -#~ msgstr "Применить шаблон" - -#~ msgid "" -#~ "This will be delete all reports created in previous template applications. " -#~ "Do you want to continue?" -#~ msgstr "" -#~ "Все отчеты, созданные в предыдущих приложениях шаблона будут удалены. Вы " -#~ "хотите продолжить?" - -#~ msgid "Clean up template" -#~ msgstr "Очистить шаблон" - -#~ msgid "Filter agent" -#~ msgstr "Агент фильтра" - -#~ msgid "Agents available" -#~ msgstr "Свободные агенты" - -#~ msgid "Select all" -#~ msgstr "Выбрать все" - -#~ msgid "Agents to apply" -#~ msgstr "Агенты для применения" - -#~ msgid "Successfully operation" -#~ msgstr "Успешная операция" - -#~ msgid ": Edit: " -#~ msgstr ": Редактировать: " - -#~ msgid "Custom Mysql template builder" -#~ msgstr "Пользовательские Mysql шаблоны разработчика" - -#~ msgid ": Create new custom" -#~ msgstr ": Cоздать нового пользавателя" - -#~ msgid "Create custom SQL" -#~ msgstr "Создать пользовательский SQL" - -#~ msgid "Could not be applied" -#~ msgstr "Не может быть применено" - -#~ msgid "reports" -#~ msgstr "отчеты" - -#~ msgid "items" -#~ msgstr "элементы" - -#~ msgid "Could not be operation" -#~ msgstr "Не могут быть операции" - -#~ msgid "Sucessfully applied" -#~ msgstr "Успешно применено" - -#~ msgid "Query SQL" -#~ msgstr "Таблица SQL" - -#~ msgid "Check it if you want to match module name literally" -#~ msgstr "" -#~ "Проверьте это, если вы хотите, чтобы имя модуля состветствовало буквально" - -#~ msgid "Module exact match" -#~ msgstr "Модуль точного совпадения" - -#~ msgid "" -#~ "Case insensitive regular expression or string for module name. For example: " -#~ "if you use this field with \"Module exact match\" enabled then this field " -#~ "has to be fulfilled with the literally string of the module name, if not you " -#~ "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " -#~ "usage in matchine 1." -#~ msgstr "" -#~ "Без учета регистра регулярное выражение или строка для имени модуля. " -#~ "Например: если вы используете это поле с \"Модуль точного совпадения\" " -#~ "включено, то это поле должно быть выполнено с буквальной строкой имени " -#~ "модуля, если вы не можете использовать регулярные выражения. Пример: " -#~ ".*usage.* будет соответствовать: cpu_usage, vram usage in matchine 1." - -#~ msgid "" -#~ "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, " -#~ "NetworK ПРОВЕРКИ" - -#~ msgid "Create report per agent" -#~ msgstr "Создание отчета агента" - -#~ msgid "Select the modules to match when create a report for agents" -#~ msgstr "Выберите модули для сравнения при создании отчета для агентов" - -#~ msgid "Modules to match" -#~ msgstr "Модули для сравнения" - -#~ msgid "SQL preview" -#~ msgstr "Просмотр SQL" - -#~ msgid "Free text to filter the modules of agents when apply this template." -#~ msgstr "" -#~ "Свободный текст для фильтрации модулей агентов, когда применяется этот " -#~ "шаблон." - -#~ msgid "Please save the SLA template for start to add items in this list." -#~ msgstr "" -#~ "Пожалуйста, сохраните SLA шаблон для начала добавления элементов в этот " -#~ "список." - -#~ msgid "Modules to match (Free text)" -#~ msgstr "Модули для сравнения (Свободный текст)" - -#~ msgid "Create a graph for each agent" -#~ msgstr "Создайте график для этого агента" - -#~ 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 "" -#~ "Если это установлено, то регулярное выражение или имя модуля соответствует " -#~ "только друг другу с агентом, вместо создания большого графика со всеми " -#~ "модулями из всех агентов." - -#~ msgid "a" -#~ msgstr "a" - -#~ msgid "Template updated successfully" -#~ msgstr "Шаблон обновлен успешно" - -#~ msgid "Not literally" -#~ msgstr "Не буквально" - -#~ msgid "" -#~ "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, NetworK CHECKS" - -#~ msgid "Please save the template to start adding items into the list." -#~ msgstr "" -#~ "Пожалуйста, сохраните шаблон, чтобы начать добавление элементов в список." - -#~ msgid "3 hours" -#~ msgstr "3 часа" - -#~ msgid "All policy agents added to delete queue" -#~ msgstr "Все агенты политики добавлены к удаленной очереди" - -#~ msgid "Policies Management" -#~ msgstr "Политика Управления" - -#~ msgid "Policy agents cannot be added to the delete queue" -#~ msgstr "Агенты политики не могут быть добавлены к удаленной очереди" - -#~ msgid "Error updating template" -#~ msgstr "Ошибка при обновлении шаблона" - -#~ msgid "Delete all agents" -#~ msgstr "Удалить все агенты политики" - -#~ msgid "All the policy agents will be deleted" -#~ msgstr "Все агенты политики будут удалены" - -#~ msgid "A policy with agents cannot be deleted. Purge it first" -#~ msgstr "Политика с агентами не может быть удалена. Очистить ее первой" - -#~ msgid "Deleting all policy agents" -#~ msgstr "Удаление всех агентов политики" - -#~ msgid "Pending update policy only database" -#~ msgstr "Режим ожидания принципов обновления только в базе данных" - -#~ msgid "Policy updated" -#~ msgstr "Политика обновлена" - -#~ msgid "Linking" -#~ msgstr "Создаётся ссылка на файл" - -#~ msgid "Pending update policy" -#~ msgstr "Режим ожидания принципов обновления" - -#~ msgid "Queue" -#~ msgstr "Очередь" - -#~ msgid "External alerts" -#~ msgstr "Внешние оповещения" - -#~ msgid "Could not be added module." -#~ msgstr "Модуль не может быть добавлен." - -#~ msgid "" -#~ "The module type in Data configuration is empty, take from combo box of form." -#~ msgstr "" -#~ "Тип модуля в данных конфигурации пуст, возьмите из выпадающего списка на " -#~ "форме." - -#~ msgid "" -#~ "The module name in Data configuration is empty, take from text field of form." -#~ msgstr "" -#~ "Имя модуля в конфигурации данных пусто, возьмите из текстового поля формы." - -#~ msgid "" -#~ "Successfully added to delete pending modules. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Успешно добавлено к удаленным модулям в режиме ожидания. Будут удалены в " -#~ "следующем приложении политики." - -#~ msgid "Could not be added module(s). You must select a policy" -#~ msgstr "Не удалось добавить модули). Вы должны выбрать политику" - -#, php-format -#~ msgid "Successfully added module(s) (%s/%s) to policy %s" -#~ msgstr "Успешно добавлену модуль(и) (%s/%s) к политике %s" - -#, php-format -#~ msgid "Could not be added module(s) (%s/%s) to policy %s" -#~ msgstr "Не удается добавить модуль(и) (%s/%s) к политике %s" - -#~ msgid "Successfully added module." -#~ msgstr "Успешно добавлен модуль." - -#~ msgid "" -#~ "If you change this description, you must change into the text of Data " -#~ "configuration." -#~ msgstr "" -#~ "Если вы измените это описание, вы должны изменить текст данных конфигурации." - -#~ msgid "Successfully reverted deletion" -#~ msgstr "Успешное восстановление удаленного" - -#~ msgid "Could not be reverted" -#~ msgstr "Не может быть востановлено" - -#~ msgid "Local component" -#~ msgstr "Местные компоненты" - -#~ msgid "Undo deletion" -#~ msgstr "Отменить удаление" - -#~ msgid "Copy selected modules to policy: " -#~ msgstr "Копировать выбранные модули к политике: " - -#~ msgid "Variable" -#~ msgstr "Переменная" - -#~ msgid "Please select any module to copy" -#~ msgstr "Пожалуйста, выберите любой модуль для копирования" - -#~ msgid "Successfully added to delete queue" -#~ msgstr "Успешно добавлено к удаленной очереди" - -#~ msgid "" -#~ "Successfully added to delete pending agents. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Успешно добавлены к удаленным агентам в режиме ожидания. Будут удалены из " -#~ "следующего приложения политики." - -#~ msgid "Are you sure to copy modules into policy?\\n" -#~ msgstr "Вы уверены, что хотите копировать модули в политике?\\n" - -#~ msgid "Agents in Policy" -#~ msgstr "Агенты в Полтике" - -#~ msgid "Could not be deleted from delete pending agents" -#~ msgstr "Не может быть удалено из удаленных агентов в режиме ожидания" - -#~ msgid "Successfully deleted from delete pending agents" -#~ msgstr "Успешно удалены из удаленных агентов в режиме ожидания" - -#~ msgid "Could not be added to delete queue" -#~ msgstr "Не может быть добавлено к удаленной очереди" - -#~ msgid "Delete agents from policy" -#~ msgstr "Удалить агенты из политики" - -#~ msgid "Add agents to policy" -#~ msgstr "Добавить агенты к политике" - -#~ msgid "R." -#~ msgstr "R." - -#~ msgid "Unlinked modules" -#~ msgstr "Несвязаные модули" - -#~ msgid "Applied" -#~ msgstr "Применено" - -#~ msgid "Not applied" -#~ msgstr "Не применено" - -#~ msgid "Applying policy" -#~ msgstr "Принципы применения" - -#~ msgid "Need apply" -#~ msgstr "Нужно применить" - -#~ msgid "Deleting from policy" -#~ msgstr "Удаление из политики" - -#~ msgid "Policy applied" -#~ msgstr "Политика применена" - -#~ msgid "Add to apply queue" -#~ msgstr "Добавить к примененной очереди" - -#~ msgid "Add to delete queue" -#~ msgstr "Добавить к удаленной очереди" - -#~ msgid "This agent can not be remotely configured" -#~ msgstr "Этот агент не может быть сконфигурирован дистанционно" - -#~ msgid "U." -#~ msgstr "U." - -#~ msgid "Last application" -#~ msgstr "Последнее приложение" - -#~ msgid "E/D" -#~ msgstr "В/О" - -#~ msgid "" -#~ "Successfully added to delete pending alerts. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Успешно добавлено к удаленным оповещениям в режиме ожидания. Будут удалены " -#~ "из следующего приложения политики." - -#~ msgid "" -#~ "Successfully added to delete the collection. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Успешно добавлено к удаленной коллекции. Будут удалены из следующего " -#~ "приложения политики." - -#~ msgid "Created successfuly" -#~ msgstr "Создано успешно" - -#~ msgid "Deleted action successfuly" -#~ msgstr "Действие удалено успешно" - -#~ msgid "Added action successfuly" -#~ msgstr "Действие добавлено успешно" - -#~ msgid "Policy module" -#~ msgstr "Модуль политики" - -#~ msgid "Add policy" -#~ msgstr "Добавить политику" - -#~ msgid "Free text for filter" -#~ msgstr "Свободный текст для фильтра" - -#~ msgid "List of modules unlinked" -#~ msgstr "Список несвязанных модулей" - -#~ msgid "Module is not selected" -#~ msgstr "Модуль не выбран" - -#~ msgid "Select inventory module" -#~ msgstr "Выбрать модуль инвентаризации" - -#~ msgid "Linking modules" -#~ msgstr "Соединение модулей" - -#~ msgid "Error: Update linking modules to policy" -#~ msgstr "Ошибка: Обновление модулей соединения с политикой" - -#~ msgid "Success: Update linking modules to policy" -#~ msgstr "Успех: Обновление модулей соединения с политикой" - -#~ msgid "Free text for filter (*)" -#~ msgstr "Свободный текст для фильтра (*)" - -#~ msgid "Link pending modules" -#~ msgstr "Ссылка модулей ожидания" - -#~ msgid "Add to apply queue only for database" -#~ msgstr "Добавить применение очереди только для базы данных" - -#~ msgid "Operation cannot be deleted from the queue" -#~ msgstr "Операция не может быть удалена из очереди" - -#~ msgid "Operation successfully deleted from the queue" -#~ msgstr "Операция успешно удалена из очереди" - -#~ msgid "Update pending agents" -#~ msgstr "Обновить агенты в режиме ожидания" - -#~ msgid "Update pending" -#~ msgstr "Обновить режим ожидания" - -#~ msgid "Operations cannot be deleted from the queue" -#~ msgstr "Операции не могут быть удалены из очереди" - -#~ msgid "Operations successfully deleted from the queue" -#~ msgstr "Операции успешно удалены из очереди" - -#~ msgid "Will be linked in the next policy application" -#~ msgstr "Будет связано в следующем приложении политики" - -#~ msgid "Unlink pending modules" -#~ msgstr "Несвязанные модули ожидания" - -#~ msgid "Delete pending file collections" -#~ msgstr "Удалить коллекции файлов режима ожидания" - -#~ msgid "Delete pending plugins" -#~ msgstr "Удалить плагины режима ожидания" - -#~ msgid "Delete pending external alerts" -#~ msgstr "Удалить внешние оповещения режима ожидания" - -#~ msgid "Will be unlinked in the next policy application" -#~ msgstr "Будет несвязано в следующем приложении политики" - -#~ msgid "Delete pending" -#~ msgstr "Удалить ожидание" - -#~ msgid "Delete pending modules" -#~ msgstr "Удалить модули ожидания" - -#~ msgid "Delete pending inventory modules" -#~ msgstr "Удалять модулей инвентаризации режима ожидания" - -#~ msgid "Delete pending agents" -#~ msgstr "Удалить агенты режима ожидания" - -#~ msgid "Will be deleted in the next policy application" -#~ msgstr "Будет удалено в следующем приложении политики" - -#~ msgid "Delete pending alerts" -#~ msgstr "Удалить оповещения режима ожидания" - -#~ msgid "Finished" -#~ msgstr "Завершено" - -#~ msgid "Delete from queue" -#~ msgstr "Удалить из очереди" - -#~ msgid "This operation could take a long time" -#~ msgstr "Эта операция может занять много времени" - -#~ msgid "Apply (database and files)" -#~ msgstr "Применить (базу данных и файлы)" - -#~ msgid "Complete" -#~ msgstr "Завершить" - -#~ msgid "Apply (only database)" -#~ msgstr "Применить (только базу данных)" - -#~ msgid "Incomplete" -#~ msgstr "Не завершено" - -#~ msgid "Queue summary" -#~ msgstr "Очередь резюме" - -#~ msgid "Advices" -#~ msgstr "Советы" - -#~ msgid "Queue filter" -#~ msgstr "Фильтр очереди" - -#~ msgid "Duplicated or incompatible operation in the queue" -#~ msgstr "Дублированный или несовместимые операции в очереди" - -#~ msgid "Operation successfully added to the queue" -#~ msgstr "Операция успешно добавлена к очереди" - -#~ msgid "Operation cannot be added to the queue" -#~ msgstr "Операция не может быть добавлена к очереди" - -#~ msgid "Empty queue" -#~ msgstr "Пустая очередь" - -#~ msgid "Delete all" -#~ msgstr "Удалить всё" - -#~ msgid "Cannot be added to delete pending plugins." -#~ msgstr "Не может быть добавлено к удаленным плагинам в режиме ожидания." - -#~ msgid "" -#~ "Successfully added to delete pending plugins. Will be deleted in the next " -#~ "policy application." -#~ msgstr "" -#~ "Успешно добавлено к удаленным плагинам в режиме ожидания. Будут удалены из " -#~ "следующего приложения политики." - -#~ msgid "Ac." -#~ msgstr "Ac." - -#~ msgid "Error validating alert(s)" -#~ msgstr "Ошибка подтверждения оповещения(й)" - -#~ msgid "Error processing action" -#~ msgstr "Ошибка обработки действий" - -#~ msgid "Builder event alert" -#~ msgstr "Разработчик событий оповещений" - -#~ msgid "List event alerts" -#~ msgstr "Список событий оповещений" - -#~ msgid "Alert Template" -#~ msgstr "Шаблон Оповещения" - -#~ msgid "Modules in policy agents" -#~ msgstr "Модули в политике агентов" - -#~ msgid "Duplicated alert" -#~ msgstr "Дублированные оповещения" - -#~ msgid "Window" -#~ msgstr "Окно" - -#~ msgid "View associated rules" -#~ msgstr "Посмотреть похожие правила" - -#~ msgid "Move down" -#~ msgstr "Переместить вниз" - -#~ msgid "Move up" -#~ msgstr "Переместить вверх" - -#~ msgid "Val." -#~ msgstr "Подтв." - -#~ msgid "This field will be processed with regexp" -#~ msgstr "Это поле будет обрабатываться с регулярным выражением" - -#~ msgid "User comment" -#~ msgstr "комментарий пользователя" - -#~ msgid "Configure event rule" -#~ msgstr "Настройка правил события" - -#~ msgid "List event rules" -#~ msgstr "Список правил событий" - -#~ msgid "Rule evaluation mode" -#~ msgstr "Правила оценки режима" - -#~ msgid "Field 1" -#~ msgstr "Поле1" - -#~ msgid "Field 2" -#~ msgstr "Поле 2" - -#~ msgid "Could not be created, please fill alert name" -#~ msgstr "Не может быть создано, пожалуйста, заполните имя оповещения" - -#~ msgid "Please Read" -#~ msgstr "Пожалуйста, Прочитайте" - -#~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert " -#~ "list of events." -#~ msgstr "" -#~ "Поскольку оповещение может содержать несколько действий. Вы можете " -#~ "редактировать их из списка оповещений событий." - -#~ msgid "Field 3" -#~ msgstr "Поле 3" - -#~ msgid "Configure event alert" -#~ msgstr "Настройка событий оповещения" - -#~ msgid "Error updating rule operators" -#~ msgstr "Ошибка при обновлении правил операторов" - -#~ msgid "Operator" -#~ msgstr "Оператор" - -#~ msgid "Group by" -#~ msgstr "Группировать по" - -#~ msgid "Event rules" -#~ msgstr "Правила события" - -#~ msgid "Error creating rule" -#~ msgstr "Ошибка при создании правил" - -#~ msgid "Successfully created rule" -#~ msgstr "Правила созданы успешно" - -#~ msgid "Error updating rule" -#~ msgstr "Ошибка приобновлении правил" - -#~ msgid "Successfully updating rule" -#~ msgstr "Успешное обновление правила" - -#~ msgid "Successfully update rule operators" -#~ msgstr "Успешное обновление правил операртора" - -#~ msgid "(Agent)" -#~ msgstr "(Агент)" - -#~ msgid "Logic expression for these rules:" -#~ msgstr "Логическое выражение для этих правил:" - -#~ msgid "Failed: remove the alerts for this modules, please check." -#~ msgstr "Сбой: удалить оповещения для этого модуля, пожалуйста, проверьте." - -#, php-format -#~ msgid "Successfully updated alerts (%s / %s)" -#~ msgstr "Оповещения успешно обновлены (%s / %s)" - -#~ msgid "Success: remove the alerts." -#~ msgstr "Успех: удалить оповещения." - -#~ msgid "SNMP Alerts to be deleted" -#~ msgstr "SNMP оповещения будут удалены" - -#~ msgid "Success: create the alerts." -#~ msgstr "Успех: создать оповещения." - -#~ msgid "Update operators" -#~ msgstr "Обновить операторов" - -#~ msgid "Modules agents in policy" -#~ msgstr "Агенты модуля в политике" - -#~ msgid "Failed: create the alerts for this modules, please check." -#~ msgstr "Сбой: создать оповещения для этого модуля, пожалуйста, проверьте." - -#~ msgid "Custom OID" -#~ msgstr "Пользователь OID" - -#~ msgid "Error parsing MIB" -#~ msgstr "Ошибка разбора MIB" - -#, php-format -#~ msgid "Unsuccessfully updated alerts (%s / %s)" -#~ msgstr "Неудачное обновление оповещений (%s / %s)" - -#~ msgid "SNMP Alerts to be edit" -#~ msgstr "SNMP оповещения будут редактированы" - -#~ msgid "Massive alert SNMP deletion" -#~ msgstr "Массивные оповещения SNMP удаления" - -#~ msgid "Massive alert SNMP edition" -#~ msgstr "Массивные оповещения SNMP редактирования" - -#~ msgid "Massive alerts policy addition" -#~ msgstr "Массивные оповещения политики добавления" - -#~ msgid "Massive alerts policy deletion" -#~ msgstr "Массивные оповещения политики удаления" - -#~ msgid "Successfully added trap custom values" -#~ msgstr "успешное добавление пользовательсих значений прерывания" - -#~ msgid "Load MIB" -#~ msgstr "Загрузить MIB" - -#, php-format -#~ msgid "Fail uploaded %s/%s traps" -#~ msgstr "Сбой загрузки %s/%s прерывания" - -#~ msgid "Fail uploaded file" -#~ msgstr "Сбой загруженного файла" - -#, php-format -#~ msgid "Uploaded %s/%s traps" -#~ msgstr "Загружено %s/%s прерываний" - -#~ msgid "Error deleting trap custom values" -#~ msgstr "Ошибка удаления обновление пользовательских значений прерывания" - -#~ msgid "Successfully deleted trap custom values" -#~ msgstr "Успешное добавление пользовательских значений прерывания" - -#~ msgid "Error updating trap custom values" -#~ msgstr "Ошибка обновления пользовательских значений прерывания" - -#~ msgid "Successfully updated trap custom values" -#~ msgstr "Успешное обновление пользовательских значений прерывания" - -#~ msgid "No change in data" -#~ msgstr "Нет изменений в данных" - -#~ msgid "Error adding trap custom values" -#~ msgstr "Ошибка при добавлении пользовательских значений прерывания" - -#~ msgid "Page" -#~ msgstr "Страница" - -#~ msgid "Filter by profile" -#~ msgstr "Фильтр по профилю" - -#~ msgid "Sets the maximum lifetime for log data in days." -#~ msgstr "Устанавливает максимальный срок службы данных журнала в днях." - -#~ msgid "Enterprise ACL setup" -#~ msgstr "Настройки предприятия ACL" - -#~ msgid "Add new ACL element to profile" -#~ msgstr "Добавить новый ACL элемент к профилю" - -#~ msgid "Section" -#~ msgstr "Раздел" - -#~ msgid "Upload MIB" -#~ msgstr "Загрузить MIB" - -#~ msgid "Log storage directory" -#~ msgstr "Директорий хранения журнала" - -#~ msgid "Directory where log data will be stored." -#~ msgstr "Директорий, где данные журнала будут сохранены." - -#~ msgid "Successfully created skin" -#~ msgstr "Скин успешно создан" - -#~ msgid "Error creating skin" -#~ msgstr "Ошибка при обновлении скина" - -#~ msgid "Error deleting skin" -#~ msgstr "Ошибка при удалении скина" - -#~ msgid "Skins configuration" -#~ msgstr "Скины конфигурации" - -#~ msgid "Create skin" -#~ msgstr "Создать скин" - -#~ msgid "Successfully deleted skin" -#~ msgstr "Скин успешно удален" - -#~ msgid "Relative path" -#~ msgstr "Относительный путь" - -#~ msgid "Skin name" -#~ msgstr "Имя скина" - -#~ msgid "Successfully updated skin" -#~ msgstr "Скин успешно обновлен" - -#~ msgid "" -#~ "Token previously configured on the destination Pandora console in order to " -#~ "use delegated authentification." -#~ msgstr "" -#~ "Маркер ранее настроенный на консоли Pandora предназначенной для " -#~ "использования делегированной аутентификации." - -#~ msgid "Auth token" -#~ msgstr "Аутентифакация признаков" - -#~ msgid "Could not be update" -#~ msgstr "Не может быть обновлено" - -#~ msgid "Pandora FMS Metaconsole item edition" -#~ msgstr "Редактирование элементов Мета консоли Pandora FMS" - -#~ msgid "Metaconsole setup" -#~ msgstr "Установка Мета консоли" - -#~ msgid "Successfully update" -#~ msgstr "Успешно обновлено" - -#~ msgid "Group/s" -#~ msgstr "Группа/ы" - -#~ msgid "Console URL" -#~ msgstr "Консоль URL" - -#~ msgid "DB Host" -#~ msgstr "Хост БД" - -#~ msgid "" -#~ "Zip file with skin subdirectory. The name of the zip file only can have " -#~ "alphanumeric characters." -#~ msgstr "" -#~ "Заархивированный файл со скином подкаталога. Название архива может иметь " -#~ "только буквы и цифры." - -#~ msgid "DB" -#~ msgstr "БД" - -#~ msgid "Number of days before data is transfered to history database." -#~ msgstr "" -#~ "Количество дней до того как данные передадутся в историю базы данных." - -#~ msgid "Console User" -#~ msgstr "Пользователь Консоли" - -#~ msgid "DB Password" -#~ msgstr "Пароль БД" - -#~ msgid "DB User" -#~ msgstr "Пользователь БД" - -#~ msgid "DB Name" -#~ msgstr "Название БД" - -#~ msgid "Compatibility" -#~ msgstr "Совместимость" - -#~ msgid "API" -#~ msgstr "API" - -#~ msgid "Console Password" -#~ msgstr "Пароль Консоли" - -#~ msgid "Error updating skin" -#~ msgstr "Ошибка при обновлении скина" - -#~ msgid "Time interval between data transfer." -#~ msgstr "Интервал времени между передачей данных." - -#~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to " -#~ "the console." -#~ msgstr "" -#~ "Перед активацией данной опции проверьте настройки ACL. Вы можете потерять " -#~ "доступ к консоли." - -#~ msgid " Bytes" -#~ msgstr " Байт" - -#~ msgid "Only validated events" -#~ msgstr "Только утвержденные события" - -#~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate " -#~ "events when change." -#~ msgstr "" -#~ "Модули инвентаризации, включенные в черный список изменений не будет " -#~ "создавать события, когда изменятся." - -#~ msgid "Out of black list" -#~ msgstr "Вне черного списка" - -#~ msgid "In black list" -#~ msgstr "В черном списке" - -#~ msgid "Pop selected modules out of blacklist" -#~ msgstr "Поп выбранных модулей из черного списка" - -#~ msgid "Enterprise options" -#~ msgstr "Параметры предприятия" - -#~ msgid "Push selected modules into blacklist" -#~ msgstr "Вставьте выбранные модули в черный список" - -#~ msgid " Caracters" -#~ msgstr " Символы" - -#~ msgid "Two attempts minimum" -#~ msgstr "Две попытки минимум" - -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" -#~ msgstr "" -#~ "Данные размеры механизма, используемого для передачи данных (по аналогии с " -#~ "буфером данных.)" - -#~ msgid " Days" -#~ msgstr " Дни" - -#~ msgid "Set 0 if never expire." -#~ msgstr "Установите 0, если никогда не истекают." - -#~ msgid " Attempts" -#~ msgstr " Попытки" - -#~ msgid " Minutes" -#~ msgstr " Минуты" - -#~ msgid "Remote Integria" -#~ msgstr "Удалить Integria" - -#~ msgid "" -#~ "Rules applied to the management of passwords. This policy applies to all " -#~ "users except the administrator." -#~ msgstr "" -#~ "Правила, применяемые к управлению паролями. Эта политика распространяется на " -#~ "всех пользователей, кроме администратора." - -#~ msgid "Remote Babel Enterprise" -#~ msgstr "Удалить Babel предприятие" - -#~ msgid "Active directory" -#~ msgstr "Активный каталог" - -#~ msgid "Remote Pandora FMS" -#~ msgstr "Удалить Pandora FMS" - -#~ msgid "Enterprise password policy" -#~ msgstr "Политика паролей предприятия" - -#~ msgid "Interpreter" -#~ msgstr "Переводчик" - -#~ msgid "Error creating inventory module" -#~ msgstr "Ошибка при создании модуля инвентаризации" - -#~ msgid "Successfully created inventory module" -#~ msgstr "Модуль инвентаризации успешно создан" - -#~ msgid "Local component management" -#~ msgstr "Управление местными компонентами" - -#~ msgid "Macros" -#~ msgstr "Макросы" - -#~ msgid "separate fields with " -#~ msgstr "разделить поля с " - -#~ msgid "Or disable Pandora FMS enterprise" -#~ msgstr "Или отключить предприятие Pandora FMS" - -#~ msgid "" -#~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" -#~ msgstr "" -#~ "Чтобы продолжить работу с Pandora FMS, пожалуйста, отключите предприятия " -#~ "путем переименования каталога предприятия в консоли.

Или свяжитесь с " -#~ "Artica на info@artica.es для действующей лицензии:" - -#~ msgid "" -#~ "This license has expired. " -#~ "

You can not get updates until you renew the license." -#~ msgstr "" -#~ " срок действия лицензии истек. " -#~ "

Вы не можете получать обновления, до тех пор вы не продлили " -#~ "лицензию." - -#, php-format -#~ msgid "" -#~ "License out of limits

" -#~ "This license allows %d agents and you have %d agents configured." -#~ msgstr "" -#~ " Лицензия выходит за допустимые пределы " -#~ "

Эта лицензия разрешает %d агентов и у вас есть %d агенты " -#~ "конфирурации.\r\n" -#~ "." - -#~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "Пожалуйста, свяжитесь с Artica на info@artica.es чтобы продлить лицензию." - -#~ msgid "Renew" -#~ msgstr "продлить срок действия" - -#~ msgid "Alerts Fired" -#~ msgstr "Оповещвния запущены" - -#~ msgid "Map made by user" -#~ msgstr "Карта выполняется пользователем" - -#~ msgid "Show a map made by user" -#~ msgstr "Показать карту, выполненную пользователем" - -#~ msgid "Limit" -#~ msgstr "Лимит" - -#~ msgid "Latest events list" -#~ msgstr "Список последних событий" - -#~ msgid "Alerts Fired report" -#~ msgstr "Отчет запуска оповещвний" - -#~ msgid "Only pending" -#~ msgstr "Только ожидающие" - -#~ msgid "Please, configure this widget before use" -#~ msgstr "Пожалуйста, настроить этот виджет перед использованием" - -#~ msgid "Show a graph of an agent module" -#~ msgstr "показать график агента модуля" - -#~ msgid "Single graph" -#~ msgstr "Один график" - -#~ msgid "Height in px (zero for auto)" -#~ msgstr "Высота в пикселях (ноль для авто)" - -#~ msgid "Show the URL content" -#~ msgstr "Показать содержание URL" - -#~ msgid "Show a report made by user" -#~ msgstr "Показать отчет, выполненный пользователем" - -#~ msgid "Welcome" -#~ msgstr "Добро пожаловать!" - -#~ msgid "" -#~ "This is an example of a dashboard widget. A widget may contain elements" -#~ msgstr "" -#~ "Это является примером панели виджета. Виджет может содержать элементы" - -#~ msgid "Welcome message to Pandora FMS" -#~ msgstr "Приветственное сообщение для Pandora FMS" - -#~ msgid "My URL" -#~ msgstr "Мой URL" - -#~ msgid "Invalid URL" -#~ msgstr "Неверный адрес (URL)" - -#~ msgid "8" -#~ msgstr "8" - -#~ msgid "No overlap" -#~ msgstr "Нет перекрытия" - -#~ msgid "10" -#~ msgstr "10" - -#~ msgid "9" -#~ msgstr "9" - -#~ msgid "11" -#~ msgstr "11" - -#~ msgid "" -#~ "To delete this message, click on the delete button on top right corner of " -#~ "this element." -#~ msgstr "" -#~ "Чтобы удалить это сообщение, нажмите на кнопку Удалить в правом верхнем углу " -#~ "этого элемента." - -#~ msgid "" -#~ "To do so, just click on the title and drag and drop it to the desired place." -#~ msgstr "" -#~ "Для этого просто нажмите на название и перетащить его в нужное место." - -#~ msgid "" -#~ "To add more elements, click on \"Add widgets\" on the top of this " -#~ "page." -#~ msgstr "" -#~ "Чтобы добавить больше элементов, нажмите на \"Add widgets\" на " -#~ "верхней части этой страницы." - -#~ msgid "Thanks for using Pandora FMS" -#~ msgstr "Спасибо за использование Pandora FMS" - -#~ msgid "Show a map of the monitored network" -#~ msgstr "Показать карту контролируемой сети" - -#~ msgid "Panel with a message" -#~ msgstr "Панель с сообщением" - -#~ msgid "My Post" -#~ msgstr "Мой пост" - -#~ msgid "12" -#~ msgstr "12" - -#~ msgid "General and quick visual maps report" -#~ msgstr "Общий и быстрый визуальный отчет карты" - -#~ msgid "Maps status" -#~ msgstr "Статус карт" - -#~ msgid "Dashboard replicate" -#~ msgstr "Информационная панель копирования" - -#~ msgid "Show a list of global monitor health" -#~ msgstr "Показать список глобальный монитор здоровья" - -#~ msgid "Show a defined custom graph" -#~ msgstr "Показать определенный график пользователя" - -#~ msgid "Groups status" -#~ msgstr "Статус групп" - -#~ msgid "General and quick group status report" -#~ msgstr "Общие и быстрый отчет статуса группы" - -#~ msgid "Widget cannot be loaded" -#~ msgstr "Виджет не может быть загружен" - -#~ msgid "Delete widget" -#~ msgstr "Удалить виджет" - -#~ msgid "Configure widget" -#~ msgstr "Настройка виджета" - -#~ msgid "Replicate Dashboard" -#~ msgstr "Репликация информационной панели" - -#~ msgid "Group Dashboards" -#~ msgstr "Группа информационных панелей" - -#~ msgid "Successfully copyed" -#~ msgstr "Успешно копировано" - -#~ msgid "Source user's group" -#~ msgstr "Источник группы пользователя" - -#~ msgid "Destination user's group" -#~ msgstr "Назначение группы пользователя" - -#~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "" -#~ "Не копируется. Ошибка при копировании данных. Вы должны выбрать " -#~ "информационную панель" - -#~ msgid "Not copyed. Error copying data" -#~ msgstr "Не копируется. Ошибка при копировании данных." - -#~ msgid "Dashboard successfuly updated" -#~ msgstr "Информационная панель успешно загружена" - -#~ msgid "Please, configure the widget again to recover it" -#~ msgstr "Пожалуйста, настройте виджет снова для его восстановления" - -#~ msgid "Pause" -#~ msgstr "Пауза" - -#~ msgid "Dashboard successfuly created" -#~ msgstr "Информационная панель успешно создана" - -#~ msgid "Could not create dashboard" -#~ msgstr "Информационная панель не может быть создана" - -#~ msgid "Could not update dashboard" -#~ msgstr "Информационная панель не может быть обновлена" - -#~ msgid "Play" -#~ msgstr "Воспроизведение" - -#~ msgid "Previous Dashboard" -#~ msgstr "Предыдущая панель" - -#~ msgid "Slides mode" -#~ msgstr "Режим слайдов" - -#~ msgid "Next Dashboard" -#~ msgstr "Следующая панель" - -#~ msgid "Add dashboard" -#~ msgstr "Добавить панель" - -#~ msgid "Next slide in" -#~ msgstr "Следующий слайд в" - -#~ msgid "Search results for" -#~ msgstr "Результаты поиска для" - -#~ msgid "Private dashboard" -#~ msgstr "Частная панель инструментов" - -#~ msgid "Dashboard options" -#~ msgstr "Параметры Панели инструментов" - -#~ msgid "Add new dashboard view" -#~ msgstr "Добавить просмотр новой панели инструментов" - -#~ msgid "Delete dashboard" -#~ msgstr "Удалить панель инструментов" - -#~ msgid "Add widget" -#~ msgstr "Добавить виджет" - -#~ msgid "Update dashboard" -#~ msgstr "Обновить панель инструментов" - -#~ msgid "Create networkmap" -#~ msgstr "Создать карту сети" - -#~ msgid "Succesful updated" -#~ msgstr "Успешно обновлено" - -#~ msgid "Unsucessful updated" -#~ msgstr "Неудачно обновлено" - -#~ msgid "Tactical View" -#~ msgstr "Тактический просмотр" - -#~ msgid "Fields" -#~ msgstr "Поля" - -#~ msgid "Create visualmap" -#~ msgstr "Создать визуальную карту" - -#~ msgid "Screens" -#~ msgstr "Экраны" - -#~ msgid "The user is not in neither group with EW profile" -#~ msgstr "Пользователь не в одной группе с НОВЫМ профилем" - -#~ msgid "Add new widget" -#~ msgstr "Добавить новый виджет" - -#~ msgid "Can't connect to Pandora FMS instance" -#~ msgstr "Не удается подключиться к экземпляру Pandora FMS" - -#~ msgid "More events" -#~ msgstr "Еще события" - -#~ msgid "Module description" -#~ msgstr "Описание модуля" - -#~ msgid "Web check" -#~ msgstr "Веб проверка" - -#~ msgid "Create module" -#~ msgstr "Создать модуль" - -#~ msgid "Click Create to continue" -#~ msgstr "Нажмите здесь чтобы продолжить" - -#~ msgid "Step by step wizard" -#~ msgstr "Пошаговый мастер" - -#~ msgid "Please, select a module" -#~ msgstr "Пожалуйста, выберите модуль" - -#~ msgid "Please, set a valid IP address" -#~ msgstr "Пожалуйста, выберите действительный IP адрес" - -#~ msgid "Edit agent" -#~ msgstr "Редакторивать агента" - -#~ msgid "Preview" -#~ msgstr "Предварительный просмотр" - -#~ msgid "The alert you are trying to add is already in the list of alerts" -#~ msgstr "То оповещение, которое вы пытаетесь добавить уже в списке оповещений" - -#~ msgid "Please, select an alert" -#~ msgstr "Пожалуйста, выберите оповещение" - -#~ msgid "Another agent already exists with the same name" -#~ msgstr "Другой агент уже существует с таким именем" - -#~ msgid "Please, select an agent" -#~ msgstr "Пожалуйста, выберите агента" - -#~ msgid "String" -#~ msgstr "Строка" - -#~ msgid "Invalid characters founded in module name" -#~ msgstr "Недопустимые символы найдены в имени модуля" - -#~ msgid "Select the agent to be edited or deleted" -#~ msgstr "Выберите агенту для изменения или удаления" - -#~ msgid "Please, set an interval" -#~ msgstr "Пожалуйста, установите интервал" - -#~ msgid "Create Module" -#~ msgstr "Создать Модуль" - -#~ msgid "Select the agent where the module will be created" -#~ msgstr "Выберитв агента, в котором модуль будет создан" - -#~ msgid "Please, set a name" -#~ msgstr "Пожалуйста, выберите имя" - -#~ msgid "Advanced configuration" -#~ msgstr "Дополнительные настройки" - -#~ msgid "Select the module where the alert will be created" -#~ msgstr "Выберите модуль, в котором оповещение будет создано" - -#~ msgid "Select the module to be edited or deleted" -#~ msgstr "Выберите модуль для редактирования или удаления" - -#~ msgid "Edit module" -#~ msgstr "Редактировать модуль" - -#, php-format -#~ msgid "Could not be update: Error in %s" -#~ msgstr "Не может быть обновлено: Ошибка в %s" - -#~ msgid "Groups synchronization" -#~ msgstr "Синхронизация групп" - -#~ msgid "Alerts synchronization" -#~ msgstr "Синхронизация оповещений" - -#~ msgid "Components synchronization" -#~ msgstr "Синхронизация компонентов" - -#~ msgid "Tags synchronization" -#~ msgstr "Синхронизация тегов" - -#~ msgid "Select the alert to be edited or deleted" -#~ msgstr "Выберите оповещение для редактирования или удаления" - -#~ msgid "Group View" -#~ msgstr "Просмотр группы" - -#~ msgid "Synchronizing" -#~ msgstr "Синхронизация" - -#~ msgid "Users synchronization" -#~ msgstr "Синхронизация пользователей" - -#~ msgid "Customize sections" -#~ msgstr "Настройка разделов" - -#, php-format -#~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" -#~ msgstr "" -#~ "Ошибка при создании / обновлении следующих элементов группы / профили / " -#~ "профили пользователей (%d/%d/%d)" - -#, php-format -#~ msgid "Created user %s" -#~ msgstr "Созданный пользователь %s" - -#, php-format -#~ msgid "Error creating user %s" -#~ msgstr "Ошибка создания пользователя %s" - -#, php-format -#~ msgid "Updated user %s" -#~ msgstr "Обновленный пользователь %s" - -#, php-format -#~ msgid "Error updating user %s" -#~ msgstr "Ошибка обновления пользователя %s" - -#~ msgid "Passwords" -#~ msgstr "Пароли" - -#~ msgid "Pop selected sections to disable it" -#~ msgstr "Вставьте выбранные разделы чтобы отключить их" - -#~ msgid "Push selected sections to enable it" -#~ msgstr "Вставьте выбранные разделы чтобы подключить их" - -#~ msgid "Enabled sections" -#~ msgstr "Включенные разделы" - -#~ msgid "Disabled sections" -#~ msgstr "Отключенные разделы" - -#~ msgid "Copy profile" -#~ msgstr "Копировать профиль" - -#~ msgid "Check this to copy user original profiles" -#~ msgstr "Проверьте это для копирования оригинальных профилей пользователей" - -#~ msgid "New profile" -#~ msgstr "Новый профиль" - -#~ msgid "This metaconsole" -#~ msgstr "Даная Мета консоль" - -#~ msgid "Profile mode" -#~ msgstr "Режим профиля" - -#, php-format -#~ msgid "" -#~ "The followings elements groups/profiles/user profiles were created/updated " -#~ "sucessfully (%d/%d/%d)" -#~ msgstr "" -#~ "Следующие элементы группы / профили / профили пользователей были созданы / " -#~ "обновлены успешно (%d/%d/%d)" - -#~ msgid "Profile synchronization mode." -#~ msgstr "Режим синхронизации профиля." - -#~ msgid "Sync" -#~ msgstr "Синхр" - -#, php-format -#~ msgid "Error connecting to %s" -#~ msgstr "Ошибка соединения с %s" - -#, php-format -#~ msgid "Error creating %s components groups " -#~ msgstr "Ошибка создания %s компонентов группы " - -#~ msgid "Could not be delete" -#~ msgstr "Не может быть удалено" - -#, php-format -#~ msgid "Error creating/updating %s/%s local components " -#~ msgstr "Ошибка при создании/обновление %s/%s местных компонентов " - -#, php-format -#~ msgid "Created %s component groups" -#~ msgstr "Созданные %s компоненты группы" - -#, php-format -#~ msgid "Error creating/updating %s/%s network components " -#~ msgstr "Ошибка при создании/обновление %s/%s сетевых компонентов " - -#, php-format -#~ msgid "Created/Updated %s/%s local components" -#~ msgstr "Создано/Обновлено %s/%s местные компоненты" - -#~ msgid "Metaconsole elements" -#~ msgstr "элементы Мета консоли" - -#, php-format -#~ msgid "Created/Updated %s/%s network components" -#~ msgstr "Созданы/Обновлены %s/%s сетевые компоненты" - -#~ msgid "Visual" -#~ msgstr "Визуальный" - -#~ msgid "The number of elements retrieved for each instance in some views." -#~ msgstr "" -#~ "Число элементов полученных для каждого экземпляра в некоторых просмотрах." - -#, php-format -#~ msgid "Created/Updated %s/%s actions" -#~ msgstr "Создано/Обновлено %s/%s действий" - -#, php-format -#~ msgid "Error creating/updating %s/%s templates" -#~ msgstr "Ошибка создания/ обновление %s/%s шаблонов" - -#, php-format -#~ msgid "Created/Updated %s/%s templates" -#~ msgstr "Созданы/Обновлены %s/%s шаблоны" - -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " -#~ msgstr "" -#~ "Полный путь к консоли Pandora без последнего символа \"/\". Например " - -#~ msgid "Only database" -#~ msgstr "Только база данных" - -#~ msgid "There aren't server added to metaconsole" -#~ msgstr "Здесь нет сервера, добавленного к мата консоли" - -#, php-format -#~ msgid "Error creating/updating %s/%s comamnds" -#~ msgstr "Ошибка при создании/обновление %s/%s комманд" - -#, php-format -#~ msgid "Created/Updated %s/%s commands" -#~ msgstr "Созданы/Обновлены %s/%s комманды" - -#, php-format -#~ msgid "Error creating/updating %s/%s actions" -#~ msgstr "Ошибка при создании/обновление %s/%s действий" - -#~ msgid "Propagation" -#~ msgstr "Пропагация" - -#~ msgid "General setup" -#~ msgstr "Общие настройки" - -#~ msgid "Customize translation" -#~ msgstr "Настроить перевод" - -#~ msgid "Original string" -#~ msgstr "Оригинальная строка" - -#~ msgid "Please search for anything text." -#~ msgstr "Пожалуйста ищете весь текст." - -#~ msgid "Active events history" -#~ msgstr "История активных событий" - -#, php-format -#~ msgid "Created/Updated %s/%s tags" -#~ msgstr "Создано/Обновлено %s/%s тегов" - -#~ msgid "Consoles Setup" -#~ msgstr "Настройка Консолей" - -#~ msgid "Translation in selected language" -#~ msgstr "Перевод на выбранном языке" - -#, php-format -#~ msgid "Error creating/updating %s/%s tags" -#~ msgstr "Ошибка при создании/ обновление %s/%s тегов" - -#~ msgid "Strings translation" -#~ msgstr "Перевод строк" - -#~ msgid "Performance setup" -#~ msgstr "Настройка производительности" - -#, php-format -#~ msgid "Error creating/updating %s/%s groups" -#~ msgstr "Ошибка при создании/обновление %s/%s групп" - -#~ msgid "Consoles setup" -#~ msgstr "Настройка консолей" - -#~ msgid "redirected ip server in conf into source DB" -#~ msgstr "перенаправленный IP сервер в конф исходной БД" - -#, php-format -#~ msgid "Created/Updated %s/%s groups" -#~ msgstr "Создано/Обновлено %s/%s групп" - -#~ msgid "created agent modules in destination DB" -#~ msgstr "созданные агенты модулей в назначенной БД" - -#~ msgid "created agent in destination DB" -#~ msgstr "созданный агент в назначенной БД" - -#~ msgid "Visual setup" -#~ msgstr "Визуальная настройка" - -#~ msgid "Passwords setup" -#~ msgstr "Настройка паролей" - -#~ msgid "created alerts actions in destination DB" -#~ msgstr "созданные агенты действий в назначенной БД" - -#~ msgid "created agent alerts in destination DB" -#~ msgstr "созданный агент оповещений в назначенной БД" - -#~ msgid "Source Server" -#~ msgstr "Сервер Источника" - -#~ msgid "disabled agent in source DB" -#~ msgstr "отключенный агент в исходной БД" - -#~ msgid "Add agents to destination server" -#~ msgstr "Добавить агенты к назначенному серверыу" - -#~ msgid "Move" -#~ msgstr "Перемещение" - -#~ msgid "Destination Server" -#~ msgstr "Назначенный Сервер" - -#~ msgid "Successfully moved" -#~ msgstr "Успешно перемещено" - -#~ msgid "Could not be moved" -#~ msgstr "Не может быть перемещено" - -#~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -#~ "Console." -#~ msgstr "" -#~ "Не установленный IP мета консоли в \"черном списоке IP с доступом API\" " -#~ "предполагаемой консоли Pandora." - -#, php-format -#~ msgid "Deleted %s policy modules" -#~ msgstr "Удалено %s модулей политики" - -#, php-format -#~ msgid "Error deleting %s policy modules" -#~ msgstr "Ошибка удаления %s модулей политики" - -#, php-format -#~ msgid "Error creating/updating %s/%s policy modules" -#~ msgstr "Ошибка создания/обновление %s/ %s модулей политики" - -#, php-format -#~ msgid "Created %s policies" -#~ msgstr "Создано %s правил" - -#, php-format -#~ msgid "Error creating %s policies" -#~ msgstr "Ошибка создания %s правил" - -#~ msgid "Policies apply" -#~ msgstr "Правила применения" - -#~ msgid "Policies queue" -#~ msgstr "Очередь Политики" - -#, php-format -#~ msgid "Created/Updated %s/%s policy modules" -#~ msgstr "Создано/Обновлено %s/%s модулей политики" - -#~ msgid "Policy Manager" -#~ msgstr "Манеджер политики" - -#~ msgid "Apply policies" -#~ msgstr "Применить Политику" - -#, php-format -#~ msgid "Error creating %s policy alerts" -#~ msgstr "Ошибка создания %s оповещений политики" - -#, php-format -#~ msgid "Created %s policy alerts" -#~ msgstr "Создано %s оповещений политики" - -#~ msgid "" -#~ "In order to have the best user experience with Pandora FMS, we strongly " -#~ "recommend to use" -#~ msgstr "" -#~ "Для того чтобы улучшить пользовательский опыт работы с Pandora FMS, мы " -#~ "настоятельно рекомендуем использовать" - -#~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." -#~ msgstr "" -#~ "Mozilla Firefox or Google Chrome браузеры." - -#, php-format -#~ msgid "Error deleting %s policy alerts" -#~ msgstr "Ощибка удаления %s оповещений политики" - -#, php-format -#~ msgid "Deleted %s policy alerts" -#~ msgstr "Удалено %s оповещений политики" - -#~ msgid "" -#~ "Metaconsole needs previous activation from regular console, please contact " -#~ "system administrator if you need assistance.
" -#~ msgstr "" -#~ "Мета Консоль нуждается в предыдущей активации от обычной консоли, " -#~ "пожалуйста, свяжитесь с системным администратором, если вы нуждаетесь в " -#~ "помощи.
" - -#~ msgid "Network traffic" -#~ msgstr "Сетевой трафик" - -#~ msgid "Create new report" -#~ msgstr "Создать новый отчет" - -#~ msgid "Monitors view" -#~ msgstr "Просмотр мониторов" - -#~ msgid "Templates wizard" -#~ msgstr "Шаблоны мастера" - -#~ msgid "Report templates" -#~ msgstr "Шаблоны отчета" - -#~ msgid "Agent management" -#~ msgstr "Управление агентом" - -#~ msgid "Live view" -#~ msgstr "Живой просмотр" - -#~ msgid "Metasetup" -#~ msgstr "Мета настройки" - -#~ msgid "Tag management" -#~ msgstr "Управление тегом" - -#~ msgid "Alert management" -#~ msgstr "Управление оповещением" - -#~ msgid "Category management" -#~ msgstr "Управление категорией" - -#~ msgid "Policy management" -#~ msgstr "Управление политикой" - -#~ msgid "Back to login" -#~ msgstr "Вернуться на страницу входа" - -#~ msgid "Agents movement" -#~ msgstr "Агенты движения" - -#~ msgid "Group management" -#~ msgstr "управление группами" - -#~ msgid "Unsuccessful update the networkmap." -#~ msgstr "Неудачное обновление карты сети." - -#~ msgid "Unnamed " -#~ msgstr "Неназвано " - -#~ msgid "Successful update the networkmap." -#~ msgstr "Карта сети успешно обновлена." - -#~ msgid "Show modules" -#~ msgstr "Показать модули" - -#~ msgid "Filter by agents" -#~ msgstr "Фильтр по агентам" - -#~ msgid "Filter by modules" -#~ msgstr "Фильтр по модулям" - -#~ msgid "Agent modules" -#~ msgstr "Модули агента" - -#, php-format -#~ msgid "Cannot connect to %s Pandora to generate networkmap." -#~ msgstr "Не удается соединиться с %s Pandora для генерирования карты сети" - -#~ msgid "Show modulegroup" -#~ msgstr "Показать модуль группы" - -#~ msgid "There is no group selected" -#~ msgstr "Здесь нет выбранных групп" - -#~ msgid "Show children Metaconsole" -#~ msgstr "Показать детскую мета консоль" - -#~ msgid "Undo changes" -#~ msgstr "Отменить изменения" - -#~ msgid "String to check" -#~ msgstr "Строка для проверки" - -#~ msgid "Check type" -#~ msgstr "Проверить тип" - -#~ msgid "Delete check" -#~ msgstr "Удалить проверку" - -#~ msgid "Add check" -#~ msgstr "Добавить проверку" - -#~ msgid "Response" -#~ msgstr "Ответ" - -#~ msgid "Latency" -#~ msgstr "Латентность" - -#~ msgid "Various" -#~ msgstr "Разное" - -#~ msgid "Thresholds" -#~ msgstr "Пороговые значения" - -#~ msgid "Web configuration" -#~ msgstr "Веб конфигурация" - -#~ msgid "Alerts in module" -#~ msgstr "Оповещения в модуле" - -#~ msgid "Checks" -#~ msgstr "Проверки" - -#~ msgid "Deleted modules" -#~ msgstr "Удаленные модули" - -#, php-format -#~ msgid "Error adding module %s" -#~ msgstr "Ошибка при добавлении модуля %s" - -#~ msgid "" -#~ "There was an error creating the alerts, the operation has been cancelled" -#~ msgstr "Ошибка при создании оповещений, операция была отменена" - -#, php-format -#~ msgid "Could not create agent %s" -#~ msgstr "Агент не может быть создан %s" - -#~ msgid "Add selected modules to agent" -#~ msgstr "Добавить выбранные модули к агенту" - -#~ msgid "Agent successfully updated" -#~ msgstr "Агент успешно обновлен" - -#~ msgid "Agent successfully added" -#~ msgstr "Агент успешно добавлен" - -#, php-format -#~ msgid "Could not update agent %s" -#~ msgstr "Агент не может быть обновлен %s" - -#, php-format -#~ msgid "%s Modules created" -#~ msgstr "%s Модули созданы" - -#, php-format -#~ msgid "Error updating module %s" -#~ msgstr "Ошибка при обновлении модуля %s" - -#, php-format -#~ msgid "%s Modules deleted" -#~ msgstr "%s Модули удалены" - -#~ msgid "Successfully updated module." -#~ msgstr "Модуль успешно обновлен." - -#~ msgid "" -#~ "There was an error updating the alerts, the operation has been cancelled" -#~ msgstr "Произошла ошибка при обновлении оповещений, операция была отменена" - -#~ msgid "No admin user" -#~ msgstr "Нет пользователя с правами администратора" - -#~ msgid "Manage agent modules" -#~ msgstr "Управление агентом модулей" - -#~ msgid "User synchronization" -#~ msgstr "Синхронизация пользователей" - -#~ msgid "Group synchronization" -#~ msgstr "Синхронизация групп" - -#~ msgid "Customizable section" -#~ msgstr "Настраиваемые разделы" - -#~ msgid "Netflow disable custom live view filters" -#~ msgstr "Сетевой поток отключил пользовательские фильтры живого просмотра" - -#~ msgid "Tree View" -#~ msgstr "Просмотр в виде дерева" - -#~ msgid "Go to module detail" -#~ msgstr "Перейти к деталям модуля" - -#~ msgid "Go to agent detail" -#~ msgstr "Перейти к деталям агента" - -#~ msgid "Create new module" -#~ msgstr "Создать новый модуль" - -#~ msgid "Log viewer" -#~ msgstr "Просмотор журнала" - -#~ msgid "Delete alert" -#~ msgstr "Удалить оповещение" - -#~ msgid "There was a problem loading tag" -#~ msgstr "Найдена проблема при загрузке тега" - -#~ msgid "Stand By" -#~ msgstr "Поддерживаемое" - -#~ msgid "Go to Alert detail" -#~ msgstr "Перейтик деталям Оповещения" - -#~ msgid "Create new alert" -#~ msgstr "Создать новое оповещение" - -#~ msgid "Edit plugin" -#~ msgstr "Редактировать плагин" - -#~ msgid "Plugin management" -#~ msgstr "Управление плагином" - -#~ msgid "Create plugin" -#~ msgstr "Создать плагин" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Найдена проблема при агрузке оповещения" - -#~ msgid "Copy Dashboard" -#~ msgstr "Копировать панель инструментов" - -#~ msgid "Network console" -#~ msgstr "Сетевая консоль" - -#~ msgid "Start date" -#~ msgstr "Дата начала" - -#~ msgid "Custom SQL" -#~ msgstr "Пользовательские SQL" - -#~ msgid "List of elements" -#~ msgstr "Список элементов" - -#~ msgid "Export this list to CSV" -#~ msgstr "Экспорт этого списка в CSV" - -#~ msgid "Service Map" -#~ msgstr "Карта обслуживания" - -#~ msgid "Config" -#~ msgstr "Конфигурация" - -#~ msgid "Could not be updated." -#~ msgstr "Не может быть обновлено." - -#~ msgid "Success be updated." -#~ msgstr "Успех быть обновленным." - -#~ msgid "Policy: " -#~ msgstr "Политика: " - -#~ msgid "Error deleting service" -#~ msgstr "Ошибка при удалении сервиса" - -#~ msgid "Service deleted successfully" -#~ msgstr "Сервис удален успешно" - -#~ msgid "Last contact: " -#~ msgstr "Последний контакт: " - -#~ msgid "Networkmap enterprise" -#~ msgstr "Карта сетевого предприятия" - -#~ msgid "Not found networkmap." -#~ msgstr "Карта сети не найдена." - -#~ msgid "Data: " -#~ msgstr "Данные: " - -#~ msgid "Status: " -#~ msgstr "Статус: " - -#~ msgid "No collection assigned to this agent" -#~ msgstr "Нет коллекции, назначенной для этого агент" - -#~ msgid "Succesfully deleted" -#~ msgstr "Успешно удалено" - -#, php-format -#~ msgid "Networkmap enterprise - %s" -#~ msgstr "Карта сетевого производрсва - %s" - -#~ msgid "Succesfully created" -#~ msgstr "Успешно создано" - -#~ msgid "Succesfully updated" -#~ msgstr "Успешно обновлено" - -#~ msgid "Succesfully duplicate" -#~ msgstr "Успешно дублировано" - -#~ msgid "Could not be duplicated" -#~ msgstr "Не может быть дублировано" - -#~ msgid "The networkmap has been generated already." -#~ msgstr "Карта сети была сформирована уже." - -#~ msgid "Networkmap resized." -#~ msgstr "Размер карты сети изменен." - -#~ msgid "Error process map" -#~ msgstr "Ошибка процесса карты" - -#~ msgid "Update networkmap" -#~ msgstr "Обновить карту сети" - -#~ msgid "Save networkmap" -#~ msgstr "Сохранить карту сети" - -#~ msgid "x" -#~ msgstr "x" - -#~ msgid "Size of networkmap (Width x Height)" -#~ msgstr "Размер карты сети (ширина х высота)" - -#~ msgid "This operation can't be undone, because it is on DB." -#~ msgstr "Эта операция не может быть отменена, так как она находится на БД." - -#~ msgid "Resize the networkmap" -#~ msgstr "Изменить размер карты сети" - -#~ msgid "Refresh networkmap state" -#~ msgstr "Обновить состояние карты сети" - -#~ msgid "Method generation networkmap" -#~ msgstr "Метод формирования карты сети" - -#~ msgid "Toggle the module table" -#~ msgstr "Переключить модуль таблицы" - -#~ msgid "Toggle the alert table" -#~ msgstr "Переключить оповещения таблицы" - -#~ msgid "Descripttion" -#~ msgstr "Описание" - -#~ msgid "Show Collection" -#~ msgstr "Показать коллекцию" - -#~ msgid "Policy outdate" -#~ msgstr "Политика устарела" - -#~ msgid "Toggle the collection table" -#~ msgstr "Переключить коллекции таблицы" - -#~ msgid "Details of node:" -#~ msgstr "Детали узла:" - -#~ msgid "This agent has no policy assigned" -#~ msgstr "У данного агента нет назначенной политики" - -#~ msgid "Show Alert" -#~ msgstr "Показать Оповещение" - -#~ msgid "Relationship" -#~ msgstr "Взаимосвязь" - -#~ msgid "(Un-adopted)" -#~ msgstr "(Не принято)" - -#~ msgid "Show Modules" -#~ msgstr "Показать модули" - -#~ msgid "(Un-adopted) (Unlinked)" -#~ msgstr "(Не принято) (Не связаны)" - -#~ msgid "(Adopted)" -#~ msgstr "(Принято)" - -#~ msgid "PDF" -#~ msgstr "PDF" - -#~ msgid "Backup" -#~ msgstr "Резервное копирование" - -#~ msgid "Export to PDF" -#~ msgstr "Экспорт в PDF" - -#~ msgid "(Adopted) (Unlinked)" -#~ msgstr "(Принято) (Не связано)" - -#~ msgid "Error the policy haven't name." -#~ msgstr "Ошибка политики - отсутстие имени." - -#~ msgid "Create backup" -#~ msgstr "Создать резервную копию" - -#~ msgid "Lost" -#~ msgstr "Потеряно" - -#~ msgid "Backups list" -#~ msgstr "Список резервных копий" - -#, php-format -#~ msgid "Error create '%s' policy, the name exist and there aren't free name." -#~ msgstr "" -#~ "ошибка при создании '%s' политики, умя уже существует и нет свободных имен." - -#, php-format -#~ msgid "" -#~ "Warning create '%s' policy, the name exist, the policy have a name %s." -#~ msgstr "" -#~ "Предупреждение о создании '%s' политики, имя уже существует, умя для " -#~ "политики уже существует %s." - -#~ msgid "Error add the module, haven't type." -#~ msgstr "Ошибка при добавлении модуля - отсутствие типа." - -#, php-format -#~ msgid "Error add '%s' collection." -#~ msgstr "Ошибка при добавлении '%s' коллекции." - -#, php-format -#~ msgid "Success add '%s' collection." -#~ msgstr "Успешное добавление '%s' коллекции." - -#, php-format -#~ msgid "Error add '%s' agent." -#~ msgstr "Ошибка при добавлении '%s' агента." - -#, php-format -#~ msgid "Success add '%s' agent." -#~ msgstr "Успешное добавление '%s' агента." - -#, php-format -#~ msgid "Error create '%s' policy." -#~ msgstr "Ошибка при создании '%s' политики." - -#, php-format -#~ msgid "Success add '%s' module." -#~ msgstr "Успешное добавление '%s' модуля." - -#, php-format -#~ msgid "Success create '%s' policy." -#~ msgstr "Успешное создание '%s' политики." - -#, php-format -#~ msgid "Error add '%s' module." -#~ msgstr "Ошибка при добавление '%s' модуля." - -#~ msgid "Error add the module, error in tag component." -#~ msgstr "Ошибка добавления модуля, ошибка в теге компонента." - -#~ msgid "Send to email" -#~ msgstr "Отправить письмо по электронной почте" - -#~ msgid "Save to disk into path" -#~ msgstr "Сохранить на диск в пути" - -#, php-format -#~ msgid "Error add the alert, the module '%s' don't exist." -#~ msgstr "Ошибка при добавлении оповещения, модули '%s' не существуют." - -#, php-format -#~ msgid "Success add '%s' alert." -#~ msgstr "Успешное добавление '%s'оповещения." - -#, php-format -#~ msgid "Error add the alert, the template '%s' don't exist." -#~ msgstr "Ошибка при добавлении оповещения, шаблоны '%s' не существуют." - -#, php-format -#~ msgid "Success add '%s' action." -#~ msgstr "Успешное добавление '%s' действия." - -#~ msgid "Report to build" -#~ msgstr "Отчет для разработки" - -#, php-format -#~ msgid "Error add '%s' alert." -#~ msgstr "Ошибка при добавлении '%s' оповещения." - -#, php-format -#~ msgid "Error add the alert, the action '%s' don't exist." -#~ msgstr "Ошибка при добавлении оповещения, действия '%s' не существуют." - -#~ msgid "Yearly" -#~ msgstr "Ежегодно" - -#~ msgid "Hourly" -#~ msgstr "Ежечасно" - -#~ msgid "Open the attached file to view it" -#~ msgstr "Открыть вложенный файл чтобы просмотреть его" - -#~ msgid "This is the automatic generated report" -#~ msgstr "Автоматически сформированный отчет" - -#~ msgid "Save custom report to disk" -#~ msgstr "Сохранить пользовательский отчет на диск" - -#~ msgid "Send custom report by email" -#~ msgstr "Отправить пользовательский отчет по электронной почте" - -#~ msgid "Not scheduled" -#~ msgstr "Не запланировано" - -#~ msgid "Backup Pandora database" -#~ msgstr "База данных резервных копий Pandora" - -#~ msgid "Please do not answer or reply to this email" -#~ msgstr "Пожалуйста, не отвечайте на это сообщение электронной почты" - -#~ msgid "Cron jobs" -#~ msgstr "Задание Cron" - -#~ msgid "Cron extension is running" -#~ msgstr "Расширение Cron работает" - -#~ msgid "Cron extension is not running" -#~ msgstr "Cron расширение не работает" - -#~ msgid "Edit job" -#~ msgstr "Редактировать задание" - -#~ msgid "Path doesn't exists or is not writable" -#~ msgstr "Путь не существует или не доступен для записи" - -#~ msgid "Add new job" -#~ msgstr "Добавить новое задание" - -#~ msgid "Last execution" -#~ msgstr "Последнее выполнение" - -#~ msgid "Please, add the following line to your crontab file" -#~ msgstr "Пожалуйста, добавьте следующую строку в вашу вкладку cron файла" - -#~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling " -#~ "service" -#~ msgstr "" -#~ "Это расширение зависит от правильной настройки Cron, основанной на времени " -#~ "службы планирования" - -#~ msgid "Cron extension has never run or it's not configured well" -#~ msgstr "" -#~ "Расширение Cron никогда не выполнялось или не было хорошо сконфигурировано" - -#~ msgid "Scheduled jobs" -#~ msgstr "Назначенные задания" - -#~ msgid "Pandora database backup utility" -#~ msgstr "Утилита резервного копирования базы данных Pandora" - -#~ msgid "Task" -#~ msgstr "Задача" - -#~ msgid "Scheduled" -#~ msgstr "Запланировано" - -#~ msgid "First_execution" -#~ msgstr "Первое_выполнение" - -#~ msgid "" -#~ "Maybe the first run is not exactly equal to this value because the cron " -#~ "configuration is diferent." -#~ msgstr "" -#~ "Может быть, первый прогон не совсем равнен этому значению, потому что cron " -#~ "конфигурации другой." - -#~ msgid "Last run" -#~ msgstr "Последний прогон" - -#~ msgid "Force run" -#~ msgstr "Принудительное выполнение" - -#~ msgid "Path" -#~ msgstr "Путь" - -#~ msgid "First execution" -#~ msgstr "Первое выполнение" - -#~ msgid "Separator" -#~ msgstr "Разделитель" - -#~ msgid "Upload CSV file" -#~ msgstr "Загрузить CSV-файл" - -#~ msgid "Global" -#~ msgstr "Общий" - -#~ msgid "Wizard SLA" -#~ msgstr "Мастер SLA" - -#~ msgid "File processed" -#~ msgstr "Файл обрабатывается" - -#, php-format -#~ msgid "Created agent %s" -#~ msgstr "Созданный агент %s" - -#~ msgid "The CSV file must have the fields in the following order" -#~ msgstr "Файл CSV должен иметь поля в следующем порядке" - -#~ msgid "CSV format" -#~ msgstr "Формат CSV" - -#~ msgid "Translate string" -#~ msgstr "Перевести строку" - -#~ msgid "CSV import" -#~ msgstr "Импорт CSV" - -#~ msgid "Templates list" -#~ msgstr "Список шаблонов" - -#~ msgid "Advance options" -#~ msgstr "Дополнительные опции" - -#~ msgid "Templates Wizard" -#~ msgstr "Мастер Шаблонов" - -#, php-format -#~ msgid "Graph agents(%s) - %s" -#~ msgstr "График агентов(%s) - %s" - -#~ msgid "Generated" -#~ msgstr "Сгенерировано" - -#~ msgid "Simple Graph" -#~ msgstr "Простой график" - -#~ msgid "Template editor" -#~ msgstr "Редактор шаблонов" - -#~ msgid "Get PDF file" -#~ msgstr "Получить PDF файл" - -#~ msgid "% Wrong" -#~ msgstr "% Неверно" - -#~ msgid "% OK" -#~ msgstr "% OK" - -#~ msgid "Report type" -#~ msgstr "Тип отчета" - -#~ msgid "% Limit" -#~ msgstr "% Лимит" - -#~ msgid "Uknown agents" -#~ msgstr "Неизвестные агенты" - -#~ msgid "MIN Value" -#~ msgstr "МИН. Значение" - -#~ msgid "MAX Value" -#~ msgstr "МАКС. Значение" - -#~ msgid "Illegal query" -#~ msgstr "Незаконный запрос" - -#~ msgid "Last 8 hours events" -#~ msgstr "Последние события за 8 часов" - -#~ msgid "Modules under" -#~ msgstr "Модули меньше" - -#~ msgid "Modules at normal status" -#~ msgstr "Модули в нормальном статусе" - -#~ msgid "Modules at critical or warning status" -#~ msgstr "Модули в критическом или предупреждающем статусе" - -#~ msgid "Modules over or equal to" -#~ msgstr "Модули, превыщающие или равные" - -#, php-format -#~ msgid "There are no Modules over or equal to %s" -#~ msgstr "Здесь нет Модулей выше или равных %s" - -#, php-format -#~ msgid "There are no Modules under %s" -#~ msgstr "Здесь нет Модулей ниже %s" - -#~ msgid "There are no Modules at normal status" -#~ msgstr "Здесь нет Модулей в нормальном статусе" - -#~ msgid "There are no Modules under those conditions" -#~ msgstr "Здесь нет модулей под этими условиями" - -#~ msgid "Serialized data " -#~ msgstr "Последовательные данные " - -#~ msgid "Crit:" -#~ msgstr "Крит:" - -#~ msgid "There are no data." -#~ msgstr "Здесь нет данных." - -#~ msgid "Ok:" -#~ msgstr "Ок:" - -#~ msgid "Warn:" -#~ msgstr "Пред:" - -#~ msgid "Value:" -#~ msgstr "Значение:" - -#~ msgid "Shape" -#~ msgstr "Форма" - -#~ msgid "Add fictional point" -#~ msgstr "Добавить вымышленный пункт" - -#~ msgid "Rhombus" -#~ msgstr "Ромб" - -#~ msgid "Square" -#~ msgstr "Квадрат" - -#~ msgid "Circle" -#~ msgstr "Круг" - -#~ msgid "Color" -#~ msgstr "Цвет" - -#~ msgid "Network map linked" -#~ msgstr "Сетевая карта связана" - -#~ msgid "Radius" -#~ msgstr "Радиус" - -#~ msgid "Show modules:" -#~ msgstr "Показать модули:" - -#~ msgid "Open Minimap" -#~ msgstr "Открыть мини-карту" - -#~ msgid "Copy of " -#~ msgstr "Копия " - -#~ msgid "Module alert" -#~ msgstr "Модуль оповещений" - -#~ msgid "Empty configuration" -#~ msgstr "Пустая конфигурация" - -#~ msgid "Empty OS" -#~ msgstr "Пустой OS" - -#~ msgid "Lines" -#~ msgstr "Строки" - -#~ msgid "Metaconsole" -#~ msgstr "Мета консоль" - -#~ msgid "Automated Pandora FMS report for user defined report" -#~ msgstr "" -#~ "Автоматизированный отчет Pandora FMS для определенного отчета пользователя" - -#~ msgid "ALERTS FIRED" -#~ msgstr "ОПОВЕЩЕНИЯ ЗАПУЩЕНЫ" - -#~ msgid "There are no agents with modules." -#~ msgstr "Здесь нет агентов с модулями." - -#~ msgid "The colours meaning:" -#~ msgstr "Значение цветов:" - -#~ msgid "There are no Agent/Modules defined." -#~ msgstr "Здесь нет определенных Агентов/Модулей." - -#~ msgid "Last 8 hours" -#~ msgstr "Последние 8 часов" - -#~ msgid "Modules less or equal to" -#~ msgstr "Модули меньше или равные" - -#~ msgid "Modules under those conditions" -#~ msgstr "Модули под этими условиями" - -#~ msgid "There are no" -#~ msgstr "Здесь нет" - -#~ msgid "Exception - Equal to" -#~ msgstr "Исключения - Равные" - -#~ msgid "Modules over" -#~ msgstr "Модули, выше" - -#~ msgid "Modules at critial or warning status" -#~ msgstr "Модули в критическом или предупреждающем статусе" - -#~ msgid "Modules normal status" -#~ msgstr "Обычный статус модулей" - -#~ msgid "Modules not equal to" -#~ msgstr "Модули, не равные" - -#~ msgid "Modules equal to" -#~ msgstr "Модули, равные" - -#~ msgid "Modules less" -#~ msgstr "Модули, меньше" - -#~ msgid "Group detailed event" -#~ msgstr "Группа подробных событий" - -#~ msgid "There are no events in group." -#~ msgstr "Здесь нет событий в группе" - -#~ msgid "Modules detailed event" -#~ msgstr "Модули подробных событий" - -#~ msgid "There are no events for this module." -#~ msgstr "Здесь нет событий для этого модуля." - -#~ msgid "There are no alerts for this module." -#~ msgstr "Здесь нет оповещений для этого модуля." - -#~ msgid "User defined graph" -#~ msgstr "Определенный график пользователя" - -#~ msgid "Sumatory" -#~ msgstr "Блок суммирования" - -#~ msgid "There are no Events." -#~ msgstr "Здесь нет Событий." - -#~ msgid "Agents detailed event" -#~ msgstr "Агенты детализированного события" - -#~ msgid "Inside limits" -#~ msgstr "Внутренние лимиты" - -#~ msgid "Report date: " -#~ msgstr "Дата отчета: " - -#~ msgid "Generated: " -#~ msgstr "Сгенерировано: " - -#~ msgid "Agent:" -#~ msgstr "Агент:" - -#~ msgid "Module:" -#~ msgstr "Модуль:" - -#~ msgid "On the edge" -#~ msgstr "На краю" - -#~ msgid "Restoring a backup" -#~ msgstr "Восстановление из резервной копии" - -#~ msgid "No description" -#~ msgstr "Без описания" - -#~ msgid "There are no modules." -#~ msgstr "Здесь нет модулей." - -#~ msgid "Untitled" -#~ msgstr "Безымянный" - -#~ msgid "CONTENTS" -#~ msgstr "СОДЕРЖАНИЕ" - -#~ msgid "Period: " -#~ msgstr "Период: " - -#~ msgid "SO" -#~ msgstr "SO" - -#~ msgid "" -#~ "It's a complex operation that needs human intervation to avoid system " -#~ "failures and data loosing" -#~ msgstr "" -#~ "Это комплекс операция, который требует вмешательства человека, чтобы " -#~ "избежать сбоев системы и потери данных" - -#~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Восстановление из резервной копии базы данных Pandora должно быть сделано " -#~ "вручную" - -#~ msgid "Open configuration file" -#~ msgstr "Открыть файл конфигурации" - -#~ msgid "Find" -#~ msgstr "Найти" - -#~ msgid "Restore the backup" -#~ msgstr "Восстановление резервной копии" - -#~ msgid "Modify console configuration to use this new database" -#~ msgstr "" -#~ "Измененить конфигурацию консоли, чтобы использовать эту новую базу данных" - -#~ msgid "Connect to MySQL database using the following command" -#~ msgstr "Подключение к базе данных MySQL с помощью следующей команды" - -#~ msgid "Create a new database" -#~ msgstr "Создать новую базу данных" - -#~ msgid "To restore the selected backup, please follow these steps" -#~ msgstr "" -#~ "Для восстановления выбранной резервной копии, выполните следующие действия" - -#~ msgid "Open a root shell in your system located at " -#~ msgstr "Откройте командный интерфейс в вашей системе, который находится в " - -#~ msgid "Restart the servers and login again into the console" -#~ msgstr "Перезагрузить серверы и войти снова в консоль" - -#~ msgid "Find servers configuration file and replace the following lines" -#~ msgstr "Найти серверы файла конфигурации и заменить следующие строки" - -#~ msgid "Into your destination database." -#~ msgstr "В вашей целевой базе данных." - -#~ msgid "Run import command using the following command" -#~ msgstr "Выполните команду импорта с помощью следующей команды" - -#~ msgid "Log collector" -#~ msgstr "Журнал коллектора" - -#~ msgid "Modify servers configuration to use this new database" -#~ msgstr "" -#~ "Изменить конфигурацию сервера для использования этой новой базы данных" - -#~ msgid "Configuration report for agent " -#~ msgstr "Отчет конфигурации для агента " - -#~ msgid "and replace with" -#~ msgstr "и заменить на" - -#~ msgid "Agent detailed event" -#~ msgstr "Подробное событие агента" - -#~ msgid "Error connecting to the specified host" -#~ msgstr "Ошибка подключения к указанному хосту" - -#~ msgid "" -#~ "\"Translate string\" extension is missed in the server. This extension is " -#~ "mandatory to be configured on metaconsole." -#~ msgstr "" -#~ "Расширение \"Перевести строку\" пропущено на сервере. Это расширение " -#~ "обязательным должно быть настроено на мета консоли." - -#~ msgid "Connected to the host, but cannot found the specified database" -#~ msgstr "Подключен к хосту, но не может найти указанную базу данных" - -#~ msgid "Configuration report for group " -#~ msgstr "Отчет конфигурации для группы " - -#~ msgid "Database credentials not found" -#~ msgstr "Учетные данные базы данных не найдены" - -#~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same " -#~ "one on metasetup" -#~ msgstr "" -#~ "Имя сервера не совпадает. Проверьте имя узла сервера и настройку одной и той " -#~ "же мета установки" - -#~ msgid "Get CSV file" -#~ msgstr "Получить CSV файл" - -#~ msgid "Last event replication" -#~ msgstr "Последнее событие репликации" - -#~ msgid "Tree view by tags" -#~ msgstr "Просмотр в виде дерева по тегам" - -#~ msgid "No changes found" -#~ msgstr "Изменения не найдены" - -#~ msgid "Module store the service does not exist." -#~ msgstr "Модуль запаса сервиса не существует." - -#~ msgid "Service does not exist." -#~ msgstr "Сервис не существует." - -#~ msgid "Critical (Alert)" -#~ msgstr "Критическое (Оповещение)" - -#~ msgid "Unknow" -#~ msgstr "Неизвестное" - -#, php-format -#~ msgid "Module automatic create for the service %s" -#~ msgstr "Модули автоматически создаются для сервиса %s" - -#~ msgid "Alert unknown service does not exist." -#~ msgstr "Оповещение неизвестного сервиса не существует." - -#~ msgid "Agent store the service does not exist." -#~ msgstr "Агент запаса сервиса не существует." - -#~ msgid "Module store SLA service does not exist." -#~ msgstr "Модуль запаса SLA сервиса не существует." - -#~ msgid "Alert critical service does not exist." -#~ msgstr "Оповещение критического сервиса не существует." - -#~ msgid "Alert warning service does not exist." -#~ msgstr "Оповещение предупреждающего SLA сервиса не существует." - -#~ msgid "Alert critical SLA service does not exist." -#~ msgstr "Оповещение критического SLA сервиса не существует." - -#~ msgid "Agent store SLA service does not exist." -#~ msgstr "Агент запаса SLA сервиса не существует." - -#~ msgid "There are no service elements defined" -#~ msgstr "Здесь нет определенных элементов сервиса" - -#~ msgid "Weight Critical" -#~ msgstr "Плотность Критичесности" - -#~ msgid "Weight Ok" -#~ msgstr "Плотность Ок" - -#~ msgid "Delete service element" -#~ msgstr "Удалить элемент сервиса" - -#~ msgid "Weight Warning" -#~ msgstr "Плотность Предупреждений" - -#~ msgid "Weight Unknown" -#~ msgstr "Плотность Неизвесности" - -#~ msgid "FAIL" -#~ msgstr "СБОЙ" - -#~ msgid "Policy linkation" -#~ msgstr "Политика линейности" - -#~ msgid "NEW PASS: " -#~ msgstr "НОВЫЙ ПРОПУСК: " - -#~ msgid "Module pending to unlink" -#~ msgstr "Модуль, ожидающий отсоединения" - -#~ msgid "Module pending to link" -#~ msgstr "Модуль, ожидающий связи" - -#~ msgid "You must change password" -#~ msgstr "Вы должны изменить пароль" - -#~ msgid "Create a new policy map" -#~ msgstr "Создать новую карту политики" - -#~ msgid "Unlink from policy" -#~ msgstr "Отсоединить от политики" - -#~ msgid "Module linked" -#~ msgstr "Модуль связан" - -#~ msgid "Relink to policy" -#~ msgstr "Связать заново с политикой" - -#~ msgid "Module unlinked" -#~ msgstr "Модуль отсоединен" - -#~ msgid "CONFIRM: " -#~ msgstr "ПОДТВЕРДИТЬ: " - -#~ msgid "Password must contain symbols" -#~ msgstr "Пароль должен содержать символы" - -#~ msgid " previous changes." -#~ msgstr " предыдущих изменений." - -#~ msgid "Password must be different" -#~ msgstr "Пароль должен отличаться" - -#~ msgid "Password too short" -#~ msgstr "Пароль слишком короткий" - -#~ msgid "Password must contain numbers" -#~ msgstr "Пароль должен содержать цифры" - -#~ msgid "Change" -#~ msgstr "Изменить" - -#~ msgid "User has been blocked. Try again in " -#~ msgstr "Пользователь был заблокирован. Повторите попытку через " - -#~ msgid " minutes" -#~ msgstr " минут" - -#~ msgid "Password must be different from the " -#~ msgstr "Пароль должен быть отличным от " - -#~ msgid "User pass successfully updated" -#~ msgstr "Пропуск пользователя успешно обновлен" - -#~ msgid "Password empty" -#~ msgstr "пароль не занят" - -#~ msgid "Password confirm does not match" -#~ msgstr "Подтвержденный пароль не совпадает" - -#~ msgid "Error updating user pass (no change?)" -#~ msgstr "Ошибка при обновлении пропуска пользователя (без изменений?)" - -#~ msgid "Form filter" -#~ msgstr "Из фильтра" - -#~ msgid "Search value" -#~ msgstr "Поисковое значение" - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Менеджер Обновление отправляет анонимную информацию о использовании Pandora " -#~ "FMS (число работующих агентов и модулей). Чтобы отключить ее, просто удалите " -#~ "расширение или удалите дистанционный адрес сервера из настроек плагина " -#~ "Манеджера Обновлений." - -#~ msgid "Plannified downtime" -#~ msgstr "запланированный простой" - -#~ msgid "Average" -#~ msgstr "Среднее" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Ввиду ограничений безопасности, есть некоторые знаки или слова, которые вы " -#~ "не можете использовать" - -#~ msgid "or" -#~ msgstr "или" - -#~ msgid "Module detailed event" -#~ msgstr "Модуль детализированного события" - -#~ msgid "Agent configuration: " -#~ msgstr "Агент конфигурации: " - -#~ msgid "Group configuration: " -#~ msgstr "Группа конфигурации: " - -#~ msgid " MODULES" -#~ msgstr " МОДУЛИ" - -#~ msgid "Top N events by module." -#~ msgstr "Топ N события по модулю." - -#~ msgid "Bit mask" -#~ msgstr "Битовая маска" - -#~ msgid "IPs" -#~ msgstr "IP-адреса" - -#~ msgid "Manage addresses" -#~ msgstr "Управлять адресами" - -#~ msgid "Filter options" -#~ msgstr "Отфильтровать варианты" - -#~ msgid "Newer -> Older" -#~ msgstr "Новее->Старее" - -#~ msgid "Networkmap to link" -#~ msgstr "Соединить с сетевой картой" diff --git a/pandora_console/include/languages/sk.mo b/pandora_console/include/languages/sk.mo index 7d804bde3aa11f4d18e6ae4a53d499f3d6361dec..c5e56909afb0c1f1d26d63f55ceb3ad8ea6e5b06 100644 GIT binary patch delta 50 zcmV-20L}l@od(pM2C&Ha4K*z=HZ3waATc;PH8Ydd`O^wEEi*76F*G_bGn2CVCjvJ( Iv)lUllj=|u2><{9 delta 50 zcmV-20L}l@od(pM2C&Ha4KXb+H!U(ZATlvJGBuOc`O^wDEiyJBFgQ9eF_W_TCjv1v Iv)lUlljzhF_y7O^ diff --git a/pandora_console/include/languages/sk.po b/pandora_console/include/languages/sk.po index f0d33183b0..961cd7e2a7 100644 --- a/pandora_console/include/languages/sk.po +++ b/pandora_console/include/languages/sk.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-sk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-05-26 09:46+0200\n" -"PO-Revision-Date: 2011-07-27 21:25+0000\n" +"PO-Revision-Date: 2015-06-29 18:53+0000\n" "Last-Translator: Stano Kobella \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-26 07:58+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-30 14:01+0000\n" +"X-Generator: Launchpad (build 17578)\n" "Language: sk\n" #: ../../godmode/groups/configure_group.php:68 @@ -20302,1404 +20302,3 @@ msgstr "Bezpečnostná chyba. Prosím skontaktuj administrátora." #: ../../include/get_file.php:54 msgid "File is missing in disk storage. Please contact the administrator." msgstr "Súbor chýba v diskovom úložisku. Prosím skontaktuj administrátora." - -#~ msgid "Id" -#~ msgstr "Id" - -#~ msgid "Settings" -#~ msgstr "Nastavenia" - -#~ msgid "Development" -#~ msgstr "Vývoj" - -#~ msgid "Factor" -#~ msgstr "Faktor" - -#~ msgid "Store" -#~ msgstr "Uložiť" - -#~ msgid "Up" -#~ msgstr "Hore" - -#~ msgid "Master" -#~ msgstr "Hlavný" - -#~ msgid "hour" -#~ msgstr "hodina" - -#~ msgid "day" -#~ msgstr "deň" - -#~ msgid "week" -#~ msgstr "týždeň" - -#~ msgid "month" -#~ msgstr "mesiac" - -#~ msgid "Del" -#~ msgstr "Del" - -#~ msgid "Oper" -#~ msgstr "Oper" - -#~ msgid "S" -#~ msgstr "S" - -#~ msgid "Load" -#~ msgstr "Zaťaženie" - -#~ msgid "from" -#~ msgstr "z" - -#~ msgid " to " -#~ msgstr " do " - -#~ msgid "Info" -#~ msgstr "Informácie" - -#~ msgid "SNMP server" -#~ msgstr "SNMP server" - -#~ msgid "Seconds" -#~ msgstr "Sekundy" - -#~ msgid "Last hour" -#~ msgstr "Posledná hodina" - -#, php-format -#~ msgid "Last %s days" -#~ msgstr "Posledné %s dni" - -#~ msgid "Older" -#~ msgstr "Staršie" - -#~ msgid "Pandora FMS Help System" -#~ msgstr "Systém nápovedy Pandora FMS" - -#~ msgid "Your IP" -#~ msgstr "Tvoja IP" - -#~ msgid "Pandora FMS Web Console" -#~ msgstr "Konzola Pandora FMS" - -#~ msgid "Logged Out" -#~ msgstr "Neprihlásený" - -#~ msgid "Monitors critical" -#~ msgstr "Monitory kritické" - -#~ msgid "Monitors normal" -#~ msgstr "Monitory normál" - -#~ msgid "Monitors warning" -#~ msgstr "Monitory varovanie" - -#~ msgid "Monitors unknown" -#~ msgstr "Monitory neznáme" - -#~ msgid "Alerts defined" -#~ msgstr "Definované záznamy" - -#~ msgid "You are" -#~ msgstr "Ty si" - -#~ msgid "Users defined" -#~ msgstr "Definované užívateľmi" - -#~ msgid "Autorefresh" -#~ msgstr "Auto obnovenie" - -#~ msgid "General information" -#~ msgstr "Všeobecné informácie" - -#~ msgid "minute" -#~ msgstr "minuta" - -#~ msgid "Authentication Error" -#~ msgstr "Chyba Autentizácie" - -#~ msgid "Your system is up-to-date" -#~ msgstr "Váš systém je aktuálny" - -#~ msgid "Server authorization rejected" -#~ msgstr "Server zamietol autorizáciu" - -#~ msgid "Server connection failed" -#~ msgstr "Pripojenie k serveru zlyhalo" - -#~ msgid "Overwrite local changes" -#~ msgstr "Prepísať miestne zmeny" - -#~ msgid "There's a new update for Pandora FMS" -#~ msgstr "Je tu nový update pre Pandora FMS" - -#~ msgid "Your system version number is" -#~ msgstr "Vaša verzia systému má číslo" - -#~ msgid "Update manager settings updated" -#~ msgstr "Nastavenia aktualizácií su aktualizované" - -#~ msgid "Update manager settings" -#~ msgstr "Nastavenia aktualizácií" - -#~ msgid "More info" -#~ msgstr "Viac info" - -#~ msgid "There's a new update for Pandora" -#~ msgstr "Je tu nová aktualizácia pre Pandoru" - -#~ msgid "Testing" -#~ msgstr "Testovanie" - -#~ msgid "Visual map wizard" -#~ msgstr "Názorný sprievodca mapami" - -#~ msgid "Image range (px)" -#~ msgstr "Rozmedzie zobrazenia (px)" - -#~ msgid "Image size (px)" -#~ msgstr "Veľkosť obrázku (px)" - -#~ msgid "Update layout successful" -#~ msgstr "Aktualizácia alokovania úspešná" - -#~ msgid "preview" -#~ msgstr "ukážka" - -#~ msgid "Two Months" -#~ msgstr "Dva Mesiace" - -#~ msgid "Six Months" -#~ msgstr "Šesť mesiacov" - -#~ msgid "Last Month" -#~ msgstr "Posledný mesiac" - -#~ msgid "3 hours" -#~ msgstr "3 hodiny" - -#~ msgid "4 days" -#~ msgstr "4 dni" - -#~ msgid "There was a problem creating SLA" -#~ msgstr "Došlo k problému pri vytváraní SLA" - -#~ msgid "There was a problem creating reporting" -#~ msgstr "Došlo k problému pri vytváraní správy" - -#~ msgid "Reporting successfully created" -#~ msgstr "Správa úspešne vytvorená" - -#~ msgid "Module is not set" -#~ msgstr "Modul nie je nastavený" - -#~ msgid "Redraw" -#~ msgstr "Prekresliť" - -#~ msgid "SLA was successfully created" -#~ msgstr "SLA bol úspešne vytvorený" - -#~ msgid "SLA was successfully delete" -#~ msgstr "SLA sa podarilo odstrániť" - -#~ msgid "Render now" -#~ msgstr "Vykreslit teraz" - -#~ msgid "There was a problem deleting SLA" -#~ msgstr "Došlo k problému pri mazaní SLA" - -#~ msgid "Reporting type" -#~ msgstr "Typ správy" - -#~ msgid "Add item to report" -#~ msgstr "Pridať položku do správy" - -#~ msgid "export targets" -#~ msgstr "export cieľov" - -#~ msgid "Transfer Mode" -#~ msgstr "Režim prenosu" - -#~ msgid "Network Server" -#~ msgstr "Sieťový server" - -#~ msgid "MD5 Check" -#~ msgstr "MD5 kontrola" - -#~ msgid "Network profile" -#~ msgstr "Sieťový profil" - -#~ msgid "Recon Server" -#~ msgstr "Recon Server" - -#, php-format -#~ msgid "%d hour" -#~ msgstr "%d hodina" - -#, php-format -#~ msgid "%d hours" -#~ msgstr "%d hodiny" - -#~ msgid "Transfer mode" -#~ msgstr "Spôsob prenosu" - -#, php-format -#~ msgid "%d weeks" -#~ msgstr "%d týždňov" - -#, php-format -#~ msgid "%d week" -#~ msgstr "%d týždeň" - -#, php-format -#~ msgid "%d day" -#~ msgstr "%d deň" - -#, php-format -#~ msgid "%d days" -#~ msgstr "%d dní" - -#~ msgid "Target directory" -#~ msgstr "Cielový adresár" - -#~ msgid "Extra options" -#~ msgstr "Ďalšie voľby" - -#~ msgid "User option" -#~ msgstr "Nastavenie užívateľa" - -#~ msgid "Password option" -#~ msgstr "Nastavenie hesla" - -#~ msgid "IP address option" -#~ msgstr "Nastavenie IP adresy" - -#~ msgid "Port option" -#~ msgstr "Nastavenie portu" - -#~ msgid "No news articles at this moment" -#~ msgstr "Momentálne niesú žiadne nové články" - -#~ msgid "" -#~ "This is the Web Management System for Pandora FMS. From here you can manage " -#~ "its agents, alerts and incidents. Session is open while activity exists." -#~ msgstr "" -#~ "Toto je systém správy webu pre Pandoru FMS. Odtiaľto môžeš spravovať jej " -#~ "agentov, oznámenia a udalosti. Sedenie je otvorené počas existencie činnosti." - -#~ msgid "No layout with this id found" -#~ msgstr "Žiadne rozloženie s týmto id nebolo nájdené" - -#~ msgid "Map builder" -#~ msgstr "Staviteľ máp" - -#~ msgid "SLAs defined" -#~ msgstr "SLAsy definované" - -#~ msgid "Custom reporting builder" -#~ msgstr "Staviteľ užívateľských reportov" - -#~ msgid "Custom graph name" -#~ msgstr "Meno voliteľného grafu" - -#~ msgid "Type at least two characters to search" -#~ msgstr "Napíš aspoň dva znaky pre vyhľadávanie" - -#~ msgid "Report name is empty" -#~ msgstr "Názov reportu je prázdny" - -#~ msgid "No items defined" -#~ msgstr "Žiadne položky niesú definované" - -#~ msgid "SLA report construction" -#~ msgstr "Konštrukcia SLA reportu" - -#~ msgid "Map element trash" -#~ msgstr "Kôš pre časti mapy" - -#~ msgid "Update layout failed" -#~ msgstr "Aktualizácia rozloženia bola neúspešná" - -#~ msgid "Select an element to delete:" -#~ msgstr "Vyber časť pre vymazanie:" - -#~ msgid "Graph builder module list" -#~ msgstr "Zoznam modulov staviteľa grafov" - -#~ msgid "Combined image render" -#~ msgstr "Renderovať zlúčený obrázok" - -#~ msgid "Drag an element here to edit the properties" -#~ msgstr "Potiahni sem časť pre editovanie jej vlastností" - -#~ msgid "Map element editor" -#~ msgstr "Editor častí mapy" - -#~ msgid "Label color" -#~ msgstr "Farba nadpisu" - -#~ msgid "Please, choose an image or type a name for the element." -#~ msgstr "Prosím, vyber obrázok alebo napíš názov časti." - -#~ msgid "Graphs management" -#~ msgstr "Správa grafov" - -#~ msgid "No selected agent, please select any agent." -#~ msgstr "Nie je vybraný žiaden agent, prosím vyber nejakého." - -#~ msgid "General configuration" -#~ msgstr "Všeobecná konfigurácia" - -#~ msgid "Pandora Setup" -#~ msgstr "Nastavenie Pandory" - -#~ msgid "SLA period (seconds)" -#~ msgstr "SLA perióda (v sekundách)" - -#~ msgid "The list of IPs separate with carriage return." -#~ msgstr "Zoznam IP-čiek oddelených znakmi nového riadku." - -#~ msgid "Compact CSS and JS into header" -#~ msgstr "Zlúčiť CSS a JS do záhlavia" - -#~ msgid "Automatic update check" -#~ msgstr "Kontrola automatickej aktualizácie" - -#~ msgid "Visual configuration" -#~ msgstr "Vizuálna konfigurácia" - -#~ msgid "Flash charts" -#~ msgstr "Flashové grafy" - -#~ msgid "Deleting file" -#~ msgstr "Vymazávanie súboru" - -#~ msgid "Deleting" -#~ msgstr "Maže sa" - -#~ msgid "Current directory is not writable by HTTP Server" -#~ msgstr "Aktuálny adresár nieje zapisovateľný HTTP serverom" - -#, php-format -#~ msgid "Created directory %s" -#~ msgstr "Vytvorený adresár %s" - -#~ msgid "Please check that current directory has write rights for HTTP server" -#~ msgstr "" -#~ "Prosím skontroluj či aktuálny adresár má zapisovacie práva pre HTTP server" - -#~ msgid "Upload file" -#~ msgstr "Odoslať súbor" - -#~ msgid "Pandora users" -#~ msgstr "Používatelia Pandory" - -#~ msgid "" -#~ "This user has permissions to manage all. This is admin user and overwrites " -#~ "all permissions given in profiles/groups" -#~ msgstr "" -#~ "Tento používateľ má povolenie všetko spravovať. Je administrátor a prepisuje " -#~ "všetky povolenia zadané v profiloch/skupinách" - -#~ msgid "Last name" -#~ msgstr "Priezvisko" - -#~ msgid "First name" -#~ msgstr "Meno" - -#~ msgid "Group name" -#~ msgstr "Názov skupiny" - -#~ msgid "Database sanity tool" -#~ msgstr "Nástroj pre ozdravenie databázy" - -#~ msgid "Checking tagente_estado table" -#~ msgstr "Kontrola tagente_estado tabuľky" - -#~ msgid "Checking database consistency" -#~ msgstr "Kontrola konzistencie databázy" - -#~ msgid "Deleting non-init data" -#~ msgstr "Mazanie neinicializovaných dát" - -#~ msgid "Press here to get database information as text" -#~ msgstr "Stlač tu pre získanie databázovej informácie ako textu" - -#~ msgid "Total data" -#~ msgstr "Celkové dáta" - -#~ msgid "Sanitize my database now" -#~ msgstr "Ozdraviť moju databázu teraz" - -#~ msgid "Modules per agent" -#~ msgstr "Moduly na agenta" - -#~ msgid "Packets per agent" -#~ msgstr "Pakety na agenta" - -#~ msgid "Delete non-initialized modules now" -#~ msgstr "Vymazať neinicializované moduly teraz" - -#~ msgid "" -#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " -#~ "created modules with missing status, or modules that cannot be initialized " -#~ "(and don't report any valid data) but retry each its own interval to get " -#~ "data. This kind of bad modules could degrade performance of Pandora FMS. " -#~ "This database sanity tool is also implemented in the pandora_db.pl " -#~ "that you should be running each day or week. This console sanity DONT " -#~ "compact your database, only delete bad structured data." -#~ msgstr "" -#~ "Ozdravovací nástroj Pandory FMS sa používa na odstránenie zlých dát " -#~ "databázovej štruktúry, vytvorených modulov s chýbajúcim stavom, alebo " -#~ "modulov ktoré sa nedajú inicializovať (a neoznamujú žiadne platné dáta) ale " -#~ "opakujú každý svoj vlastný interval pre získanie dát. Tento druh zlých " -#~ "modulov by mohol degradovať výkon Pandory FMS. Tento databázový ozdravovací " -#~ "nástroj je tiež implementovaný v pandora_db.pl ktorý by si mal " -#~ "spúšťať každý deň alebo týždeň. Toto konzolové ozdravenie NEskompaktuje " -#~ "tvoju databázu, iba vymaže zle štrukturované dáta." - -#~ msgid "Assigned modules" -#~ msgstr "Priradené moduly" - -#~ msgid "Press here to get database information as a graph" -#~ msgstr "Stlač tu pre získanie databázové informácie ako graf" - -#~ msgid "Data older than" -#~ msgstr "Dáta staršie než" - -#~ msgid "Purge task launched for agent" -#~ msgstr "Vyčistiť úlohu spustenú pre agenta" - -#~ msgid "Deleting records for module" -#~ msgstr "Vymazávanie záznamov pre modul" - -#~ msgid "Field 1" -#~ msgstr "Pole 1" - -#~ msgid "Field 2" -#~ msgstr "Pole 2" - -#~ msgid "Field 3" -#~ msgstr "Pole 3" - -#~ msgid "" -#~ "The alert would fire when the value matches " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota súhlasí s " - -#~ msgid "" -#~ "The alert would fire when the value is above " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota je väčšia ako " - -#~ msgid "" -#~ "The alert would fire when the value is not " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota nieje " - -#~ msgid "" -#~ "The alert would fire when the value is between " -#~ "and " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota je medzi a " - -#~ msgid "" -#~ "The alert would fire when the value doesn't match " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota nesúhlasí s " - -#~ msgid "The alert would fire when the value is " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota je " - -#~ msgid "" -#~ "The alert would fire when the value is not between and " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota nieje medzi a " - -#~ msgid "" -#~ "The alert would fire when the value is below " -#~ msgstr "" -#~ "Upozornenie by malo nastať, keď hodnota je menšia ako " - -#~ msgid "E/D" -#~ msgstr "P/Z" - -#~ msgid "matches of the alert" -#~ msgstr "pasuje s upozornením" - -#~ msgid "Correlated alerts" -#~ msgstr "Korelované upozornenia" - -#~ msgid "Add condition" -#~ msgstr "Pridať podmienku" - -#~ msgid "Operator" -#~ msgstr "Operátor" - -#~ msgid "Assigned to" -#~ msgstr "Priradené ku" - -#~ msgid "Assigned actions" -#~ msgstr "Priradené akcie" - -#~ msgid "Configure correlated alert" -#~ msgstr "Konfigurovať korelované upozornenie" - -#~ msgid "No name was given" -#~ msgstr "Žiadne meno nebolo zadané" - -#~ msgid "No agent was given" -#~ msgstr "Žiaden agent nebol zadaný" - -#~ msgid "No conditions were given" -#~ msgstr "Žiadne podmienky neboli zadané" - -#~ msgid "" -#~ "There was an error deleting the alerts, the operation has been cancelled" -#~ msgstr "Vyskytla sa chyba pri mazaní upozornení, operácia bola prerušená" - -#~ msgid "Error adding module" -#~ msgstr "Chyba pridávania modulu" - -#~ msgid "Could not delete alerts" -#~ msgstr "Nepodarilo sa vymazať upozornenia" - -#~ msgid "Modules successfully added " -#~ msgstr "Moduly boli úspešne pridané " - -#~ msgid "Available templates" -#~ msgstr "Dostupné šablóny" - -#~ msgid "Configuration management" -#~ msgstr "Obsluha konfigurácie" - -#~ msgid "Plugin parameters" -#~ msgstr "Parametre pluginu" - -#~ msgid "" -#~ "There was an error deleting the agent, the operation has been cancelled" -#~ msgstr "Nastala chyba pri vymazávaní agenta, operácia bola zrušená" - -#~ msgid "Massive agent deletion" -#~ msgstr "Masívne vymazávanie agentov" - -#~ msgid "Could not delete agent" -#~ msgstr "Nedalo sa vymazať agenta" - -#~ msgid "Agent keepalive monitor" -#~ msgstr "Agentový udržnažive monitor" - -#~ msgid "There was a problem adding module" -#~ msgstr "Vyskytol sa problém s pridávaním modulu" - -#~ msgid "There was a problem updating module" -#~ msgstr "Vyskytol sa problém s aktualizovaním modulu" - -#~ msgid "Update agent" -#~ msgstr "Aktualizovať agenta" - -#~ msgid "Edit modules" -#~ msgstr "Upraviť moduly" - -#~ msgid "Delete modules" -#~ msgstr "Vymazať moduly" - -#~ msgid "Delete alerts" -#~ msgstr "Vymazať upozornenia" - -#~ msgid "Delete agents" -#~ msgstr "Vymazať agentov" - -#~ msgid "Module assignment" -#~ msgstr "Priradenie modulu" - -#~ msgid " seconds." -#~ msgstr " sekúnd." - -#~ msgid "Could not delete modules" -#~ msgstr "Nepodarilo sa zmazať moduly" - -#~ msgid "Planned Downtime Form" -#~ msgstr "Formulár plánovaného času vypnutia" - -#~ msgid "Timestamp to" -#~ msgstr "Časová známka do" - -#~ msgid "Timestamp from" -#~ msgstr "Časová známka od" - -#~ msgid "Making copy of configuration file for" -#~ msgstr "Vytváram kópiu konfiguračného súboru pre" - -#~ msgid "Remote configuration management" -#~ msgstr "Spravovanie vzdialenej konfigurácie" - -#~ msgid "No selected agents to copy" -#~ msgstr "Žiadni agenti neboli vybraní na kopírovanie" - -#~ msgid "Data Copy" -#~ msgstr "Kopírovanie dát" - -#~ msgid "Planned Downtime present on system" -#~ msgstr "Naplánovaný čas vypnutia je prítomný v systéme" - -#~ msgid "Duplicate config" -#~ msgstr "Duplikovať konfiguráciu" - -#~ msgid "Manage modules" -#~ msgstr "Spravovať moduly" - -#~ msgid "Replicate configuration" -#~ msgstr "Replikovať konfiguráciu" - -#~ msgid "To agent(s):" -#~ msgstr "Ku agent(om):" - -#~ msgid "Source group" -#~ msgstr "Zdrojová skupina" - -#~ msgid "Manage SNMP console" -#~ msgstr "Spravovať SNMP konzolu" - -#~ msgid "Correlation" -#~ msgstr "Korelácia" - -#~ msgid "Manage plugins" -#~ msgstr "Spravovať pluginy" - -#~ msgid "Manage profiles" -#~ msgstr "Spravovať profily" - -#~ msgid "Report builder" -#~ msgstr "Staviteľ reportov" - -#~ msgid "Export targets" -#~ msgstr "Exportovať ciele" - -#~ msgid "TCP port" -#~ msgstr "TCP port" - -#~ msgid "Maximum Data" -#~ msgstr "Maximálne dáta" - -#~ msgid "Minimum Data" -#~ msgstr "Minimálne dáta" - -#~ msgid "Network component" -#~ msgstr "Sieťový komponent" - -#~ msgid "Module component management" -#~ msgstr "Správa modulových komponentov" - -#~ msgid "Plugin component" -#~ msgstr "Pluginový komponent" - -#~ msgid "Module Interval" -#~ msgstr "Modulový interval" - -#~ msgid "WMI component management" -#~ msgstr "Správa WMI komponentu" - -#~ msgid "N/A\t" -#~ msgstr "Nedostupný\t" - -#~ msgid "Custom Value" -#~ msgstr "Vlastná hodnota" - -#~ msgid "Field #1 (Alias, name)" -#~ msgstr "Pole #1 (alias, meno)" - -#~ msgid "Field #3 (Full Text)" -#~ msgstr "Pole #3 (úplný text)" - -#~ msgid "Field #2 (Single Line)" -#~ msgstr "Pole #2 (samostatný riadok)" - -#~ msgid "Read agent information" -#~ msgstr "Čítať agentovú informáciu" - -#~ msgid "Create incidents" -#~ msgstr "Vytvoriť sprievodné javy" - -#~ msgid "Pandora system management" -#~ msgstr "Systémová správa Pandory" - -#~ msgid "Read incidents" -#~ msgstr "Prečítať sprievodné javy" - -#~ msgid "Manage user rights" -#~ msgstr "Spravovať používateľské práva" - -#~ msgid "Manage Database" -#~ msgstr "Spravovať databázu" - -#~ msgid "Error creating export target" -#~ msgstr "Chyba vytvárania cieľa exportu" - -#~ msgid "Successfully created export target" -#~ msgstr "Cieľ exportu bol úspešne vytvorený" - -#~ msgid "Error updating export target" -#~ msgstr "Chyba aktualizácie cieľa exportu" - -#~ msgid "Successfully updated export target" -#~ msgstr "Cieľ exportu bol úspešne aktualizovaný" - -#~ msgid "Successfully deleted export target" -#~ msgstr "Cieľ exportu bol úspešne zmazaný" - -#~ msgid "There are no export targets configured" -#~ msgstr "Niesú nakonfigurované žiadne ciele exportu" - -#~ msgid "Preffix" -#~ msgstr "Prefix" - -#~ msgid "Error deleting export target" -#~ msgstr "Chyba mazania cieľa exportu" - -#~ msgid "MD5 check" -#~ msgstr "MD5 kontrola" - -#, php-format -#~ msgid "%d month" -#~ msgstr "%d mesiac" - -#~ msgid "Group management" -#~ msgstr "Správa skupín" - -#~ msgid "Agents in group" -#~ msgstr "Agenti v skupine" - -#~ msgid "Event not validate" -#~ msgstr "Udalosť nevalidovať" - -#~ msgid "Event validate" -#~ msgstr "Udalosť validovať" - -#~ msgid "Unmanaged error" -#~ msgstr "Nespravovaná chyba" - -#~ msgid "You don't have enough permission to access this resource" -#~ msgstr "Nemáš dostatočné oprávnenie pre sprístupnenie tohoto inf.zdroja" - -#~ msgid "You don't have access" -#~ msgstr "Nemáš prístup" - -#~ msgid "General group report" -#~ msgstr "Všeobecný skupinový report" - -#~ msgid "Agents detailed view" -#~ msgstr "Detailný pohľad na agentov" - -#~ msgid "Sumatory" -#~ msgstr "Zosumovania" - -#~ msgid "Event report" -#~ msgstr "Report udalostí" - -#~ msgid "Alert report" -#~ msgstr "Report upozornení" - -#~ msgid "Agent detailed event" -#~ msgstr "Agentova detailná udalosť" - -#~ msgid "Software agent data" -#~ msgstr "Softvérového agenta dáta" - -#~ msgid "Software agent monitor" -#~ msgstr "Softvérového agenta monitor" - -#~ msgid "Network agent data" -#~ msgstr "Sieťového agenta dáta" - -#~ msgid "Network agent monitor" -#~ msgstr "Sieťového agenta monitor" - -#~ msgid "Tt" -#~ msgstr "Tt" - -#~ msgid "MinMax.Al" -#~ msgstr "MinMax.Al" - -#~ msgid "Desc" -#~ msgstr "Popis" - -#~ msgid "Wrong module type" -#~ msgstr "Typ nesprávneho modulu" - -#~ 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 P" -#~ "ublic Resource Library" -#~ msgstr "" -#~ "Toto rozšírenie robí registráciu pluginov serveru jednoduchšou. Sem môžeš " -#~ "nahrať serverový plugin v zazipovanom formáte Pandory FMS 3.x (.pspz). " -#~ "Prosím pozri sa do dokumentácie ako získať a použiť serverové pluginy " -#~ "Pandory FMS.

Viacej pluginov môžeš získať v našej V" -#~ "erejnej zdrojovej knižnici" - -#~ msgid "" -#~ "Red cell when the module group and agent have at least one module in " -#~ "critical state and the others in any state." -#~ msgstr "" -#~ "Bunka je červená keď skupina modulu a agent majú aspoň jeden modul v " -#~ "kritickom stave a ostatné v ľubovoľnom stave." - -#~ msgid "" -#~ "Green cell when the module group and agent have all modules in OK state." -#~ msgstr "" -#~ "Bunka je zelená keď skupina modulu a agent majú všetky moduly v stave OK." - -#~ msgid "" -#~ "Yellow cell when the module group and agent have at least one in warning " -#~ "state and the others in green state." -#~ msgstr "" -#~ "Bunka je žltá keď skupina modulu a agent majú aspoň jeden modul vo varovnom " -#~ "stave a ostatné v zelenom stave." - -#~ msgid "Modules groups" -#~ msgstr "Skupiny modulov" - -#~ msgid "Grey cell when the module group and agent don't have any modules." -#~ msgstr "Bunka je šedá keď skupina modulu a agent nemajú žiadne moduly." - -#~ msgid "Keygen file does not exists" -#~ msgstr "Súbor generátora kľúčov neexistuje" - -#~ msgid "The colours meaning:" -#~ msgstr "Farby znamenajú:" - -#~ msgid "Code / binary directory" -#~ msgstr "Kódový / binárny adresár" - -#~ msgid "Keygen file is not executable" -#~ msgstr "Súbor generátora kľúčov nieje vykonateľný" - -#~ msgid "Decrease Weight" -#~ msgstr "Znížiť váhu" - -#~ msgid "Increase Weight" -#~ msgstr "Zvýšiť váhu" - -#~ msgid "" -#~ "Warning: When you change the Agent position, the agent automatically " -#~ "activates the 'Ignore new GIS data' option" -#~ msgstr "" -#~ "Upozornenie: Keď zmeníš pozíciu agenta, agenta automaticky aktivuje voľbu " -#~ "'Ignorovať nové dáta GIS'" - -#~ msgid "Monitors not init" -#~ msgstr "Monitory neinicializované" - -#~ msgid "Global health" -#~ msgstr "Globálne zdravie" - -#~ msgid "Uninitialized modules" -#~ msgstr "Neinicializované moduly" - -#~ msgid "Group detailed event" -#~ msgstr "Podrobná udalosť skupiny" - -#~ msgid "Agents detailed event" -#~ msgstr "Podrobná udalosť agentov" - -#~ msgid "secs." -#~ msgstr "sekúnd" - -#~ msgid "Events generated -by module-" -#~ msgstr "Udalosti generované -modulom-" - -#~ msgid "Flag" -#~ msgstr "Vlajka" - -#~ msgid "Agent down" -#~ msgstr "Agent zastavený" - -#~ msgid "Alerts disabled" -#~ msgstr "Upozornenia zakázané" - -#~ msgid "At least one monitor fails" -#~ msgstr "Najmenej jeden monitor zlyháva" - -#~ msgid "Change between Green/Red state" -#~ msgstr "Zmeniť medzi stavmi zelený/červený" - -#~ msgid "Invalid method supplied" -#~ msgstr "Poskytnutá neplatná metóda" - -#~ msgid "None agent in this category" -#~ msgstr "Žiaden agent v tejto kategórii" - -#~ msgid "There are no servers configured in the database" -#~ msgstr "V databáze niesú nakonfigurované žiadne servery" - -#~ msgid "Single alerts" -#~ msgstr "Samostatné upozornenia" - -#~ msgid "This agent doesn't have any active monitors" -#~ msgstr "Tento agent nemá žiadne aktívne monitory" - -#~ msgid "Module Down" -#~ msgstr "Modul zastavený" - -#~ msgid "Module Up" -#~ msgstr "Modul spustený" - -#~ msgid "Compound alerts" -#~ msgstr "Skladať upozornenia" - -#~ msgid "There are no modules to evaluate the S.L.A. from" -#~ msgstr "Niesú žiadne moduly na preskúšanie S.L.A. z" - -#~ msgid "User-defined SLA items" -#~ msgstr "Používateľom definované SLA položky" - -#~ msgid "Automatic SLA for monitors" -#~ msgstr "Automatické SLA pre monitory" - -#~ msgid "No simple alerts found" -#~ msgstr "Žiadne jednoduché upozornenia neboli nájdené" - -#~ msgid "There are no agents included in this group" -#~ msgstr "Táto skupina nemá pridaných žiadnych agentov" - -#~ msgid "This agent doesn't have any module" -#~ msgstr "Tento agent nemá žiaden modul" - -#~ msgid "int" -#~ msgstr "int" - -#~ msgid "Display of last data modules received by agent" -#~ msgstr "Zobrazenie posledných dátových modulov prijatých agentom" - -#~ msgid "Raw Data" -#~ msgstr "Nespracované dáta" - -#~ msgid "From the last" -#~ msgstr "Z posledného" - -#~ msgid "This server has no recon tasks assigned" -#~ msgstr "Tento server nemá pripojené žiadne recon úlohy" - -#~ msgid "Modules delayed / Max. Delay (sec)" -#~ msgstr "Moduly oneskorené / Max. oneskorenie (sek.)" - -#~ msgid "Modules running on this server / Total modules of this type" -#~ msgstr "Moduly spustené na tomto serveri / Celkovo modulov tohoto typu" - -#~ msgid "No layouts found" -#~ msgstr "Žiadne rozloženia neboli nájdené" - -#~ msgid "Create incident from event" -#~ msgstr "Vytvoriť príhodu z udalosti" - -#~ msgid "Event graph by group" -#~ msgstr "Graf udalosti podľa skupiny" - -#~ msgid "Read message" -#~ msgstr "Čítať správu" - -#~ msgid "-Select group-" -#~ msgstr "-Vyber skupinu-" - -#~ msgid "-Select user-" -#~ msgstr "-Vyber používateľa-" - -#~ msgid "Search value" -#~ msgstr "Hľadať hodnotu" - -#~ msgid "Update server host" -#~ msgstr "Aktualizovať serverový host" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 3.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Nový klient Správcu " -#~ "aktualizácií je šírený spolu s Pandorou FMS 3.0. Pomáha systémovým " -#~ "správcom aktualizovať ich Pandoru FMS automaticky, od vtedy čo Správca " -#~ "aktualizácií automaticky vykonáva úlohu získavania nových modulov, nových " -#~ "rozšírení a nových čŕt (taktiež nástrojov pre úplnú migráciu pre budúce " -#~ "verzie)." - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 3.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Správca aktualizácií je jedna z najpokročilejších čŕt Pandory FMS 3.0 " -#~ "podnikateľskej verzie, pre viac informácií navštív http://pandorafms.com." - -#~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, just delete extension or " -#~ "remove remote server address from Update Manager plugin setup." -#~ msgstr "" -#~ "Správca aktualizácií posiela anonymnú informáciu o používaní Pandory FMS " -#~ "(počet bežiacich agentov a modulov). Pre zakázanie tohoto, vymazaž " -#~ "rozšírenie alebo odstráň adresu vzdialeného servera v nastavení pluginu " -#~ "Správcu aktualizácií." - -#~ msgid "Update server port" -#~ msgstr "Aktualizovať serverový port" - -#~ msgid "Binary input path" -#~ msgstr "Binárna vstupná cesta" - -#~ msgid "Update server path" -#~ msgstr "Aktualizovať serverovú cestu" - -#~ msgid "Keygen path" -#~ msgstr "Cesta generátora kľúčov" - -#~ msgid "ALERTS FIRED" -#~ msgstr "UPOZORNENIA ODŠTARTOVANÉ" - -#~ msgid "" -#~ "Due security restrictions, there are some tokens or words you cannot use" -#~ msgstr "" -#~ "Kvôli bezpečnostným obmedzeniam, sú tu niektoré tokeny alebo slová ktoré " -#~ "nemôžeš používať" - -#~ msgid "Illegal query" -#~ msgstr "Neplatný dotaz" - -#~ msgid "or" -#~ msgstr "alebo" - -#~ msgid "User defined graph" -#~ msgstr "Graf definovaný používateľom" - -#~ msgid "Module detailed event" -#~ msgstr "Modulová podrobná udalosť" - -#~ msgid "attach_error" -#~ msgstr "attach_error" - -#~ msgid "" -#~ "The new Update Manager " -#~ "client is shipped with Pandora FMS 2.0. It helps system administrators to " -#~ "update their Pandora FMS automatically, since the Update Manager does the " -#~ "task of getting new modules, new plugins and new features (even full " -#~ "migrations tools for future versions) automatically." -#~ msgstr "" -#~ "Nový klient Správcu " -#~ "aktualizácií je šírený s Pandorou FMS 2.0. Pomáha systémových " -#~ "administrátorom aktualizovať automaticky ich Pandoru FMS, pretože Správca " -#~ "aktualizácií vykonáva automaticky úlohu získavania nových modulov, nových " -#~ "pluginov a nových čŕt (dokonca úplných migračných nástrojov pre budúce " -#~ "verzie)." - -#~ msgid "Succesfully deleted export target" -#~ msgstr "Úspešne vymazaný cieľ exportu" - -#~ msgid "Drag an element here to delete from the map" -#~ msgstr "Pretiahni sem myšou element pre vymazanie z mapy" - -#~ msgid "Data Server" -#~ msgstr "Dátový server" - -#~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS 2.0 " -#~ "Enterprise version, for more information visit http://pandorafms.com." -#~ msgstr "" -#~ "Správca aktualizácií je jedným z najpokročilejších čŕt Pandory FMS 2.0 " -#~ "podnikateľskej verzie, pre viac informácií navštív http://pandorafms.com." - -#~ msgid "Succesfully deleted recon task" -#~ msgstr "Úspešne vymazaná recon úloha" - -#~ msgid "Custom graph store" -#~ msgstr "Uložiť voliteľný graf" - -#~ msgid "Max.Timeout" -#~ msgstr "Max. doba nečinnosti" - -#~ msgid "DB Maintenance" -#~ msgstr "DB údržba" - -#~ msgid "DB Information" -#~ msgstr "DB informácia" - -#~ msgid "Manage Incidents" -#~ msgstr "Spravovať príhody" - -#~ msgid "Create Incidents" -#~ msgstr "Vytvoriť príhody" - -#~ msgid "Read Incidents" -#~ msgstr "Čítať príhody" - -#~ msgid "Link successfully deleted" -#~ msgstr "Odkaz bol úspešne vymazaný" - -#~ msgid "Read Agent Information" -#~ msgstr "Čítať agentskú informáciu" - -#~ msgid "Link successfully created" -#~ msgstr "Odkaz bol úspešne vytvorený" - -#~ msgid "Profile successfully created" -#~ msgstr "Profil bol úspešne vytvorený" - -#~ msgid "Profile successfully deleted" -#~ msgstr "Profil bol úspešne vymazaný" - -#~ msgid "Link successfully updated" -#~ msgstr "Odkaz bol úspešne aktualizovaný" - -#~ msgid "Profile successfully updated" -#~ msgstr "Profil bol úspešne aktualizovaný" - -#~ msgid "Manage Agents" -#~ msgstr "Spravovať agentov" - -#~ msgid "Manage User Rights" -#~ msgstr "Spravovať používateľské oprávnenia" - -#~ msgid "Edit Alerts" -#~ msgstr "Editovať upozornenia" - -#~ msgid "Pandora System Management" -#~ msgstr "Správa systému Pandora" - -#~ msgid "Database Management" -#~ msgstr "Správa databázy" - -#~ msgid "Alerts Management" -#~ msgstr "Správa upozornení" - -#~ msgid "Alert successfully deleted" -#~ msgstr "Upozornenie bolo úspešne vymazané" - -#~ msgid "Net. Templates" -#~ msgstr "Sieť. šablóny" - -#~ msgid "Alert successfully created" -#~ msgstr "Upozornenie bolo úspešne vytvorené" - -#~ msgid "There was a problem updating agent" -#~ msgstr "Nastal problém s aktualizovaním agenta" - -#~ msgid "Alert successfully updated" -#~ msgstr "Upozornenie bolo úspešne aktualizované" - -#~ msgid "Agent successfully updated" -#~ msgstr "Agent bol úspešne aktualizovaný" - -#~ msgid "Module deleted successfully" -#~ msgstr "Modul bol úspešne vymazaný" - -#~ msgid "Upd" -#~ msgstr "Akt." - -#~ msgid "To Agent(s):" -#~ msgstr "Pre agenta(ov):" - -#~ msgid "Configuration Management" -#~ msgstr "Správa konfigurácie" - -#~ msgid "WMI Query" -#~ msgstr "WMI dotaz" - -#~ msgid "Available Agents" -#~ msgstr "Dostupní agenti" - -#~ msgid "Status init unsuccessful" -#~ msgstr "Inicializácia stavu bola neúspešná" - -#~ msgid "Create a new prediction Server module" -#~ msgstr "Vytvoriť nový modul predpoveďového servera" - -#~ msgid "Create a new WMI Server module" -#~ msgstr "Vytvoriť nový modul WMI servera" - -#~ msgid "Prediction Server" -#~ msgstr "Predpoveďový server" - -#~ msgid "WMI Server" -#~ msgstr "WMI server" - -#~ msgid "Plugin Server" -#~ msgstr "Pluginový server" - -#~ msgid "Create a new plugin Server module" -#~ msgstr "Vytvoriť nový modul pluginového servera" - -#~ msgid "Alert type" -#~ msgstr "Typ upozornenia" - -#~ msgid "User successfully deleted" -#~ msgstr "Používateľ bol úspešne vymazaný" - -#~ msgid "Add Modules" -#~ msgstr "Pridať moduly" - -#~ msgid "NC.Group" -#~ msgstr "NC.skupina" - -#~ msgid "Database Maintenance" -#~ msgstr "Údržba databázy" - -#~ msgid "Database Information" -#~ msgstr "Informácie o databáze" - -#~ msgid "Standard user" -#~ msgstr "Štandardný používateľ" - -#~ msgid "Database Audit purge" -#~ msgstr "Vyčistenie databázového auditu" - -#~ msgid "Event Database cleanup" -#~ msgstr "Vyčistenie databázy udalostí" - -#~ msgid "Monitor down" -#~ msgstr "Monitor vypnutý" - -#~ msgid "Monitor up" -#~ msgstr "Monitor zapnutý" - -#~ msgid "St" -#~ msgstr "St" - -#~ msgid "Times Fired" -#~ msgstr "krát spustené" - -#~ msgid "There was a problem loading alert" -#~ msgstr "Nastal problém s nahrávaním upozornenia" - -#~ msgid "Search text" -#~ msgstr "Hľadať text" - -#~ msgid "Configuration detail" -#~ msgstr "Podrobnosti konfigurácie" - -#~ msgid "Alert Overview" -#~ msgstr "Prehliadka upozornenia" - -#~ msgid "Alert trigger" -#~ msgstr "Spúšťač upozornenia" - -#~ msgid "View users" -#~ msgstr "Prezerať používateľov" - -#~ msgid "Network Map" -#~ msgstr "Mapa siete" - -#~ msgid "Agent general information" -#~ msgstr "Obecná agentská informácia" - -#~ msgid "Pandora Agents" -#~ msgstr "Agenti Pandory" - -#~ msgid "Validated event" -#~ msgstr "Validovaná udalosť" - -#~ msgid "Full list of Monitors" -#~ msgstr "Úplný zoznam monitorov" - -#~ msgid "Free text" -#~ msgstr "Voľný text" - -#~ msgid "Thurdsday" -#~ msgstr "Štvrtok" - -#~ msgid "Data from agent " -#~ msgstr "Dáta od agenta " - -#~ msgid "Agents down" -#~ msgstr "Agenti vypnutí" - -#~ msgid "Database export results" -#~ msgstr "Exportovať výsledky databázy" - -#~ msgid "Hr" -#~ msgstr "Hod" - -#~ msgid "Download file" -#~ msgstr "Stiahnuť súbor" - -#~ msgid "Agent without monitors" -#~ msgstr "Agent bez monitorov" - -#~ msgid "Standalone CSV ascii file" -#~ msgstr "Samostatný CSV ascii súbor" - -#~ msgid "No module has been selected" -#~ msgstr "Žiadne moduly neboli vybrané" - -#~ msgid " from " -#~ msgstr " z " - -#~ msgid "End date (*)" -#~ msgstr "Koncový dátum (*)" - -#~ msgid "Begin date (*)" -#~ msgstr "Začiatočný dátum (*)" - -#~ msgid "Alerts Fired" -#~ msgstr "Upozornenia spustené" - -#~ msgid "SLA view" -#~ msgstr "SLA pohľad" - -#~ msgid "Total Agents" -#~ msgstr "Celkovo agentov" - -#~ msgid "System Events" -#~ msgstr "Systémové udalosti" - -#~ msgid "Only pending" -#~ msgstr "Iba nerozhodnuté" - -#~ msgid "User activity statistics" -#~ msgstr "Štatistiky používateľovej aktivity" - -#~ msgid "Pandora agents" -#~ msgstr "Agenti pandory" - -#~ msgid "Modules normal" -#~ msgstr "Moduly normálne" - -#~ msgid "Modules critical" -#~ msgstr "Moduly kritické" - -#~ msgid "Go to alert overview" -#~ msgstr "Ísť si prezrieť upozornenia" - -#~ msgid "Modules warning" -#~ msgstr "Moduly varovné" - -#~ msgid "Event not validated" -#~ msgstr "Udalosť nieje valídna" - -#~ msgid "G." -#~ msgstr "G." - -#~ msgid "T." -#~ msgstr "T." - -#~ msgid "Remote modules rate" -#~ msgstr "Rýchlosť vzdialených modulov" - -#~ msgid "Local modules rate" -#~ msgstr "Rýchlosť lokálnych modulov" diff --git a/pandora_console/include/languages/tr.mo b/pandora_console/include/languages/tr.mo index 69028f6e25a824007a064a44c0c784d8a883d7f5..70aedc295586ac69bfda36d74aaf8bc2a5eea56b 100644 GIT binary patch delta 5241 zcmXZe3vgA%8Nl&Fgb*MhK?s2ea={1)lN5;2K&drYTWLfKs1%S#P#yuoBMDVr9v%g& zz%VEyC@l<#1605g2dju+1=>^#wkTC8IvG(=OSJ{D)))Q%bCwzAx4UQ0x8Hud_vW5j znRa1i+V9S_jh}21MeRmK5k$|Aj-qtj7yJV@rC*QD@n{%75&EZsAB6F9!3*enUxnwF zLcjUlN&L)U+q_yjud zDQtmHqwntx{R4P8{rWL+66hb{K?54-lhD722D*gV*lcVRwZUA>!ycH0KSZAo368%8o$q(gb9kIGRes0Q1oRi_slCj2&=2y5Jskr$^8Luj7^Y7N+nE%*VWn zWF!61d4tfB|1>xT-S8}I&HB*-8t!-nn&Gd}oo++VdOup3V`zf!VG7S;Pt2H*^!s8D z`oqv8n}@#l5W1nqu^Vm+JMc3Pbu?robVM&gl0sn@b@f;es<-JM3E73|_8~Qh6d-|i% zfYsO)A4KEqKodWV9>uHZQ5;7v?}ztNe@lFx0nfVW#N@@!cp3dtG_ir$c&pK!--Rw* zfd;-Gy&H?r1RoCl4e0w%p+~m|oxd;m%0%k#gI5`Fr*B{i&!QP-Oo}4EA#>3MUYMMe z@(?zoUmrY%Cio^^h3{iiOrH`(H(@LE{oB!mMg}LwG@3Io8{P5T&|ioi%`&uPD}$TR zh3n8tJdeJA2)%T#1y7=t{TLhX6dEtRGC8U&bbj28hNbL_CU6V-!mZc>N1(U30`J1v z*tl~v;4yUPC(!p#qdPx~E$|#V?+bLnZ_#*}QyVKEN1bT6gR9X8g=nB3gnk)%xrU-= zI|*IzKD3m}&;{0@m0FJ;<gWGU8lKg6VM5OIWI{fA2~%hV z3NZr*p#jQ6e<)gkQDM9SJ<`c&$sa%yU4g!&D;iY{n9*GHj2}W5dICMm z&1j&#Vf-MP@E?P(qlvs7o}UVyMico2je7}AAZJE$#NB34f6uOj0W%+hE<6ld<482Y zDQHP+(Yvw&eQ#@cz8|~LuSXO8D2$&+H})NxaO;^#0(oehYhoIWXNrwyiUuBvCRB+g zGy@Gh2c748Ueaagcl~;F-tORD%%;B|{VM(oT8XomiQk|ViCfG{c9@R_?2hiFKbql4 z^a!dk3zwsbtVK({G4!{fiS0xaszVp5$80=-t?@(jQ}H=6KaT!O!`t~S8ZcvavXe|S zU|aNgNA!6C8n|cZmtY(E{n13r(aMcOD{^me8s^Zi4lc#U&;ME)1w5$3Hux4g@niJN zze0bKwW&@lLdVO46VM}^i!QhXP52=+(Y5Fu+Kg6k7xusxv7Mj)(=<%rOSDv-Ym%K8 zq6rm;{>|tD<>*-sLqC?2(FJCr6`POFTZ}IFEA%KI3**nANAMiR{)BpghC6&4J^PEn z+}h-KKnbQ8AC4wei!QhvufRvpIJ-mtXz*iP!FaPdNyXNn?{CM;ao-%y-?KW(fEgbT z58gq)AkLwsPX9$>XY}%2iJL(v6B;&7aXKgWZ36?V8Uxr75TMZf$$>Tf2~ z8E_{t=HUixi_fAJ`4jfUvuKHP?oTdRd$fNAdI!3q3G@o%1JRG)Ak4)v=sGp%hF8a7 z!eeM6d+=sFjF!0N++@e?F-1QW`eo?HsT_T8ROnY>JNgUI#MYn{T8B+=6T0wbw36|5 z8fIP>9=wSD_Im|gpaDIi&(M$G=V-t$(FLM;$)!z4kEA^sxGQ$R-st;3LNDWB^zw~B z;>FP@8ZI;z&AbXN;S%)Iuoexl6|Kk)G~vDB`2jSsV`yT>(Zo)oi8P=){sf)(AGBf@ zu_^0E8S|3_vd|Ygp@F)iFBV}wmY_TM8Jfsg^o~qL@5lq_`y0`PwxfycMB~+=^Y@_} zJmz!Oj~ZzBMR5kL#04K<+JfX4O9q}|AU@1Z673@zOyv@)%iB$dfSOWY;&yN7-e`hE#oxgVon zIK$B+szleRLKCP7ESm1%jTP0kmG@K> mO{{tJ;c)NApY1?4vU9H zz(abl3P`L-rL>?$s7RH=fwGoD%VMdb*j6!85Ihw6zPZCc&&=FA-+c4U+$3CCnsjz) z(mVgjynktxD5^g&iXeJzP!y%$hTyNUD*bI(9e0HBJ)!^6s*L)X31^%QZ+;q{Tnhbf z(C1f!H-pK8jegG|QB(u_p#35=lPB>`9Exc;b4Zk^Y%B;bzJ#ef zco_|_KJ+(ZJ^I_wKz|D32hcz#LjOFv;3Z7QuQ3B}VHVaM8b!6S4f?#}&_vwm#Xubf zim@)1poz>t7oHo&S7Ckn8_|W{!^ZeWtc7RMIA5X*T}LaJ^7Ht4Z8UD9&~KHX;fs0b z&K^Wd+7mlrZ?t4{(FNCGP5c$QgDq&n@1qs_GrHhk(L~Q-CVm^nQ-;NHYNPKbGHE!W zaj+%cK|dEQZ8!Ax^hFmcLK7K<1{jBKU@A7mdFX=c(4B5Y=f8_h@dM1pPp}c|N73+j zCwHMQwna;RZ?G4-<0sM5mY|7DLlb-+-RW}ltT&;R*@-5&AG7f&w!wO~WR;Zuj ztRIb}VaZD|85g2=VNq}yy5LH5q0ML_ThV}jz$SPS4SWTSSAA4msU~Ru9&CU;(RhO} z(VWI)8U|X4X8tyM6x-3G*oE%wFk0d>=vjY-&PyqY6K{?t)*34>HM;W$(S`e@FXuO^1 z&iA166NhM2rEwHf@g(}+g-mVY~tpmgYJQGyWeMu-?QtU}JQrx#%yUu2>U`(S$~zXFLU6XaRbZi_tji!+1HG z@Na_eqKWLC$oV_*qwwM(G?5c%;7e!%H_$V#SsI^RQ#A38==?5N2fL#QK899w2zpnh zp=Z7=4}EWKA~e=xIs==~AF01bD{&NS;YG9}-=aHAo*V~EM|aW!-D!992nJzo zoP;Ja2QB%Fp}z!8EU}t~8I_?6ZNqfjgLUvQ`c<4mC;S7woS&lsE6|->4bN|e=Sfe; z&ugP`GeW;9X3%eeB$|i{Xjr=5XrP}22VhDbB8J^VpHQ!(JKT$&{rTW6v_eg% z#lIE1q6rN_7o3E5;cPU{T1+^wBRn{cOXz=%mU7ngIKT?5M}Gr)R6EdwcZKl}(Vq_| z(Rr7HDKp~B*95I_4qAcyVBrkvZ-(6&D8d2w1eRkKoePq z58>NriLaoa+ilFo)L+E?T=Z)yKOu zVSFQc=5L`396)z^8vQ)aq46%D@xMeb?Pc^x61Qm>IBiyZ>FT2a+M$;*AH96t(11PA zg&sx|FGedk9t}JPoxcpN$VxQf_2KzuG|o;Wu|%|shMDa{6FGqH_yqdm-_eqtM*~-& z30y)o97e&CMj-ZL04degDJo*)AA}ybd=jWoOegNIbBWOZ{u@>t`V`vy?I-0=3;9_*g%h5zu zV?%s1_#t`(XTtMuurd9rbK>`!H(X%eE8U*M;!_xf- z{ejaJJ){2ULd9qTgTwf6w8SN7z{zN0GttX6A5CaAX5l9E^6n1LkD!VE6TK^m3L0Lj zIt$_lIq1$ihJJUnGLNAN&P6j{6P|BIE4Cv%KZD->3N*p%=mw*OapJYn%iJ*TC!!zH zaHpNnh3^k9Jc0%qf-X1;eQ!Eif!U$|Lg+6=@5s>Gn2q`ZRd J<%169{vQLIwgmtH